From 0cced4563a3e40181061de79a3868df5ca43ee2d Mon Sep 17 00:00:00 2001 From: MDeiml Date: Sun, 16 Jan 2022 12:51:09 +0100 Subject: [PATCH] Fix #12 --- corpus/failing.txt | 23 - corpus/spec.txt | 23 + grammar.js | 41 +- src/grammar.json | 813 +- src/parser.c | 119231 +++++++++++++++++++++--------------------- 5 files changed, 60116 insertions(+), 60015 deletions(-) diff --git a/corpus/failing.txt b/corpus/failing.txt index f895239f1a..d3ef17e9f4 100644 --- a/corpus/failing.txt +++ b/corpus/failing.txt @@ -349,26 +349,3 @@ _boolean zoop:33=zoop:33 /> (paragraph (html_tag))) -================================================================================ -Example 645 - https://github.github.com/gfm/#example-645 -================================================================================ -foo - --------------------------------------------------------------------------------- - -(document - (paragraph)) - -================================================================================ -Example 646 - https://github.github.com/gfm/#example-646 -================================================================================ -foo foo --> - -foo - --------------------------------------------------------------------------------- - -(document - (paragraph) - (paragraph)) - diff --git a/corpus/spec.txt b/corpus/spec.txt index 306b6da889..7fde1293a7 100644 --- a/corpus/spec.txt +++ b/corpus/spec.txt @@ -9291,6 +9291,29 @@ comment - with hyphen --> (paragraph (html_tag))) +================================================================================ +Example 645 - https://github.github.com/gfm/#example-645 +================================================================================ +foo + +-------------------------------------------------------------------------------- + +(document + (paragraph)) + +================================================================================ +Example 646 - https://github.github.com/gfm/#example-646 +================================================================================ +foo foo --> + +foo + +-------------------------------------------------------------------------------- + +(document + (paragraph) + (paragraph)) + ================================================================================ Example 647 - https://github.github.com/gfm/#example-647 ================================================================================ diff --git a/grammar.js b/grammar.js index 5e66587c39..4bef6ddd69 100644 --- a/grammar.js +++ b/grammar.js @@ -705,22 +705,33 @@ module.exports = grammar(add_inline_rules({ ), _html_comment: $ => prec.dynamic(PRECEDENCE_LEVEL_HTML, seq( '' )), _processing_instruction: $ => prec.dynamic(PRECEDENCE_LEVEL_HTML, seq( diff --git a/src/grammar.json b/src/grammar.json index 4e996d3fad..a83188ade3 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -5966,168 +5966,22 @@ "type": "CHOICE", "members": [ { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "_word" - }, - { - "type": "SYMBOL", - "name": "_whitespace" - }, - { - "type": "SYMBOL", - "name": "_newline" - }, - { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "!" - }, - { - "type": "STRING", - "value": "\"" - }, - { - "type": "STRING", - "value": "#" - }, - { - "type": "STRING", - "value": "$" - }, - { - "type": "STRING", - "value": "%" - }, - { - "type": "STRING", - "value": "&" - }, - { - "type": "STRING", - "value": "'" - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "STRING", - "value": ")" - }, - { - "type": "STRING", - "value": "*" - }, - { - "type": "STRING", - "value": "+" - }, - { - "type": "STRING", - "value": "," - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "STRING", - "value": "/" - }, - { - "type": "STRING", - "value": ":" - }, - { - "type": "STRING", - "value": ";" - }, - { - "type": "STRING", - "value": "<" - }, - { - "type": "STRING", - "value": "=" - }, - { - "type": "STRING", - "value": "?" - }, - { - "type": "STRING", - "value": "@" - }, - { - "type": "STRING", - "value": "[" - }, - { - "type": "STRING", - "value": "\\" - }, - { - "type": "STRING", - "value": "]" - }, - { - "type": "STRING", - "value": "^" - }, - { - "type": "STRING", - "value": "_" - }, - { - "type": "STRING", - "value": "`" - }, - { - "type": "STRING", - "value": "{" - }, - { - "type": "STRING", - "value": "|" - }, - { - "type": "STRING", - "value": "}" - }, - { - "type": "STRING", - "value": "~" - } - ] + "type": "SYMBOL", + "name": "_word" }, { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_last_token_punctuation" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ + "type": "SYMBOL", + "name": "_whitespace" + }, { - "type": "STRING", - "value": "-" + "type": "SYMBOL", + "name": "_newline" }, { "type": "SEQ", @@ -6183,10 +6037,6 @@ "type": "STRING", "value": "," }, - { - "type": "STRING", - "value": "-" - }, { "type": "STRING", "value": "." @@ -6274,189 +6124,512 @@ ] } ] - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_word" - }, - { - "type": "SYMBOL", - "name": "_whitespace" - }, - { - "type": "SYMBOL", - "name": "_newline" - }, - { - "type": "SEQ", - "members": [ + }, { - "type": "CHOICE", + "type": "SEQ", "members": [ - { - "type": "STRING", - "value": "!" - }, - { - "type": "STRING", - "value": "\"" - }, - { - "type": "STRING", - "value": "#" - }, - { - "type": "STRING", - "value": "$" - }, - { - "type": "STRING", - "value": "%" - }, - { - "type": "STRING", - "value": "&" - }, - { - "type": "STRING", - "value": "'" - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "STRING", - "value": ")" - }, - { - "type": "STRING", - "value": "*" - }, - { - "type": "STRING", - "value": "+" - }, - { - "type": "STRING", - "value": "," - }, { "type": "STRING", "value": "-" }, { - "type": "STRING", - "value": "." - }, - { - "type": "STRING", - "value": "/" - }, - { - "type": "STRING", - "value": ":" - }, - { - "type": "STRING", - "value": ";" - }, - { - "type": "STRING", - "value": "<" - }, - { - "type": "STRING", - "value": "=" - }, - { - "type": "STRING", - "value": ">" - }, - { - "type": "STRING", - "value": "?" - }, - { - "type": "STRING", - "value": "@" - }, - { - "type": "STRING", - "value": "[" - }, - { - "type": "STRING", - "value": "\\" - }, - { - "type": "STRING", - "value": "]" - }, - { - "type": "STRING", - "value": "^" - }, - { - "type": "STRING", - "value": "_" - }, - { - "type": "STRING", - "value": "`" - }, + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "!" + }, + { + "type": "STRING", + "value": "\"" + }, + { + "type": "STRING", + "value": "#" + }, + { + "type": "STRING", + "value": "$" + }, + { + "type": "STRING", + "value": "%" + }, + { + "type": "STRING", + "value": "&" + }, + { + "type": "STRING", + "value": "'" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "STRING", + "value": ")" + }, + { + "type": "STRING", + "value": "*" + }, + { + "type": "STRING", + "value": "+" + }, + { + "type": "STRING", + "value": "," + }, + { + "type": "STRING", + "value": "-" + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "STRING", + "value": "/" + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "STRING", + "value": ";" + }, + { + "type": "STRING", + "value": "<" + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "STRING", + "value": "?" + }, + { + "type": "STRING", + "value": "@" + }, + { + "type": "STRING", + "value": "[" + }, + { + "type": "STRING", + "value": "\\" + }, + { + "type": "STRING", + "value": "]" + }, + { + "type": "STRING", + "value": "^" + }, + { + "type": "STRING", + "value": "_" + }, + { + "type": "STRING", + "value": "`" + }, + { + "type": "STRING", + "value": "{" + }, + { + "type": "STRING", + "value": "|" + }, + { + "type": "STRING", + "value": "}" + }, + { + "type": "STRING", + "value": "~" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_last_token_punctuation" + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "CHOICE", + "members": [ { - "type": "STRING", - "value": "{" + "type": "SYMBOL", + "name": "_word" }, { - "type": "STRING", - "value": "|" + "type": "SYMBOL", + "name": "_whitespace" }, { - "type": "STRING", - "value": "}" + "type": "SYMBOL", + "name": "_newline" }, { - "type": "STRING", - "value": "~" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_last_token_punctuation" + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "!" + }, + { + "type": "STRING", + "value": "\"" + }, + { + "type": "STRING", + "value": "#" + }, + { + "type": "STRING", + "value": "$" + }, + { + "type": "STRING", + "value": "%" + }, + { + "type": "STRING", + "value": "&" + }, + { + "type": "STRING", + "value": "'" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "STRING", + "value": ")" + }, + { + "type": "STRING", + "value": "*" + }, + { + "type": "STRING", + "value": "+" + }, + { + "type": "STRING", + "value": "," + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "STRING", + "value": "/" + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "STRING", + "value": ";" + }, + { + "type": "STRING", + "value": "<" + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "STRING", + "value": ">" + }, + { + "type": "STRING", + "value": "?" + }, + { + "type": "STRING", + "value": "@" + }, + { + "type": "STRING", + "value": "[" + }, + { + "type": "STRING", + "value": "\\" + }, + { + "type": "STRING", + "value": "]" + }, + { + "type": "STRING", + "value": "^" + }, + { + "type": "STRING", + "value": "_" + }, + { + "type": "STRING", + "value": "`" + }, + { + "type": "STRING", + "value": "{" + }, + { + "type": "STRING", + "value": "|" + }, + { + "type": "STRING", + "value": "}" + }, + { + "type": "STRING", + "value": "~" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_last_token_punctuation" + }, + { + "type": "BLANK" + } + ] + } + ] }, { - "type": "BLANK" + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "-" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_word" + }, + { + "type": "SYMBOL", + "name": "_whitespace" + }, + { + "type": "SYMBOL", + "name": "_newline" + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "!" + }, + { + "type": "STRING", + "value": "\"" + }, + { + "type": "STRING", + "value": "#" + }, + { + "type": "STRING", + "value": "$" + }, + { + "type": "STRING", + "value": "%" + }, + { + "type": "STRING", + "value": "&" + }, + { + "type": "STRING", + "value": "'" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "STRING", + "value": ")" + }, + { + "type": "STRING", + "value": "*" + }, + { + "type": "STRING", + "value": "+" + }, + { + "type": "STRING", + "value": "," + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "STRING", + "value": "/" + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "STRING", + "value": ";" + }, + { + "type": "STRING", + "value": "<" + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "STRING", + "value": ">" + }, + { + "type": "STRING", + "value": "?" + }, + { + "type": "STRING", + "value": "@" + }, + { + "type": "STRING", + "value": "[" + }, + { + "type": "STRING", + "value": "\\" + }, + { + "type": "STRING", + "value": "]" + }, + { + "type": "STRING", + "value": "^" + }, + { + "type": "STRING", + "value": "_" + }, + { + "type": "STRING", + "value": "`" + }, + { + "type": "STRING", + "value": "{" + }, + { + "type": "STRING", + "value": "|" + }, + { + "type": "STRING", + "value": "}" + }, + { + "type": "STRING", + "value": "~" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_last_token_punctuation" + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + } + ] } ] } - ] + } } ] + }, + { + "type": "BLANK" } - } + ] }, { "type": "STRING", diff --git a/src/parser.c b/src/parser.c index 519bc75589..a60e80b88c 100644 --- a/src/parser.c +++ b/src/parser.c @@ -16,7 +16,7 @@ #define LANGUAGE_VERSION 13 #define STATE_COUNT 2578 #define LARGE_STATE_COUNT 454 -#define SYMBOL_COUNT 257 +#define SYMBOL_COUNT 258 #define ALIAS_COUNT 4 #define TOKEN_COUNT 106 #define EXTERNAL_TOKEN_COUNT 46 @@ -278,13 +278,14 @@ enum { aux_sym__attribute_value_repeat1 = 251, aux_sym__attribute_value_repeat2 = 252, aux_sym__html_comment_repeat1 = 253, - aux_sym__declaration_repeat1 = 254, - aux_sym__code_span_repeat1 = 255, - 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, + aux_sym__processing_instruction_repeat1 = 254, + aux_sym__declaration_repeat1 = 255, + aux_sym__code_span_repeat1 = 256, + aux_sym__code_span_no_newline_repeat1 = 257, + alias_sym_emphasis = 258, + alias_sym_heading_content = 259, + alias_sym_image_description = 260, + alias_sym_link_text = 261, }; static const char * const ts_symbol_names[] = { @@ -542,6 +543,7 @@ static const char * const ts_symbol_names[] = { [aux_sym__attribute_value_repeat1] = "_attribute_value_repeat1", [aux_sym__attribute_value_repeat2] = "_attribute_value_repeat2", [aux_sym__html_comment_repeat1] = "_html_comment_repeat1", + [aux_sym__processing_instruction_repeat1] = "_processing_instruction_repeat1", [aux_sym__declaration_repeat1] = "_declaration_repeat1", [aux_sym__code_span_repeat1] = "_code_span_repeat1", [aux_sym__code_span_no_newline_repeat1] = "_code_span_no_newline_repeat1", @@ -806,6 +808,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym__attribute_value_repeat1] = aux_sym__attribute_value_repeat1, [aux_sym__attribute_value_repeat2] = aux_sym__attribute_value_repeat2, [aux_sym__html_comment_repeat1] = aux_sym__html_comment_repeat1, + [aux_sym__processing_instruction_repeat1] = aux_sym__processing_instruction_repeat1, [aux_sym__declaration_repeat1] = aux_sym__declaration_repeat1, [aux_sym__code_span_repeat1] = aux_sym__code_span_repeat1, [aux_sym__code_span_no_newline_repeat1] = aux_sym__code_span_no_newline_repeat1, @@ -1832,6 +1835,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym__processing_instruction_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym__declaration_repeat1] = { .visible = false, .named = false, @@ -23515,33 +23522,33 @@ 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 = 2}, - [6] = {.lex_state = 2901, .external_lex_state = 2}, + [6] = {.lex_state = 2901, .external_lex_state = 3}, [7] = {.lex_state = 2901, .external_lex_state = 2}, [8] = {.lex_state = 2901, .external_lex_state = 2}, - [9] = {.lex_state = 2901, .external_lex_state = 2}, - [10] = {.lex_state = 2901, .external_lex_state = 2}, - [11] = {.lex_state = 2901, .external_lex_state = 2}, + [9] = {.lex_state = 2901, .external_lex_state = 3}, + [10] = {.lex_state = 2901, .external_lex_state = 3}, + [11] = {.lex_state = 2901, .external_lex_state = 3}, [12] = {.lex_state = 2901, .external_lex_state = 2}, [13] = {.lex_state = 2901, .external_lex_state = 2}, [14] = {.lex_state = 2901, .external_lex_state = 2}, [15] = {.lex_state = 2901, .external_lex_state = 2}, - [16] = {.lex_state = 2901, .external_lex_state = 2}, - [17] = {.lex_state = 2901, .external_lex_state = 3}, - [18] = {.lex_state = 2901, .external_lex_state = 3}, - [19] = {.lex_state = 2901, .external_lex_state = 3}, + [16] = {.lex_state = 2901, .external_lex_state = 3}, + [17] = {.lex_state = 2901, .external_lex_state = 2}, + [18] = {.lex_state = 2901, .external_lex_state = 2}, + [19] = {.lex_state = 2901, .external_lex_state = 2}, [20] = {.lex_state = 2901, .external_lex_state = 3}, [21] = {.lex_state = 2901, .external_lex_state = 3}, [22] = {.lex_state = 2901, .external_lex_state = 3}, - [23] = {.lex_state = 2901, .external_lex_state = 3}, + [23] = {.lex_state = 2901, .external_lex_state = 2}, [24] = {.lex_state = 2901, .external_lex_state = 3}, - [25] = {.lex_state = 2901, .external_lex_state = 3}, + [25] = {.lex_state = 2901, .external_lex_state = 2}, [26] = {.lex_state = 2901, .external_lex_state = 3}, [27] = {.lex_state = 2901, .external_lex_state = 3}, - [28] = {.lex_state = 2901, .external_lex_state = 2}, + [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}, @@ -23550,16 +23557,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [34] = {.lex_state = 2901, .external_lex_state = 3}, [35] = {.lex_state = 2901, .external_lex_state = 3}, [36] = {.lex_state = 2901, .external_lex_state = 3}, - [37] = {.lex_state = 2901, .external_lex_state = 3}, + [37] = {.lex_state = 2901, .external_lex_state = 2}, [38] = {.lex_state = 2901, .external_lex_state = 3}, [39] = {.lex_state = 2901, .external_lex_state = 2}, [40] = {.lex_state = 2901, .external_lex_state = 2}, [41] = {.lex_state = 2901, .external_lex_state = 2}, [42] = {.lex_state = 2901, .external_lex_state = 2}, [43] = {.lex_state = 2901, .external_lex_state = 2}, - [44] = {.lex_state = 2901, .external_lex_state = 2}, + [44] = {.lex_state = 2901, .external_lex_state = 3}, [45] = {.lex_state = 2901, .external_lex_state = 4}, - [46] = {.lex_state = 2901, .external_lex_state = 4}, + [46] = {.lex_state = 2901, .external_lex_state = 5}, [47] = {.lex_state = 2901, .external_lex_state = 4}, [48] = {.lex_state = 2901, .external_lex_state = 4}, [49] = {.lex_state = 2901, .external_lex_state = 4}, @@ -23571,7 +23578,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [55] = {.lex_state = 2901, .external_lex_state = 4}, [56] = {.lex_state = 2901, .external_lex_state = 4}, [57] = {.lex_state = 2901, .external_lex_state = 5}, - [58] = {.lex_state = 2901, .external_lex_state = 4}, + [58] = {.lex_state = 2901, .external_lex_state = 5}, [59] = {.lex_state = 2901, .external_lex_state = 4}, [60] = {.lex_state = 2901, .external_lex_state = 4}, [61] = {.lex_state = 2901, .external_lex_state = 4}, @@ -23580,390 +23587,390 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [64] = {.lex_state = 2901, .external_lex_state = 4}, [65] = {.lex_state = 2901, .external_lex_state = 4}, [66] = {.lex_state = 2901, .external_lex_state = 4}, - [67] = {.lex_state = 2901, .external_lex_state = 5}, + [67] = {.lex_state = 2901, .external_lex_state = 4}, [68] = {.lex_state = 2901, .external_lex_state = 4}, [69] = {.lex_state = 2901, .external_lex_state = 4}, - [70] = {.lex_state = 2901, .external_lex_state = 5}, + [70] = {.lex_state = 2901, .external_lex_state = 4}, [71] = {.lex_state = 2901, .external_lex_state = 4}, [72] = {.lex_state = 2901, .external_lex_state = 6}, [73] = {.lex_state = 2901, .external_lex_state = 7}, [74] = {.lex_state = 2901, .external_lex_state = 8}, [75] = {.lex_state = 2901, .external_lex_state = 8}, - [76] = {.lex_state = 2901, .external_lex_state = 8}, - [77] = {.lex_state = 2901, .external_lex_state = 9}, + [76] = {.lex_state = 2901, .external_lex_state = 9}, + [77] = {.lex_state = 2901, .external_lex_state = 8}, [78] = {.lex_state = 2901, .external_lex_state = 9}, - [79] = {.lex_state = 2901, .external_lex_state = 9}, + [79] = {.lex_state = 2901, .external_lex_state = 8}, [80] = {.lex_state = 2901, .external_lex_state = 9}, - [81] = {.lex_state = 2901, .external_lex_state = 8}, + [81] = {.lex_state = 2901, .external_lex_state = 9}, [82] = {.lex_state = 2, .external_lex_state = 10}, [83] = {.lex_state = 2901, .external_lex_state = 11}, [84] = {.lex_state = 2901, .external_lex_state = 12}, [85] = {.lex_state = 2901, .external_lex_state = 13}, - [86] = {.lex_state = 2901, .external_lex_state = 14}, - [87] = {.lex_state = 2, .external_lex_state = 15}, - [88] = {.lex_state = 2, .external_lex_state = 15}, - [89] = {.lex_state = 2, .external_lex_state = 10}, + [86] = {.lex_state = 2, .external_lex_state = 14}, + [87] = {.lex_state = 2, .external_lex_state = 10}, + [88] = {.lex_state = 2, .external_lex_state = 14}, + [89] = {.lex_state = 2901, .external_lex_state = 15}, [90] = {.lex_state = 2901, .external_lex_state = 16}, - [91] = {.lex_state = 2901, .external_lex_state = 17}, - [92] = {.lex_state = 2901, .external_lex_state = 16}, - [93] = {.lex_state = 2, .external_lex_state = 18}, + [91] = {.lex_state = 2, .external_lex_state = 17}, + [92] = {.lex_state = 2901, .external_lex_state = 18}, + [93] = {.lex_state = 2, .external_lex_state = 17}, [94] = {.lex_state = 2901, .external_lex_state = 16}, - [95] = {.lex_state = 2901, .external_lex_state = 16}, + [95] = {.lex_state = 2901, .external_lex_state = 19}, [96] = {.lex_state = 2901, .external_lex_state = 19}, - [97] = {.lex_state = 2901, .external_lex_state = 20}, + [97] = {.lex_state = 2901, .external_lex_state = 19}, [98] = {.lex_state = 2901, .external_lex_state = 19}, - [99] = {.lex_state = 2901, .external_lex_state = 19}, - [100] = {.lex_state = 2, .external_lex_state = 18}, - [101] = {.lex_state = 2901, .external_lex_state = 19}, + [99] = {.lex_state = 2901, .external_lex_state = 20}, + [100] = {.lex_state = 2901, .external_lex_state = 16}, + [101] = {.lex_state = 2901, .external_lex_state = 16}, [102] = {.lex_state = 2901, .external_lex_state = 3}, - [103] = {.lex_state = 2901, .external_lex_state = 2}, - [104] = {.lex_state = 2901, .external_lex_state = 21}, - [105] = {.lex_state = 2901, .external_lex_state = 2}, - [106] = {.lex_state = 2901, .external_lex_state = 2}, + [103] = {.lex_state = 5, .external_lex_state = 21}, + [104] = {.lex_state = 2901, .external_lex_state = 2}, + [105] = {.lex_state = 2901, .external_lex_state = 3}, + [106] = {.lex_state = 2901, .external_lex_state = 3}, [107] = {.lex_state = 5, .external_lex_state = 22}, - [108] = {.lex_state = 2901, .external_lex_state = 2}, - [109] = {.lex_state = 2901, .external_lex_state = 2}, + [108] = {.lex_state = 2901, .external_lex_state = 3}, + [109] = {.lex_state = 2901, .external_lex_state = 3}, [110] = {.lex_state = 2901, .external_lex_state = 2}, - [111] = {.lex_state = 5, .external_lex_state = 23}, + [111] = {.lex_state = 5, .external_lex_state = 21}, [112] = {.lex_state = 2901, .external_lex_state = 2}, - [113] = {.lex_state = 2901, .external_lex_state = 2}, - [114] = {.lex_state = 2901, .external_lex_state = 2}, - [115] = {.lex_state = 2901, .external_lex_state = 3}, + [113] = {.lex_state = 2901, .external_lex_state = 23}, + [114] = {.lex_state = 2901, .external_lex_state = 11}, + [115] = {.lex_state = 2901, .external_lex_state = 2}, [116] = {.lex_state = 2901, .external_lex_state = 2}, - [117] = {.lex_state = 2901, .external_lex_state = 3}, - [118] = {.lex_state = 2901, .external_lex_state = 2}, + [117] = {.lex_state = 2901, .external_lex_state = 2}, + [118] = {.lex_state = 2901, .external_lex_state = 3}, [119] = {.lex_state = 2901, .external_lex_state = 2}, - [120] = {.lex_state = 2901, .external_lex_state = 2}, + [120] = {.lex_state = 2901, .external_lex_state = 3}, [121] = {.lex_state = 2901, .external_lex_state = 2}, - [122] = {.lex_state = 5, .external_lex_state = 23}, - [123] = {.lex_state = 2901, .external_lex_state = 2}, - [124] = {.lex_state = 2901, .external_lex_state = 2}, + [122] = {.lex_state = 5, .external_lex_state = 21}, + [123] = {.lex_state = 2901, .external_lex_state = 3}, + [124] = {.lex_state = 2901, .external_lex_state = 3}, [125] = {.lex_state = 2901, .external_lex_state = 3}, [126] = {.lex_state = 2901, .external_lex_state = 2}, - [127] = {.lex_state = 2901, .external_lex_state = 3}, - [128] = {.lex_state = 2901, .external_lex_state = 3}, - [129] = {.lex_state = 2901, .external_lex_state = 3}, + [127] = {.lex_state = 2901, .external_lex_state = 2}, + [128] = {.lex_state = 2901, .external_lex_state = 2}, + [129] = {.lex_state = 2901, .external_lex_state = 2}, [130] = {.lex_state = 2901, .external_lex_state = 2}, - [131] = {.lex_state = 5, .external_lex_state = 23}, - [132] = {.lex_state = 5, .external_lex_state = 22}, + [131] = {.lex_state = 2901, .external_lex_state = 3}, + [132] = {.lex_state = 2901, .external_lex_state = 24}, [133] = {.lex_state = 2901, .external_lex_state = 2}, - [134] = {.lex_state = 2901, .external_lex_state = 2}, - [135] = {.lex_state = 2901, .external_lex_state = 2}, + [134] = {.lex_state = 2901, .external_lex_state = 3}, + [135] = {.lex_state = 2901, .external_lex_state = 3}, [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 = 3}, - [140] = {.lex_state = 2901, .external_lex_state = 2}, - [141] = {.lex_state = 2901, .external_lex_state = 2}, - [142] = {.lex_state = 2901, .external_lex_state = 2}, - [143] = {.lex_state = 2901, .external_lex_state = 3}, - [144] = {.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 = 2}, + [144] = {.lex_state = 2901, .external_lex_state = 2}, [145] = {.lex_state = 2901, .external_lex_state = 2}, [146] = {.lex_state = 2901, .external_lex_state = 3}, [147] = {.lex_state = 2901, .external_lex_state = 3}, - [148] = {.lex_state = 2901, .external_lex_state = 2}, - [149] = {.lex_state = 2901, .external_lex_state = 2}, - [150] = {.lex_state = 2901, .external_lex_state = 2}, + [148] = {.lex_state = 2901, .external_lex_state = 3}, + [149] = {.lex_state = 2901, .external_lex_state = 3}, + [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}, + [152] = {.lex_state = 2901, .external_lex_state = 2}, + [153] = {.lex_state = 2901, .external_lex_state = 2}, + [154] = {.lex_state = 2901, .external_lex_state = 2}, [155] = {.lex_state = 2901, .external_lex_state = 2}, - [156] = {.lex_state = 2901, .external_lex_state = 3}, - [157] = {.lex_state = 2901, .external_lex_state = 3}, - [158] = {.lex_state = 2901, .external_lex_state = 3}, - [159] = {.lex_state = 2901, .external_lex_state = 3}, + [156] = {.lex_state = 2901, .external_lex_state = 2}, + [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 = 3}, [161] = {.lex_state = 2901, .external_lex_state = 2}, - [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 = 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 = 2}, [166] = {.lex_state = 2901, .external_lex_state = 3}, - [167] = {.lex_state = 2901, .external_lex_state = 2}, - [168] = {.lex_state = 2901, .external_lex_state = 3}, - [169] = {.lex_state = 2901, .external_lex_state = 2}, - [170] = {.lex_state = 2901, .external_lex_state = 24}, - [171] = {.lex_state = 5, .external_lex_state = 25}, - [172] = {.lex_state = 2901, .external_lex_state = 2}, - [173] = {.lex_state = 2901, .external_lex_state = 3}, + [167] = {.lex_state = 2901, .external_lex_state = 3}, + [168] = {.lex_state = 2901, .external_lex_state = 2}, + [169] = {.lex_state = 2901, .external_lex_state = 3}, + [170] = {.lex_state = 2901, .external_lex_state = 2}, + [171] = {.lex_state = 2901, .external_lex_state = 2}, + [172] = {.lex_state = 2901, .external_lex_state = 3}, + [173] = {.lex_state = 2901, .external_lex_state = 2}, [174] = {.lex_state = 2901, .external_lex_state = 2}, - [175] = {.lex_state = 2901, .external_lex_state = 3}, + [175] = {.lex_state = 2901, .external_lex_state = 2}, [176] = {.lex_state = 2901, .external_lex_state = 2}, - [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 = 5, .external_lex_state = 22}, + [177] = {.lex_state = 2901, .external_lex_state = 2}, + [178] = {.lex_state = 2901, .external_lex_state = 2}, + [179] = {.lex_state = 2901, .external_lex_state = 2}, + [180] = {.lex_state = 2901, .external_lex_state = 2}, [181] = {.lex_state = 2901, .external_lex_state = 2}, - [182] = {.lex_state = 2901, .external_lex_state = 2}, + [182] = {.lex_state = 2901, .external_lex_state = 3}, [183] = {.lex_state = 2901, .external_lex_state = 3}, - [184] = {.lex_state = 2901, .external_lex_state = 2}, + [184] = {.lex_state = 2901, .external_lex_state = 3}, [185] = {.lex_state = 2901, .external_lex_state = 3}, [186] = {.lex_state = 2901, .external_lex_state = 3}, [187] = {.lex_state = 2901, .external_lex_state = 3}, [188] = {.lex_state = 2901, .external_lex_state = 3}, [189] = {.lex_state = 2901, .external_lex_state = 3}, - [190] = {.lex_state = 2901, .external_lex_state = 3}, + [190] = {.lex_state = 5, .external_lex_state = 25}, [191] = {.lex_state = 2901, .external_lex_state = 3}, - [192] = {.lex_state = 2901, .external_lex_state = 3}, - [193] = {.lex_state = 2901, .external_lex_state = 3}, - [194] = {.lex_state = 2901, .external_lex_state = 3}, - [195] = {.lex_state = 2901, .external_lex_state = 3}, + [192] = {.lex_state = 5, .external_lex_state = 22}, + [193] = {.lex_state = 2901, .external_lex_state = 2}, + [194] = {.lex_state = 2901, .external_lex_state = 2}, + [195] = {.lex_state = 5, .external_lex_state = 22}, [196] = {.lex_state = 2901, .external_lex_state = 2}, - [197] = {.lex_state = 2901, .external_lex_state = 3}, - [198] = {.lex_state = 2901, .external_lex_state = 2}, - [199] = {.lex_state = 2901, .external_lex_state = 3}, - [200] = {.lex_state = 5, .external_lex_state = 23}, - [201] = {.lex_state = 2901, .external_lex_state = 3}, + [197] = {.lex_state = 2901, .external_lex_state = 24}, + [198] = {.lex_state = 2901, .external_lex_state = 15}, + [199] = {.lex_state = 5, .external_lex_state = 25}, + [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 = 3}, - [204] = {.lex_state = 5, .external_lex_state = 22}, + [204] = {.lex_state = 2901, .external_lex_state = 3}, [205] = {.lex_state = 2901, .external_lex_state = 3}, - [206] = {.lex_state = 5, .external_lex_state = 25}, + [206] = {.lex_state = 2901, .external_lex_state = 3}, [207] = {.lex_state = 2901, .external_lex_state = 3}, [208] = {.lex_state = 2901, .external_lex_state = 2}, [209] = {.lex_state = 2901, .external_lex_state = 2}, - [210] = {.lex_state = 2901, .external_lex_state = 2}, + [210] = {.lex_state = 2901, .external_lex_state = 3}, [211] = {.lex_state = 2901, .external_lex_state = 2}, [212] = {.lex_state = 2901, .external_lex_state = 2}, [213] = {.lex_state = 2901, .external_lex_state = 2}, - [214] = {.lex_state = 2901, .external_lex_state = 2}, - [215] = {.lex_state = 2901, .external_lex_state = 3}, + [214] = {.lex_state = 2901, .external_lex_state = 3}, + [215] = {.lex_state = 2901, .external_lex_state = 2}, [216] = {.lex_state = 2901, .external_lex_state = 2}, [217] = {.lex_state = 2901, .external_lex_state = 2}, - [218] = {.lex_state = 2901, .external_lex_state = 2}, - [219] = {.lex_state = 2901, .external_lex_state = 2}, + [218] = {.lex_state = 2901, .external_lex_state = 3}, + [219] = {.lex_state = 2901, .external_lex_state = 3}, [220] = {.lex_state = 2901, .external_lex_state = 2}, [221] = {.lex_state = 2901, .external_lex_state = 3}, - [222] = {.lex_state = 2901, .external_lex_state = 3}, - [223] = {.lex_state = 2901, .external_lex_state = 21}, - [224] = {.lex_state = 2901, .external_lex_state = 12}, - [225] = {.lex_state = 2901, .external_lex_state = 2}, + [222] = {.lex_state = 2901, .external_lex_state = 2}, + [223] = {.lex_state = 2901, .external_lex_state = 2}, + [224] = {.lex_state = 2901, .external_lex_state = 3}, + [225] = {.lex_state = 2901, .external_lex_state = 3}, [226] = {.lex_state = 2901, .external_lex_state = 3}, - [227] = {.lex_state = 2901, .external_lex_state = 24}, - [228] = {.lex_state = 2901, .external_lex_state = 14}, + [227] = {.lex_state = 2901, .external_lex_state = 3}, + [228] = {.lex_state = 2901, .external_lex_state = 2}, [229] = {.lex_state = 2901, .external_lex_state = 2}, [230] = {.lex_state = 2901, .external_lex_state = 2}, [231] = {.lex_state = 2901, .external_lex_state = 2}, - [232] = {.lex_state = 2901, .external_lex_state = 2}, + [232] = {.lex_state = 2901, .external_lex_state = 3}, [233] = {.lex_state = 2901, .external_lex_state = 2}, - [234] = {.lex_state = 2901, .external_lex_state = 2}, - [235] = {.lex_state = 2901, .external_lex_state = 2}, + [234] = {.lex_state = 2901, .external_lex_state = 3}, + [235] = {.lex_state = 2901, .external_lex_state = 3}, [236] = {.lex_state = 2901, .external_lex_state = 2}, [237] = {.lex_state = 2901, .external_lex_state = 3}, [238] = {.lex_state = 2901, .external_lex_state = 3}, - [239] = {.lex_state = 2901, .external_lex_state = 2}, + [239] = {.lex_state = 2901, .external_lex_state = 3}, [240] = {.lex_state = 2901, .external_lex_state = 2}, - [241] = {.lex_state = 2901, .external_lex_state = 3}, - [242] = {.lex_state = 2901, .external_lex_state = 3}, + [241] = {.lex_state = 2901, .external_lex_state = 2}, + [242] = {.lex_state = 2901, .external_lex_state = 2}, [243] = {.lex_state = 2901, .external_lex_state = 3}, - [244] = {.lex_state = 2901, .external_lex_state = 2}, - [245] = {.lex_state = 2901, .external_lex_state = 2}, + [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 = 2901, .external_lex_state = 3}, - [248] = {.lex_state = 2901, .external_lex_state = 3}, - [249] = {.lex_state = 2901, .external_lex_state = 2}, + [248] = {.lex_state = 2901, .external_lex_state = 2}, + [249] = {.lex_state = 2901, .external_lex_state = 3}, [250] = {.lex_state = 2901, .external_lex_state = 3}, [251] = {.lex_state = 2901, .external_lex_state = 3}, [252] = {.lex_state = 2901, .external_lex_state = 3}, - [253] = {.lex_state = 2901, .external_lex_state = 3}, - [254] = {.lex_state = 5, .external_lex_state = 22}, + [253] = {.lex_state = 5, .external_lex_state = 22}, + [254] = {.lex_state = 2901, .external_lex_state = 3}, [255] = {.lex_state = 2901, .external_lex_state = 2}, [256] = {.lex_state = 2901, .external_lex_state = 2}, - [257] = {.lex_state = 2901, .external_lex_state = 3}, - [258] = {.lex_state = 5, .external_lex_state = 23}, - [259] = {.lex_state = 2901, .external_lex_state = 3}, - [260] = {.lex_state = 2901, .external_lex_state = 3}, - [261] = {.lex_state = 2901, .external_lex_state = 2}, - [262] = {.lex_state = 2901, .external_lex_state = 2}, - [263] = {.lex_state = 2901, .external_lex_state = 3}, + [257] = {.lex_state = 5, .external_lex_state = 21}, + [258] = {.lex_state = 2901, .external_lex_state = 2}, + [259] = {.lex_state = 2901, .external_lex_state = 2}, + [260] = {.lex_state = 2901, .external_lex_state = 2}, + [261] = {.lex_state = 5, .external_lex_state = 22}, + [262] = {.lex_state = 2901, .external_lex_state = 3}, + [263] = {.lex_state = 5, .external_lex_state = 21}, [264] = {.lex_state = 2901, .external_lex_state = 3}, [265] = {.lex_state = 2901, .external_lex_state = 3}, - [266] = {.lex_state = 2901, .external_lex_state = 2}, - [267] = {.lex_state = 2901, .external_lex_state = 2}, + [266] = {.lex_state = 2901, .external_lex_state = 3}, + [267] = {.lex_state = 2901, .external_lex_state = 3}, [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 = 3}, - [272] = {.lex_state = 2901, .external_lex_state = 3}, - [273] = {.lex_state = 2901, .external_lex_state = 2}, - [274] = {.lex_state = 2901, .external_lex_state = 2}, + [272] = {.lex_state = 2901, .external_lex_state = 2}, + [273] = {.lex_state = 2901, .external_lex_state = 3}, + [274] = {.lex_state = 2901, .external_lex_state = 23}, [275] = {.lex_state = 2901, .external_lex_state = 3}, - [276] = {.lex_state = 2901, .external_lex_state = 5}, - [277] = {.lex_state = 2901, .external_lex_state = 26}, - [278] = {.lex_state = 5, .external_lex_state = 25}, + [276] = {.lex_state = 5, .external_lex_state = 25}, + [277] = {.lex_state = 2901, .external_lex_state = 5}, + [278] = {.lex_state = 2901, .external_lex_state = 5}, [279] = {.lex_state = 5, .external_lex_state = 25}, - [280] = {.lex_state = 5, .external_lex_state = 25}, - [281] = {.lex_state = 2901, .external_lex_state = 27}, + [280] = {.lex_state = 2901, .external_lex_state = 5}, + [281] = {.lex_state = 5, .external_lex_state = 25}, [282] = {.lex_state = 5, .external_lex_state = 25}, - [283] = {.lex_state = 2901, .external_lex_state = 27}, - [284] = {.lex_state = 5, .external_lex_state = 25}, - [285] = {.lex_state = 2901, .external_lex_state = 5}, + [283] = {.lex_state = 2901, .external_lex_state = 5}, + [284] = {.lex_state = 2901, .external_lex_state = 26}, + [285] = {.lex_state = 2901, .external_lex_state = 4}, [286] = {.lex_state = 2901, .external_lex_state = 27}, - [287] = {.lex_state = 2901, .external_lex_state = 4}, - [288] = {.lex_state = 5, .external_lex_state = 25}, - [289] = {.lex_state = 2901, .external_lex_state = 27}, + [287] = {.lex_state = 5, .external_lex_state = 25}, + [288] = {.lex_state = 2901, .external_lex_state = 5}, + [289] = {.lex_state = 5, .external_lex_state = 25}, [290] = {.lex_state = 5, .external_lex_state = 25}, - [291] = {.lex_state = 5, .external_lex_state = 25}, - [292] = {.lex_state = 2901, .external_lex_state = 27}, - [293] = {.lex_state = 2901, .external_lex_state = 5}, + [291] = {.lex_state = 2901, .external_lex_state = 4}, + [292] = {.lex_state = 2901, .external_lex_state = 26}, + [293] = {.lex_state = 2901, .external_lex_state = 4}, [294] = {.lex_state = 5, .external_lex_state = 25}, - [295] = {.lex_state = 5, .external_lex_state = 25}, - [296] = {.lex_state = 2901, .external_lex_state = 26}, - [297] = {.lex_state = 5, .external_lex_state = 25}, - [298] = {.lex_state = 5, .external_lex_state = 25}, - [299] = {.lex_state = 2901, .external_lex_state = 5}, + [295] = {.lex_state = 2901, .external_lex_state = 5}, + [296] = {.lex_state = 5, .external_lex_state = 25}, + [297] = {.lex_state = 2901, .external_lex_state = 4}, + [298] = {.lex_state = 2901, .external_lex_state = 4}, + [299] = {.lex_state = 2901, .external_lex_state = 4}, [300] = {.lex_state = 5, .external_lex_state = 25}, - [301] = {.lex_state = 2901, .external_lex_state = 5}, - [302] = {.lex_state = 2901, .external_lex_state = 5}, - [303] = {.lex_state = 2901, .external_lex_state = 5}, + [301] = {.lex_state = 5, .external_lex_state = 25}, + [302] = {.lex_state = 2901, .external_lex_state = 4}, + [303] = {.lex_state = 2901, .external_lex_state = 4}, [304] = {.lex_state = 5, .external_lex_state = 25}, [305] = {.lex_state = 2901, .external_lex_state = 4}, - [306] = {.lex_state = 2901, .external_lex_state = 5}, + [306] = {.lex_state = 5, .external_lex_state = 25}, [307] = {.lex_state = 2901, .external_lex_state = 5}, [308] = {.lex_state = 2901, .external_lex_state = 5}, - [309] = {.lex_state = 2901, .external_lex_state = 4}, - [310] = {.lex_state = 2901, .external_lex_state = 4}, + [309] = {.lex_state = 5, .external_lex_state = 25}, + [310] = {.lex_state = 5, .external_lex_state = 25}, [311] = {.lex_state = 2901, .external_lex_state = 5}, - [312] = {.lex_state = 2901, .external_lex_state = 5}, - [313] = {.lex_state = 2901, .external_lex_state = 4}, - [314] = {.lex_state = 2901, .external_lex_state = 26}, - [315] = {.lex_state = 5, .external_lex_state = 25}, - [316] = {.lex_state = 2901, .external_lex_state = 4}, - [317] = {.lex_state = 2901, .external_lex_state = 4}, - [318] = {.lex_state = 2901, .external_lex_state = 4}, - [319] = {.lex_state = 2901, .external_lex_state = 4}, - [320] = {.lex_state = 2901, .external_lex_state = 5}, + [312] = {.lex_state = 2901, .external_lex_state = 26}, + [313] = {.lex_state = 5, .external_lex_state = 25}, + [314] = {.lex_state = 2901, .external_lex_state = 4}, + [315] = {.lex_state = 2901, .external_lex_state = 26}, + [316] = {.lex_state = 2901, .external_lex_state = 27}, + [317] = {.lex_state = 2901, .external_lex_state = 5}, + [318] = {.lex_state = 2901, .external_lex_state = 5}, + [319] = {.lex_state = 2901, .external_lex_state = 26}, + [320] = {.lex_state = 5, .external_lex_state = 25}, [321] = {.lex_state = 2901, .external_lex_state = 4}, - [322] = {.lex_state = 5, .external_lex_state = 25}, - [323] = {.lex_state = 2901, .external_lex_state = 4}, - [324] = {.lex_state = 2901, .external_lex_state = 4}, - [325] = {.lex_state = 5, .external_lex_state = 25}, - [326] = {.lex_state = 2901, .external_lex_state = 26}, - [327] = {.lex_state = 5, .external_lex_state = 25}, - [328] = {.lex_state = 5, .external_lex_state = 25}, - [329] = {.lex_state = 2901, .external_lex_state = 4}, - [330] = {.lex_state = 2901, .external_lex_state = 26}, + [322] = {.lex_state = 2901, .external_lex_state = 5}, + [323] = {.lex_state = 2901, .external_lex_state = 27}, + [324] = {.lex_state = 5, .external_lex_state = 25}, + [325] = {.lex_state = 2901, .external_lex_state = 4}, + [326] = {.lex_state = 2901, .external_lex_state = 4}, + [327] = {.lex_state = 2901, .external_lex_state = 27}, + [328] = {.lex_state = 2901, .external_lex_state = 5}, + [329] = {.lex_state = 2901, .external_lex_state = 27}, + [330] = {.lex_state = 5, .external_lex_state = 25}, [331] = {.lex_state = 5, .external_lex_state = 25}, - [332] = {.lex_state = 5, .external_lex_state = 25}, - [333] = {.lex_state = 2901, .external_lex_state = 28}, + [332] = {.lex_state = 2901, .external_lex_state = 2}, + [333] = {.lex_state = 5, .external_lex_state = 25}, [334] = {.lex_state = 5, .external_lex_state = 25}, [335] = {.lex_state = 5, .external_lex_state = 25}, [336] = {.lex_state = 2901, .external_lex_state = 2}, - [337] = {.lex_state = 5, .external_lex_state = 25}, - [338] = {.lex_state = 2901, .external_lex_state = 28}, - [339] = {.lex_state = 2901, .external_lex_state = 2}, + [337] = {.lex_state = 2901, .external_lex_state = 28}, + [338] = {.lex_state = 5, .external_lex_state = 25}, + [339] = {.lex_state = 5, .external_lex_state = 25}, [340] = {.lex_state = 5, .external_lex_state = 25}, - [341] = {.lex_state = 2901, .external_lex_state = 2}, - [342] = {.lex_state = 2901, .external_lex_state = 29}, + [341] = {.lex_state = 5, .external_lex_state = 25}, + [342] = {.lex_state = 2901, .external_lex_state = 28}, [343] = {.lex_state = 5, .external_lex_state = 25}, [344] = {.lex_state = 5, .external_lex_state = 25}, [345] = {.lex_state = 5, .external_lex_state = 25}, [346] = {.lex_state = 5, .external_lex_state = 25}, - [347] = {.lex_state = 5, .external_lex_state = 25}, - [348] = {.lex_state = 5, .external_lex_state = 25}, + [347] = {.lex_state = 2901, .external_lex_state = 2}, + [348] = {.lex_state = 2901, .external_lex_state = 2}, [349] = {.lex_state = 5, .external_lex_state = 25}, [350] = {.lex_state = 5, .external_lex_state = 25}, [351] = {.lex_state = 5, .external_lex_state = 25}, [352] = {.lex_state = 5, .external_lex_state = 25}, - [353] = {.lex_state = 2901, .external_lex_state = 2}, + [353] = {.lex_state = 5, .external_lex_state = 25}, [354] = {.lex_state = 5, .external_lex_state = 25}, - [355] = {.lex_state = 5, .external_lex_state = 25}, - [356] = {.lex_state = 2901, .external_lex_state = 2}, + [355] = {.lex_state = 2901, .external_lex_state = 29}, + [356] = {.lex_state = 2901, .external_lex_state = 29}, [357] = {.lex_state = 5, .external_lex_state = 25}, - [358] = {.lex_state = 2901, .external_lex_state = 29}, + [358] = {.lex_state = 5, .external_lex_state = 25}, [359] = {.lex_state = 5, .external_lex_state = 25}, - [360] = {.lex_state = 5, .external_lex_state = 25}, + [360] = {.lex_state = 2901, .external_lex_state = 2}, [361] = {.lex_state = 5, .external_lex_state = 25}, - [362] = {.lex_state = 5, .external_lex_state = 23}, - [363] = {.lex_state = 5, .external_lex_state = 25}, - [364] = {.lex_state = 5, .external_lex_state = 22}, - [365] = {.lex_state = 5, .external_lex_state = 25}, - [366] = {.lex_state = 5, .external_lex_state = 23}, + [362] = {.lex_state = 5, .external_lex_state = 21}, + [363] = {.lex_state = 5, .external_lex_state = 22}, + [364] = {.lex_state = 2901, .external_lex_state = 4}, + [365] = {.lex_state = 5, .external_lex_state = 21}, + [366] = {.lex_state = 5, .external_lex_state = 22}, [367] = {.lex_state = 5, .external_lex_state = 22}, - [368] = {.lex_state = 5, .external_lex_state = 23}, - [369] = {.lex_state = 5, .external_lex_state = 22}, - [370] = {.lex_state = 2901, .external_lex_state = 4}, - [371] = {.lex_state = 5, .external_lex_state = 23}, - [372] = {.lex_state = 5, .external_lex_state = 25}, - [373] = {.lex_state = 5, .external_lex_state = 23}, - [374] = {.lex_state = 5, .external_lex_state = 22}, - [375] = {.lex_state = 5, .external_lex_state = 22}, - [376] = {.lex_state = 2901, .external_lex_state = 5}, + [368] = {.lex_state = 5, .external_lex_state = 22}, + [369] = {.lex_state = 5, .external_lex_state = 25}, + [370] = {.lex_state = 5, .external_lex_state = 25}, + [371] = {.lex_state = 5, .external_lex_state = 22}, + [372] = {.lex_state = 5, .external_lex_state = 21}, + [373] = {.lex_state = 5, .external_lex_state = 25}, + [374] = {.lex_state = 5, .external_lex_state = 21}, + [375] = {.lex_state = 5, .external_lex_state = 21}, + [376] = {.lex_state = 2901, .external_lex_state = 4}, [377] = {.lex_state = 2901, .external_lex_state = 4}, [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 = 5}, [382] = {.lex_state = 2901, .external_lex_state = 5}, - [383] = {.lex_state = 2901, .external_lex_state = 5}, - [384] = {.lex_state = 5, .external_lex_state = 25}, - [385] = {.lex_state = 2901, .external_lex_state = 5}, - [386] = {.lex_state = 2901, .external_lex_state = 5}, + [383] = {.lex_state = 2901, .external_lex_state = 4}, + [384] = {.lex_state = 2901, .external_lex_state = 5}, + [385] = {.lex_state = 2901, .external_lex_state = 4}, + [386] = {.lex_state = 2901, .external_lex_state = 4}, [387] = {.lex_state = 2901, .external_lex_state = 5}, - [388] = {.lex_state = 5, .external_lex_state = 25}, + [388] = {.lex_state = 2901, .external_lex_state = 4}, [389] = {.lex_state = 2901, .external_lex_state = 4}, - [390] = {.lex_state = 2901, .external_lex_state = 4}, + [390] = {.lex_state = 2901, .external_lex_state = 5}, [391] = {.lex_state = 2901, .external_lex_state = 4}, [392] = {.lex_state = 2901, .external_lex_state = 5}, - [393] = {.lex_state = 2901, .external_lex_state = 4}, + [393] = {.lex_state = 2901, .external_lex_state = 5}, [394] = {.lex_state = 2901, .external_lex_state = 5}, - [395] = {.lex_state = 2901, .external_lex_state = 4}, - [396] = {.lex_state = 2901, .external_lex_state = 4}, + [395] = {.lex_state = 2901, .external_lex_state = 5}, + [396] = {.lex_state = 2901, .external_lex_state = 5}, [397] = {.lex_state = 2901, .external_lex_state = 5}, - [398] = {.lex_state = 2901, .external_lex_state = 4}, - [399] = {.lex_state = 2901, .external_lex_state = 5}, - [400] = {.lex_state = 2901, .external_lex_state = 5}, - [401] = {.lex_state = 6, .external_lex_state = 30}, - [402] = {.lex_state = 2901, .external_lex_state = 5}, + [398] = {.lex_state = 2901, .external_lex_state = 5}, + [399] = {.lex_state = 2901, .external_lex_state = 4}, + [400] = {.lex_state = 2901, .external_lex_state = 4}, + [401] = {.lex_state = 2901, .external_lex_state = 4}, + [402] = {.lex_state = 5, .external_lex_state = 25}, [403] = {.lex_state = 2901, .external_lex_state = 4}, - [404] = {.lex_state = 2901, .external_lex_state = 4}, - [405] = {.lex_state = 2901, .external_lex_state = 4}, + [404] = {.lex_state = 6, .external_lex_state = 30}, + [405] = {.lex_state = 6, .external_lex_state = 30}, [406] = {.lex_state = 2901, .external_lex_state = 4}, - [407] = {.lex_state = 2901, .external_lex_state = 5}, + [407] = {.lex_state = 2901, .external_lex_state = 4}, [408] = {.lex_state = 2901, .external_lex_state = 4}, [409] = {.lex_state = 2901, .external_lex_state = 4}, - [410] = {.lex_state = 2901, .external_lex_state = 4}, + [410] = {.lex_state = 5, .external_lex_state = 25}, [411] = {.lex_state = 2901, .external_lex_state = 4}, - [412] = {.lex_state = 2901, .external_lex_state = 4}, + [412] = {.lex_state = 2901, .external_lex_state = 5}, [413] = {.lex_state = 2901, .external_lex_state = 4}, - [414] = {.lex_state = 2901, .external_lex_state = 5}, + [414] = {.lex_state = 2901, .external_lex_state = 4}, [415] = {.lex_state = 2901, .external_lex_state = 5}, - [416] = {.lex_state = 2901, .external_lex_state = 4}, - [417] = {.lex_state = 2901, .external_lex_state = 5}, + [416] = {.lex_state = 2901, .external_lex_state = 5}, + [417] = {.lex_state = 2901, .external_lex_state = 4}, [418] = {.lex_state = 2901, .external_lex_state = 5}, - [419] = {.lex_state = 2901, .external_lex_state = 4}, + [419] = {.lex_state = 2901, .external_lex_state = 5}, [420] = {.lex_state = 2901, .external_lex_state = 5}, - [421] = {.lex_state = 6, .external_lex_state = 30}, - [422] = {.lex_state = 2901, .external_lex_state = 5}, - [423] = {.lex_state = 2901, .external_lex_state = 4}, + [421] = {.lex_state = 2901, .external_lex_state = 4}, + [422] = {.lex_state = 2901, .external_lex_state = 4}, + [423] = {.lex_state = 2901, .external_lex_state = 5}, [424] = {.lex_state = 2901, .external_lex_state = 5}, - [425] = {.lex_state = 2901, .external_lex_state = 4}, + [425] = {.lex_state = 2901, .external_lex_state = 5}, [426] = {.lex_state = 5, .external_lex_state = 31}, - [427] = {.lex_state = 5, .external_lex_state = 31}, + [427] = {.lex_state = 5, .external_lex_state = 32}, [428] = {.lex_state = 5, .external_lex_state = 32}, - [429] = {.lex_state = 5, .external_lex_state = 32}, - [430] = {.lex_state = 5, .external_lex_state = 33}, + [429] = {.lex_state = 5, .external_lex_state = 33}, + [430] = {.lex_state = 5, .external_lex_state = 31}, [431] = {.lex_state = 5, .external_lex_state = 33}, [432] = {.lex_state = 9, .external_lex_state = 34}, [433] = {.lex_state = 9, .external_lex_state = 34}, [434] = {.lex_state = 9, .external_lex_state = 30}, [435] = {.lex_state = 9, .external_lex_state = 30}, - [436] = {.lex_state = 5, .external_lex_state = 23}, - [437] = {.lex_state = 5, .external_lex_state = 22}, - [438] = {.lex_state = 5, .external_lex_state = 23}, - [439] = {.lex_state = 5, .external_lex_state = 25}, - [440] = {.lex_state = 5, .external_lex_state = 25}, - [441] = {.lex_state = 5, .external_lex_state = 25}, - [442] = {.lex_state = 5, .external_lex_state = 22}, - [443] = {.lex_state = 5, .external_lex_state = 22}, - [444] = {.lex_state = 5, .external_lex_state = 25}, - [445] = {.lex_state = 5, .external_lex_state = 23}, - [446] = {.lex_state = 5, .external_lex_state = 23}, - [447] = {.lex_state = 5, .external_lex_state = 22}, - [448] = {.lex_state = 5, .external_lex_state = 25}, - [449] = {.lex_state = 5, .external_lex_state = 22}, - [450] = {.lex_state = 5, .external_lex_state = 23}, + [436] = {.lex_state = 5, .external_lex_state = 25}, + [437] = {.lex_state = 5, .external_lex_state = 21}, + [438] = {.lex_state = 5, .external_lex_state = 22}, + [439] = {.lex_state = 5, .external_lex_state = 21}, + [440] = {.lex_state = 5, .external_lex_state = 21}, + [441] = {.lex_state = 5, .external_lex_state = 22}, + [442] = {.lex_state = 5, .external_lex_state = 25}, + [443] = {.lex_state = 5, .external_lex_state = 25}, + [444] = {.lex_state = 5, .external_lex_state = 22}, + [445] = {.lex_state = 5, .external_lex_state = 22}, + [446] = {.lex_state = 5, .external_lex_state = 25}, + [447] = {.lex_state = 5, .external_lex_state = 25}, + [448] = {.lex_state = 5, .external_lex_state = 21}, + [449] = {.lex_state = 5, .external_lex_state = 21}, + [450] = {.lex_state = 5, .external_lex_state = 22}, [451] = {.lex_state = 5, .external_lex_state = 25}, [452] = {.lex_state = 5, .external_lex_state = 25}, [453] = {.lex_state = 5, .external_lex_state = 25}, @@ -23971,102 +23978,102 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [455] = {.lex_state = 2901, .external_lex_state = 25}, [456] = {.lex_state = 2901, .external_lex_state = 35}, [457] = {.lex_state = 5, .external_lex_state = 36}, - [458] = {.lex_state = 5, .external_lex_state = 37}, - [459] = {.lex_state = 2901, .external_lex_state = 35}, - [460] = {.lex_state = 5, .external_lex_state = 36}, + [458] = {.lex_state = 2901, .external_lex_state = 35}, + [459] = {.lex_state = 5, .external_lex_state = 36}, + [460] = {.lex_state = 5, .external_lex_state = 37}, [461] = {.lex_state = 5, .external_lex_state = 37}, [462] = {.lex_state = 5, .external_lex_state = 38}, - [463] = {.lex_state = 5, .external_lex_state = 38}, - [464] = {.lex_state = 2901, .external_lex_state = 25}, - [465] = {.lex_state = 3, .external_lex_state = 23}, - [466] = {.lex_state = 3, .external_lex_state = 23}, - [467] = {.lex_state = 5, .external_lex_state = 39}, - [468] = {.lex_state = 1, .external_lex_state = 23}, - [469] = {.lex_state = 4, .external_lex_state = 23}, - [470] = {.lex_state = 4, .external_lex_state = 40}, - [471] = {.lex_state = 1, .external_lex_state = 22}, - [472] = {.lex_state = 1, .external_lex_state = 23}, + [463] = {.lex_state = 2901, .external_lex_state = 25}, + [464] = {.lex_state = 5, .external_lex_state = 38}, + [465] = {.lex_state = 4, .external_lex_state = 39}, + [466] = {.lex_state = 4, .external_lex_state = 21}, + [467] = {.lex_state = 3, .external_lex_state = 22}, + [468] = {.lex_state = 3, .external_lex_state = 21}, + [469] = {.lex_state = 4, .external_lex_state = 21}, + [470] = {.lex_state = 3, .external_lex_state = 21}, + [471] = {.lex_state = 5, .external_lex_state = 40}, + [472] = {.lex_state = 3, .external_lex_state = 39}, [473] = {.lex_state = 4, .external_lex_state = 22}, - [474] = {.lex_state = 3, .external_lex_state = 40}, - [475] = {.lex_state = 3, .external_lex_state = 23}, - [476] = {.lex_state = 4, .external_lex_state = 40}, - [477] = {.lex_state = 4, .external_lex_state = 22}, - [478] = {.lex_state = 4, .external_lex_state = 23}, - [479] = {.lex_state = 1, .external_lex_state = 40}, - [480] = {.lex_state = 3, .external_lex_state = 22}, - [481] = {.lex_state = 4, .external_lex_state = 23}, - [482] = {.lex_state = 1, .external_lex_state = 22}, - [483] = {.lex_state = 3, .external_lex_state = 40}, - [484] = {.lex_state = 3, .external_lex_state = 22}, - [485] = {.lex_state = 1, .external_lex_state = 22}, - [486] = {.lex_state = 3, .external_lex_state = 22}, - [487] = {.lex_state = 4, .external_lex_state = 22}, - [488] = {.lex_state = 1, .external_lex_state = 23}, - [489] = {.lex_state = 5, .external_lex_state = 41}, - [490] = {.lex_state = 1, .external_lex_state = 40}, - [491] = {.lex_state = 5, .external_lex_state = 42}, - [492] = {.lex_state = 5, .external_lex_state = 42}, - [493] = {.lex_state = 5, .external_lex_state = 42}, + [474] = {.lex_state = 4, .external_lex_state = 22}, + [475] = {.lex_state = 3, .external_lex_state = 22}, + [476] = {.lex_state = 3, .external_lex_state = 22}, + [477] = {.lex_state = 5, .external_lex_state = 41}, + [478] = {.lex_state = 4, .external_lex_state = 21}, + [479] = {.lex_state = 4, .external_lex_state = 39}, + [480] = {.lex_state = 4, .external_lex_state = 22}, + [481] = {.lex_state = 3, .external_lex_state = 21}, + [482] = {.lex_state = 3, .external_lex_state = 39}, + [483] = {.lex_state = 5, .external_lex_state = 42}, + [484] = {.lex_state = 5, .external_lex_state = 42}, + [485] = {.lex_state = 1, .external_lex_state = 21}, + [486] = {.lex_state = 5, .external_lex_state = 43}, + [487] = {.lex_state = 5, .external_lex_state = 43}, + [488] = {.lex_state = 5, .external_lex_state = 43}, + [489] = {.lex_state = 5, .external_lex_state = 43}, + [490] = {.lex_state = 3, .external_lex_state = 25}, + [491] = {.lex_state = 4, .external_lex_state = 25}, + [492] = {.lex_state = 5, .external_lex_state = 43}, + [493] = {.lex_state = 5, .external_lex_state = 43}, [494] = {.lex_state = 5, .external_lex_state = 43}, [495] = {.lex_state = 5, .external_lex_state = 43}, [496] = {.lex_state = 5, .external_lex_state = 43}, - [497] = {.lex_state = 5, .external_lex_state = 38}, + [497] = {.lex_state = 5, .external_lex_state = 43}, [498] = {.lex_state = 5, .external_lex_state = 43}, - [499] = {.lex_state = 5, .external_lex_state = 42}, - [500] = {.lex_state = 5, .external_lex_state = 42}, + [499] = {.lex_state = 5, .external_lex_state = 43}, + [500] = {.lex_state = 5, .external_lex_state = 43}, [501] = {.lex_state = 5, .external_lex_state = 43}, - [502] = {.lex_state = 5, .external_lex_state = 37}, - [503] = {.lex_state = 5, .external_lex_state = 36}, + [502] = {.lex_state = 5, .external_lex_state = 43}, + [503] = {.lex_state = 5, .external_lex_state = 43}, [504] = {.lex_state = 5, .external_lex_state = 43}, - [505] = {.lex_state = 5, .external_lex_state = 42}, - [506] = {.lex_state = 5, .external_lex_state = 42}, - [507] = {.lex_state = 5, .external_lex_state = 42}, + [505] = {.lex_state = 5, .external_lex_state = 43}, + [506] = {.lex_state = 5, .external_lex_state = 43}, + [507] = {.lex_state = 5, .external_lex_state = 43}, [508] = {.lex_state = 5, .external_lex_state = 43}, [509] = {.lex_state = 5, .external_lex_state = 43}, - [510] = {.lex_state = 5, .external_lex_state = 42}, + [510] = {.lex_state = 5, .external_lex_state = 43}, [511] = {.lex_state = 5, .external_lex_state = 43}, - [512] = {.lex_state = 1, .external_lex_state = 25}, + [512] = {.lex_state = 5, .external_lex_state = 43}, [513] = {.lex_state = 5, .external_lex_state = 43}, - [514] = {.lex_state = 5, .external_lex_state = 43}, + [514] = {.lex_state = 1, .external_lex_state = 21}, [515] = {.lex_state = 5, .external_lex_state = 43}, - [516] = {.lex_state = 5, .external_lex_state = 43}, - [517] = {.lex_state = 5, .external_lex_state = 42}, + [516] = {.lex_state = 1, .external_lex_state = 22}, + [517] = {.lex_state = 5, .external_lex_state = 43}, [518] = {.lex_state = 5, .external_lex_state = 43}, [519] = {.lex_state = 5, .external_lex_state = 43}, - [520] = {.lex_state = 5, .external_lex_state = 42}, - [521] = {.lex_state = 5, .external_lex_state = 42}, - [522] = {.lex_state = 5, .external_lex_state = 44}, + [520] = {.lex_state = 5, .external_lex_state = 43}, + [521] = {.lex_state = 5, .external_lex_state = 43}, + [522] = {.lex_state = 5, .external_lex_state = 43}, [523] = {.lex_state = 5, .external_lex_state = 43}, - [524] = {.lex_state = 5, .external_lex_state = 43}, - [525] = {.lex_state = 5, .external_lex_state = 43}, + [524] = {.lex_state = 5, .external_lex_state = 42}, + [525] = {.lex_state = 5, .external_lex_state = 36}, [526] = {.lex_state = 5, .external_lex_state = 42}, - [527] = {.lex_state = 5, .external_lex_state = 43}, - [528] = {.lex_state = 5, .external_lex_state = 42}, + [527] = {.lex_state = 5, .external_lex_state = 42}, + [528] = {.lex_state = 5, .external_lex_state = 37}, [529] = {.lex_state = 5, .external_lex_state = 42}, - [530] = {.lex_state = 5, .external_lex_state = 43}, - [531] = {.lex_state = 5, .external_lex_state = 43}, + [530] = {.lex_state = 5, .external_lex_state = 42}, + [531] = {.lex_state = 5, .external_lex_state = 42}, [532] = {.lex_state = 5, .external_lex_state = 43}, - [533] = {.lex_state = 5, .external_lex_state = 43}, + [533] = {.lex_state = 5, .external_lex_state = 42}, [534] = {.lex_state = 5, .external_lex_state = 43}, - [535] = {.lex_state = 5, .external_lex_state = 43}, - [536] = {.lex_state = 5, .external_lex_state = 43}, + [535] = {.lex_state = 5, .external_lex_state = 42}, + [536] = {.lex_state = 5, .external_lex_state = 42}, [537] = {.lex_state = 5, .external_lex_state = 42}, [538] = {.lex_state = 5, .external_lex_state = 42}, - [539] = {.lex_state = 5, .external_lex_state = 43}, - [540] = {.lex_state = 5, .external_lex_state = 43}, - [541] = {.lex_state = 5, .external_lex_state = 43}, - [542] = {.lex_state = 5, .external_lex_state = 43}, - [543] = {.lex_state = 5, .external_lex_state = 43}, + [539] = {.lex_state = 5, .external_lex_state = 42}, + [540] = {.lex_state = 5, .external_lex_state = 42}, + [541] = {.lex_state = 5, .external_lex_state = 42}, + [542] = {.lex_state = 1, .external_lex_state = 39}, + [543] = {.lex_state = 5, .external_lex_state = 42}, [544] = {.lex_state = 5, .external_lex_state = 42}, [545] = {.lex_state = 5, .external_lex_state = 42}, - [546] = {.lex_state = 5, .external_lex_state = 42}, + [546] = {.lex_state = 1, .external_lex_state = 39}, [547] = {.lex_state = 5, .external_lex_state = 42}, - [548] = {.lex_state = 5, .external_lex_state = 42}, - [549] = {.lex_state = 5, .external_lex_state = 42}, - [550] = {.lex_state = 5, .external_lex_state = 43}, + [548] = {.lex_state = 1, .external_lex_state = 22}, + [549] = {.lex_state = 1, .external_lex_state = 22}, + [550] = {.lex_state = 5, .external_lex_state = 42}, [551] = {.lex_state = 5, .external_lex_state = 42}, - [552] = {.lex_state = 5, .external_lex_state = 42}, - [553] = {.lex_state = 5, .external_lex_state = 43}, + [552] = {.lex_state = 1, .external_lex_state = 21}, + [553] = {.lex_state = 5, .external_lex_state = 42}, [554] = {.lex_state = 5, .external_lex_state = 42}, [555] = {.lex_state = 5, .external_lex_state = 42}, [556] = {.lex_state = 5, .external_lex_state = 42}, @@ -24075,29 +24082,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [559] = {.lex_state = 5, .external_lex_state = 42}, [560] = {.lex_state = 5, .external_lex_state = 42}, [561] = {.lex_state = 5, .external_lex_state = 42}, - [562] = {.lex_state = 5, .external_lex_state = 43}, + [562] = {.lex_state = 5, .external_lex_state = 42}, [563] = {.lex_state = 5, .external_lex_state = 42}, [564] = {.lex_state = 5, .external_lex_state = 42}, [565] = {.lex_state = 5, .external_lex_state = 42}, - [566] = {.lex_state = 5, .external_lex_state = 43}, - [567] = {.lex_state = 5, .external_lex_state = 43}, - [568] = {.lex_state = 5, .external_lex_state = 42}, - [569] = {.lex_state = 1, .external_lex_state = 25}, + [566] = {.lex_state = 5, .external_lex_state = 42}, + [567] = {.lex_state = 5, .external_lex_state = 42}, + [568] = {.lex_state = 5, .external_lex_state = 43}, + [569] = {.lex_state = 5, .external_lex_state = 42}, [570] = {.lex_state = 5, .external_lex_state = 42}, - [571] = {.lex_state = 5, .external_lex_state = 43}, - [572] = {.lex_state = 5, .external_lex_state = 42}, - [573] = {.lex_state = 3, .external_lex_state = 25}, - [574] = {.lex_state = 5, .external_lex_state = 43}, - [575] = {.lex_state = 4, .external_lex_state = 25}, + [571] = {.lex_state = 4, .external_lex_state = 25}, + [572] = {.lex_state = 3, .external_lex_state = 25}, + [573] = {.lex_state = 5, .external_lex_state = 42}, + [574] = {.lex_state = 5, .external_lex_state = 44}, + [575] = {.lex_state = 5, .external_lex_state = 42}, [576] = {.lex_state = 5, .external_lex_state = 43}, [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 = 3, .external_lex_state = 25}, - [581] = {.lex_state = 5, .external_lex_state = 42}, - [582] = {.lex_state = 4, .external_lex_state = 25}, - [583] = {.lex_state = 5, .external_lex_state = 43}, - [584] = {.lex_state = 5, .external_lex_state = 43}, + [579] = {.lex_state = 5, .external_lex_state = 43}, + [580] = {.lex_state = 5, .external_lex_state = 43}, + [581] = {.lex_state = 5, .external_lex_state = 38}, + [582] = {.lex_state = 5, .external_lex_state = 43}, + [583] = {.lex_state = 5, .external_lex_state = 45}, + [584] = {.lex_state = 5, .external_lex_state = 45}, [585] = {.lex_state = 5, .external_lex_state = 45}, [586] = {.lex_state = 5, .external_lex_state = 45}, [587] = {.lex_state = 5, .external_lex_state = 45}, @@ -24108,183 +24115,183 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [592] = {.lex_state = 5, .external_lex_state = 45}, [593] = {.lex_state = 5, .external_lex_state = 45}, [594] = {.lex_state = 5, .external_lex_state = 45}, - [595] = {.lex_state = 5, .external_lex_state = 45}, + [595] = {.lex_state = 5, .external_lex_state = 46}, [596] = {.lex_state = 5, .external_lex_state = 45}, - [597] = {.lex_state = 5, .external_lex_state = 46}, - [598] = {.lex_state = 5, .external_lex_state = 45}, + [597] = {.lex_state = 5, .external_lex_state = 45}, + [598] = {.lex_state = 1, .external_lex_state = 25}, [599] = {.lex_state = 5, .external_lex_state = 45}, [600] = {.lex_state = 5, .external_lex_state = 45}, [601] = {.lex_state = 5, .external_lex_state = 45}, [602] = {.lex_state = 5, .external_lex_state = 45}, [603] = {.lex_state = 5, .external_lex_state = 45}, - [604] = {.lex_state = 5, .external_lex_state = 31}, + [604] = {.lex_state = 5, .external_lex_state = 45}, [605] = {.lex_state = 5, .external_lex_state = 45}, [606] = {.lex_state = 5, .external_lex_state = 45}, [607] = {.lex_state = 5, .external_lex_state = 45}, [608] = {.lex_state = 5, .external_lex_state = 45}, - [609] = {.lex_state = 5, .external_lex_state = 45}, + [609] = {.lex_state = 1, .external_lex_state = 25}, [610] = {.lex_state = 5, .external_lex_state = 45}, [611] = {.lex_state = 5, .external_lex_state = 45}, [612] = {.lex_state = 5, .external_lex_state = 45}, [613] = {.lex_state = 5, .external_lex_state = 45}, [614] = {.lex_state = 5, .external_lex_state = 45}, - [615] = {.lex_state = 5, .external_lex_state = 32}, + [615] = {.lex_state = 5, .external_lex_state = 47}, [616] = {.lex_state = 5, .external_lex_state = 45}, [617] = {.lex_state = 5, .external_lex_state = 45}, [618] = {.lex_state = 5, .external_lex_state = 45}, [619] = {.lex_state = 5, .external_lex_state = 45}, [620] = {.lex_state = 5, .external_lex_state = 45}, - [621] = {.lex_state = 5, .external_lex_state = 47}, + [621] = {.lex_state = 5, .external_lex_state = 45}, [622] = {.lex_state = 5, .external_lex_state = 45}, - [623] = {.lex_state = 5, .external_lex_state = 45}, - [624] = {.lex_state = 5, .external_lex_state = 47}, + [623] = {.lex_state = 5, .external_lex_state = 32}, + [624] = {.lex_state = 5, .external_lex_state = 31}, [625] = {.lex_state = 5, .external_lex_state = 45}, - [626] = {.lex_state = 5, .external_lex_state = 46}, + [626] = {.lex_state = 5, .external_lex_state = 45}, [627] = {.lex_state = 5, .external_lex_state = 45}, - [628] = {.lex_state = 5, .external_lex_state = 45}, + [628] = {.lex_state = 5, .external_lex_state = 32}, [629] = {.lex_state = 5, .external_lex_state = 45}, - [630] = {.lex_state = 5, .external_lex_state = 32}, - [631] = {.lex_state = 5, .external_lex_state = 45}, + [630] = {.lex_state = 5, .external_lex_state = 47}, + [631] = {.lex_state = 5, .external_lex_state = 46}, [632] = {.lex_state = 5, .external_lex_state = 45}, [633] = {.lex_state = 5, .external_lex_state = 45}, [634] = {.lex_state = 5, .external_lex_state = 45}, [635] = {.lex_state = 5, .external_lex_state = 35}, - [636] = {.lex_state = 5, .external_lex_state = 22}, - [637] = {.lex_state = 5, .external_lex_state = 40}, - [638] = {.lex_state = 5, .external_lex_state = 23}, - [639] = {.lex_state = 5, .external_lex_state = 22}, - [640] = {.lex_state = 5, .external_lex_state = 23}, - [641] = {.lex_state = 5, .external_lex_state = 33}, - [642] = {.lex_state = 5, .external_lex_state = 32}, - [643] = {.lex_state = 5, .external_lex_state = 40}, - [644] = {.lex_state = 5, .external_lex_state = 31}, - [645] = {.lex_state = 5, .external_lex_state = 33}, - [646] = {.lex_state = 5, .external_lex_state = 32}, + [636] = {.lex_state = 5, .external_lex_state = 21}, + [637] = {.lex_state = 5, .external_lex_state = 33}, + [638] = {.lex_state = 5, .external_lex_state = 31}, + [639] = {.lex_state = 5, .external_lex_state = 21}, + [640] = {.lex_state = 5, .external_lex_state = 22}, + [641] = {.lex_state = 5, .external_lex_state = 22}, + [642] = {.lex_state = 5, .external_lex_state = 39}, + [643] = {.lex_state = 5, .external_lex_state = 39}, + [644] = {.lex_state = 5, .external_lex_state = 32}, + [645] = {.lex_state = 5, .external_lex_state = 32}, + [646] = {.lex_state = 5, .external_lex_state = 25}, [647] = {.lex_state = 5, .external_lex_state = 32}, - [648] = {.lex_state = 5, .external_lex_state = 33}, - [649] = {.lex_state = 5, .external_lex_state = 32}, - [650] = {.lex_state = 5, .external_lex_state = 46}, - [651] = {.lex_state = 5, .external_lex_state = 31}, + [648] = {.lex_state = 5, .external_lex_state = 31}, + [649] = {.lex_state = 5, .external_lex_state = 46}, + [650] = {.lex_state = 10, .external_lex_state = 48}, + [651] = {.lex_state = 5, .external_lex_state = 32}, [652] = {.lex_state = 5, .external_lex_state = 31}, [653] = {.lex_state = 5, .external_lex_state = 32}, - [654] = {.lex_state = 5, .external_lex_state = 47}, - [655] = {.lex_state = 5, .external_lex_state = 31}, - [656] = {.lex_state = 10, .external_lex_state = 48}, - [657] = {.lex_state = 5, .external_lex_state = 32}, + [654] = {.lex_state = 5, .external_lex_state = 32}, + [655] = {.lex_state = 5, .external_lex_state = 33}, + [656] = {.lex_state = 5, .external_lex_state = 31}, + [657] = {.lex_state = 5, .external_lex_state = 31}, [658] = {.lex_state = 5, .external_lex_state = 32}, [659] = {.lex_state = 5, .external_lex_state = 31}, - [660] = {.lex_state = 5, .external_lex_state = 31}, - [661] = {.lex_state = 5, .external_lex_state = 25}, - [662] = {.lex_state = 5, .external_lex_state = 31}, - [663] = {.lex_state = 5, .external_lex_state = 33}, - [664] = {.lex_state = 5, .external_lex_state = 23}, - [665] = {.lex_state = 5, .external_lex_state = 23}, - [666] = {.lex_state = 5, .external_lex_state = 23}, - [667] = {.lex_state = 5, .external_lex_state = 23}, + [660] = {.lex_state = 5, .external_lex_state = 33}, + [661] = {.lex_state = 5, .external_lex_state = 31}, + [662] = {.lex_state = 5, .external_lex_state = 47}, + [663] = {.lex_state = 5, .external_lex_state = 21}, + [664] = {.lex_state = 5, .external_lex_state = 22}, + [665] = {.lex_state = 5, .external_lex_state = 31}, + [666] = {.lex_state = 5, .external_lex_state = 21}, + [667] = {.lex_state = 5, .external_lex_state = 22}, [668] = {.lex_state = 5, .external_lex_state = 22}, - [669] = {.lex_state = 5, .external_lex_state = 23}, - [670] = {.lex_state = 5, .external_lex_state = 23}, - [671] = {.lex_state = 5, .external_lex_state = 23}, - [672] = {.lex_state = 5, .external_lex_state = 23}, + [669] = {.lex_state = 5, .external_lex_state = 31}, + [670] = {.lex_state = 5, .external_lex_state = 21}, + [671] = {.lex_state = 5, .external_lex_state = 22}, + [672] = {.lex_state = 5, .external_lex_state = 22}, [673] = {.lex_state = 5, .external_lex_state = 22}, - [674] = {.lex_state = 5, .external_lex_state = 23}, - [675] = {.lex_state = 5, .external_lex_state = 22}, - [676] = {.lex_state = 5, .external_lex_state = 23}, - [677] = {.lex_state = 5, .external_lex_state = 22}, - [678] = {.lex_state = 5, .external_lex_state = 33}, - [679] = {.lex_state = 5, .external_lex_state = 23}, - [680] = {.lex_state = 5, .external_lex_state = 23}, - [681] = {.lex_state = 5, .external_lex_state = 23}, - [682] = {.lex_state = 5, .external_lex_state = 22}, - [683] = {.lex_state = 5, .external_lex_state = 23}, - [684] = {.lex_state = 5, .external_lex_state = 23}, + [674] = {.lex_state = 5, .external_lex_state = 32}, + [675] = {.lex_state = 5, .external_lex_state = 32}, + [676] = {.lex_state = 10, .external_lex_state = 49}, + [677] = {.lex_state = 5, .external_lex_state = 21}, + [678] = {.lex_state = 5, .external_lex_state = 22}, + [679] = {.lex_state = 5, .external_lex_state = 21}, + [680] = {.lex_state = 5, .external_lex_state = 33}, + [681] = {.lex_state = 5, .external_lex_state = 22}, + [682] = {.lex_state = 5, .external_lex_state = 21}, + [683] = {.lex_state = 5, .external_lex_state = 21}, + [684] = {.lex_state = 5, .external_lex_state = 21}, [685] = {.lex_state = 5, .external_lex_state = 22}, - [686] = {.lex_state = 5, .external_lex_state = 23}, - [687] = {.lex_state = 5, .external_lex_state = 22}, - [688] = {.lex_state = 5, .external_lex_state = 23}, - [689] = {.lex_state = 5, .external_lex_state = 23}, - [690] = {.lex_state = 5, .external_lex_state = 23}, - [691] = {.lex_state = 5, .external_lex_state = 22}, - [692] = {.lex_state = 5, .external_lex_state = 22}, - [693] = {.lex_state = 10, .external_lex_state = 49}, - [694] = {.lex_state = 5, .external_lex_state = 33}, + [686] = {.lex_state = 5, .external_lex_state = 21}, + [687] = {.lex_state = 5, .external_lex_state = 21}, + [688] = {.lex_state = 5, .external_lex_state = 21}, + [689] = {.lex_state = 5, .external_lex_state = 22}, + [690] = {.lex_state = 5, .external_lex_state = 22}, + [691] = {.lex_state = 5, .external_lex_state = 21}, + [692] = {.lex_state = 5, .external_lex_state = 21}, + [693] = {.lex_state = 5, .external_lex_state = 21}, + [694] = {.lex_state = 5, .external_lex_state = 21}, [695] = {.lex_state = 5, .external_lex_state = 22}, - [696] = {.lex_state = 5, .external_lex_state = 22}, - [697] = {.lex_state = 5, .external_lex_state = 23}, - [698] = {.lex_state = 10, .external_lex_state = 49}, - [699] = {.lex_state = 5, .external_lex_state = 23}, - [700] = {.lex_state = 5, .external_lex_state = 22}, - [701] = {.lex_state = 5, .external_lex_state = 23}, - [702] = {.lex_state = 5, .external_lex_state = 23}, + [696] = {.lex_state = 5, .external_lex_state = 21}, + [697] = {.lex_state = 5, .external_lex_state = 22}, + [698] = {.lex_state = 5, .external_lex_state = 22}, + [699] = {.lex_state = 5, .external_lex_state = 21}, + [700] = {.lex_state = 5, .external_lex_state = 21}, + [701] = {.lex_state = 5, .external_lex_state = 22}, + [702] = {.lex_state = 5, .external_lex_state = 21}, [703] = {.lex_state = 5, .external_lex_state = 22}, - [704] = {.lex_state = 5, .external_lex_state = 22}, - [705] = {.lex_state = 5, .external_lex_state = 23}, - [706] = {.lex_state = 5, .external_lex_state = 23}, + [704] = {.lex_state = 5, .external_lex_state = 21}, + [705] = {.lex_state = 5, .external_lex_state = 21}, + [706] = {.lex_state = 5, .external_lex_state = 21}, [707] = {.lex_state = 5, .external_lex_state = 22}, - [708] = {.lex_state = 5, .external_lex_state = 22}, - [709] = {.lex_state = 5, .external_lex_state = 22}, + [708] = {.lex_state = 5, .external_lex_state = 21}, + [709] = {.lex_state = 5, .external_lex_state = 21}, [710] = {.lex_state = 5, .external_lex_state = 22}, - [711] = {.lex_state = 5, .external_lex_state = 22}, + [711] = {.lex_state = 5, .external_lex_state = 21}, [712] = {.lex_state = 5, .external_lex_state = 22}, - [713] = {.lex_state = 5, .external_lex_state = 25}, - [714] = {.lex_state = 10, .external_lex_state = 49}, + [713] = {.lex_state = 5, .external_lex_state = 22}, + [714] = {.lex_state = 5, .external_lex_state = 22}, [715] = {.lex_state = 5, .external_lex_state = 22}, - [716] = {.lex_state = 5, .external_lex_state = 22}, - [717] = {.lex_state = 5, .external_lex_state = 33}, - [718] = {.lex_state = 5, .external_lex_state = 23}, - [719] = {.lex_state = 5, .external_lex_state = 22}, - [720] = {.lex_state = 5, .external_lex_state = 22}, + [716] = {.lex_state = 5, .external_lex_state = 21}, + [717] = {.lex_state = 5, .external_lex_state = 21}, + [718] = {.lex_state = 5, .external_lex_state = 21}, + [719] = {.lex_state = 5, .external_lex_state = 21}, + [720] = {.lex_state = 5, .external_lex_state = 21}, [721] = {.lex_state = 5, .external_lex_state = 22}, [722] = {.lex_state = 5, .external_lex_state = 22}, - [723] = {.lex_state = 5, .external_lex_state = 23}, - [724] = {.lex_state = 5, .external_lex_state = 23}, - [725] = {.lex_state = 5, .external_lex_state = 23}, - [726] = {.lex_state = 5, .external_lex_state = 23}, - [727] = {.lex_state = 5, .external_lex_state = 23}, - [728] = {.lex_state = 5, .external_lex_state = 22}, - [729] = {.lex_state = 5, .external_lex_state = 22}, - [730] = {.lex_state = 5, .external_lex_state = 23}, - [731] = {.lex_state = 5, .external_lex_state = 23}, - [732] = {.lex_state = 5, .external_lex_state = 33}, - [733] = {.lex_state = 5, .external_lex_state = 22}, - [734] = {.lex_state = 5, .external_lex_state = 23}, - [735] = {.lex_state = 5, .external_lex_state = 23}, - [736] = {.lex_state = 5, .external_lex_state = 22}, - [737] = {.lex_state = 5, .external_lex_state = 23}, - [738] = {.lex_state = 5, .external_lex_state = 22}, - [739] = {.lex_state = 5, .external_lex_state = 22}, - [740] = {.lex_state = 5, .external_lex_state = 22}, - [741] = {.lex_state = 5, .external_lex_state = 23}, - [742] = {.lex_state = 5, .external_lex_state = 23}, - [743] = {.lex_state = 5, .external_lex_state = 23}, - [744] = {.lex_state = 5, .external_lex_state = 23}, + [723] = {.lex_state = 10, .external_lex_state = 49}, + [724] = {.lex_state = 10, .external_lex_state = 49}, + [725] = {.lex_state = 5, .external_lex_state = 35}, + [726] = {.lex_state = 5, .external_lex_state = 21}, + [727] = {.lex_state = 5, .external_lex_state = 22}, + [728] = {.lex_state = 5, .external_lex_state = 21}, + [729] = {.lex_state = 5, .external_lex_state = 21}, + [730] = {.lex_state = 5, .external_lex_state = 22}, + [731] = {.lex_state = 5, .external_lex_state = 22}, + [732] = {.lex_state = 5, .external_lex_state = 21}, + [733] = {.lex_state = 5, .external_lex_state = 21}, + [734] = {.lex_state = 5, .external_lex_state = 21}, + [735] = {.lex_state = 5, .external_lex_state = 21}, + [736] = {.lex_state = 5, .external_lex_state = 21}, + [737] = {.lex_state = 5, .external_lex_state = 22}, + [738] = {.lex_state = 5, .external_lex_state = 21}, + [739] = {.lex_state = 5, .external_lex_state = 21}, + [740] = {.lex_state = 5, .external_lex_state = 21}, + [741] = {.lex_state = 5, .external_lex_state = 22}, + [742] = {.lex_state = 5, .external_lex_state = 22}, + [743] = {.lex_state = 5, .external_lex_state = 22}, + [744] = {.lex_state = 5, .external_lex_state = 22}, [745] = {.lex_state = 5, .external_lex_state = 22}, [746] = {.lex_state = 5, .external_lex_state = 22}, - [747] = {.lex_state = 5, .external_lex_state = 32}, + [747] = {.lex_state = 5, .external_lex_state = 22}, [748] = {.lex_state = 5, .external_lex_state = 22}, - [749] = {.lex_state = 5, .external_lex_state = 32}, + [749] = {.lex_state = 5, .external_lex_state = 22}, [750] = {.lex_state = 5, .external_lex_state = 22}, [751] = {.lex_state = 5, .external_lex_state = 22}, - [752] = {.lex_state = 5, .external_lex_state = 22}, - [753] = {.lex_state = 5, .external_lex_state = 23}, - [754] = {.lex_state = 5, .external_lex_state = 31}, - [755] = {.lex_state = 5, .external_lex_state = 23}, + [752] = {.lex_state = 5, .external_lex_state = 21}, + [753] = {.lex_state = 5, .external_lex_state = 32}, + [754] = {.lex_state = 10, .external_lex_state = 49}, + [755] = {.lex_state = 5, .external_lex_state = 21}, [756] = {.lex_state = 5, .external_lex_state = 31}, - [757] = {.lex_state = 10, .external_lex_state = 49}, - [758] = {.lex_state = 5, .external_lex_state = 23}, - [759] = {.lex_state = 5, .external_lex_state = 22}, - [760] = {.lex_state = 5, .external_lex_state = 33}, - [761] = {.lex_state = 5, .external_lex_state = 23}, + [757] = {.lex_state = 5, .external_lex_state = 21}, + [758] = {.lex_state = 5, .external_lex_state = 21}, + [759] = {.lex_state = 5, .external_lex_state = 21}, + [760] = {.lex_state = 5, .external_lex_state = 22}, + [761] = {.lex_state = 5, .external_lex_state = 21}, [762] = {.lex_state = 5, .external_lex_state = 22}, - [763] = {.lex_state = 5, .external_lex_state = 23}, - [764] = {.lex_state = 5, .external_lex_state = 23}, - [765] = {.lex_state = 5, .external_lex_state = 23}, - [766] = {.lex_state = 5, .external_lex_state = 23}, - [767] = {.lex_state = 5, .external_lex_state = 22}, - [768] = {.lex_state = 5, .external_lex_state = 22}, + [763] = {.lex_state = 5, .external_lex_state = 21}, + [764] = {.lex_state = 5, .external_lex_state = 22}, + [765] = {.lex_state = 5, .external_lex_state = 21}, + [766] = {.lex_state = 5, .external_lex_state = 21}, + [767] = {.lex_state = 5, .external_lex_state = 21}, + [768] = {.lex_state = 5, .external_lex_state = 21}, [769] = {.lex_state = 5, .external_lex_state = 22}, - [770] = {.lex_state = 5, .external_lex_state = 22}, - [771] = {.lex_state = 5, .external_lex_state = 22}, + [770] = {.lex_state = 5, .external_lex_state = 21}, + [771] = {.lex_state = 5, .external_lex_state = 21}, [772] = {.lex_state = 5, .external_lex_state = 22}, [773] = {.lex_state = 5, .external_lex_state = 22}, [774] = {.lex_state = 5, .external_lex_state = 22}, @@ -24292,98 +24299,98 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [776] = {.lex_state = 5, .external_lex_state = 22}, [777] = {.lex_state = 5, .external_lex_state = 22}, [778] = {.lex_state = 5, .external_lex_state = 22}, - [779] = {.lex_state = 5, .external_lex_state = 31}, - [780] = {.lex_state = 5, .external_lex_state = 23}, - [781] = {.lex_state = 5, .external_lex_state = 22}, - [782] = {.lex_state = 5, .external_lex_state = 22}, + [779] = {.lex_state = 5, .external_lex_state = 22}, + [780] = {.lex_state = 5, .external_lex_state = 22}, + [781] = {.lex_state = 5, .external_lex_state = 21}, + [782] = {.lex_state = 5, .external_lex_state = 21}, [783] = {.lex_state = 5, .external_lex_state = 22}, - [784] = {.lex_state = 5, .external_lex_state = 22}, - [785] = {.lex_state = 5, .external_lex_state = 23}, + [784] = {.lex_state = 5, .external_lex_state = 25}, + [785] = {.lex_state = 5, .external_lex_state = 21}, [786] = {.lex_state = 5, .external_lex_state = 22}, - [787] = {.lex_state = 5, .external_lex_state = 23}, + [787] = {.lex_state = 5, .external_lex_state = 22}, [788] = {.lex_state = 5, .external_lex_state = 22}, - [789] = {.lex_state = 5, .external_lex_state = 23}, - [790] = {.lex_state = 5, .external_lex_state = 22}, - [791] = {.lex_state = 5, .external_lex_state = 23}, - [792] = {.lex_state = 5, .external_lex_state = 35}, - [793] = {.lex_state = 5, .external_lex_state = 23}, - [794] = {.lex_state = 5, .external_lex_state = 32}, - [795] = {.lex_state = 5, .external_lex_state = 23}, - [796] = {.lex_state = 5, .external_lex_state = 23}, - [797] = {.lex_state = 5, .external_lex_state = 22}, - [798] = {.lex_state = 5, .external_lex_state = 22}, - [799] = {.lex_state = 5, .external_lex_state = 22}, - [800] = {.lex_state = 5, .external_lex_state = 22}, - [801] = {.lex_state = 5, .external_lex_state = 23}, - [802] = {.lex_state = 5, .external_lex_state = 23}, - [803] = {.lex_state = 5, .external_lex_state = 23}, - [804] = {.lex_state = 5, .external_lex_state = 23}, - [805] = {.lex_state = 5, .external_lex_state = 23}, - [806] = {.lex_state = 5, .external_lex_state = 23}, - [807] = {.lex_state = 5, .external_lex_state = 22}, - [808] = {.lex_state = 5, .external_lex_state = 22}, - [809] = {.lex_state = 5, .external_lex_state = 23}, - [810] = {.lex_state = 5, .external_lex_state = 23}, - [811] = {.lex_state = 5, .external_lex_state = 23}, - [812] = {.lex_state = 5, .external_lex_state = 23}, + [789] = {.lex_state = 5, .external_lex_state = 22}, + [790] = {.lex_state = 5, .external_lex_state = 21}, + [791] = {.lex_state = 5, .external_lex_state = 22}, + [792] = {.lex_state = 5, .external_lex_state = 21}, + [793] = {.lex_state = 5, .external_lex_state = 33}, + [794] = {.lex_state = 5, .external_lex_state = 21}, + [795] = {.lex_state = 5, .external_lex_state = 33}, + [796] = {.lex_state = 5, .external_lex_state = 22}, + [797] = {.lex_state = 5, .external_lex_state = 21}, + [798] = {.lex_state = 5, .external_lex_state = 21}, + [799] = {.lex_state = 5, .external_lex_state = 21}, + [800] = {.lex_state = 5, .external_lex_state = 21}, + [801] = {.lex_state = 5, .external_lex_state = 33}, + [802] = {.lex_state = 5, .external_lex_state = 22}, + [803] = {.lex_state = 5, .external_lex_state = 22}, + [804] = {.lex_state = 5, .external_lex_state = 22}, + [805] = {.lex_state = 5, .external_lex_state = 22}, + [806] = {.lex_state = 5, .external_lex_state = 33}, + [807] = {.lex_state = 5, .external_lex_state = 21}, + [808] = {.lex_state = 5, .external_lex_state = 21}, + [809] = {.lex_state = 5, .external_lex_state = 33}, + [810] = {.lex_state = 5, .external_lex_state = 22}, + [811] = {.lex_state = 5, .external_lex_state = 22}, + [812] = {.lex_state = 5, .external_lex_state = 22}, [813] = {.lex_state = 5, .external_lex_state = 25}, [814] = {.lex_state = 5, .external_lex_state = 25}, [815] = {.lex_state = 5, .external_lex_state = 22}, - [816] = {.lex_state = 5, .external_lex_state = 23}, + [816] = {.lex_state = 5, .external_lex_state = 22}, [817] = {.lex_state = 5, .external_lex_state = 22}, - [818] = {.lex_state = 5, .external_lex_state = 25}, - [819] = {.lex_state = 5, .external_lex_state = 22}, - [820] = {.lex_state = 5, .external_lex_state = 22}, - [821] = {.lex_state = 5, .external_lex_state = 22}, - [822] = {.lex_state = 5, .external_lex_state = 22}, - [823] = {.lex_state = 5, .external_lex_state = 22}, - [824] = {.lex_state = 5, .external_lex_state = 31}, - [825] = {.lex_state = 5, .external_lex_state = 23}, + [818] = {.lex_state = 5, .external_lex_state = 22}, + [819] = {.lex_state = 5, .external_lex_state = 25}, + [820] = {.lex_state = 5, .external_lex_state = 25}, + [821] = {.lex_state = 5, .external_lex_state = 25}, + [822] = {.lex_state = 5, .external_lex_state = 25}, + [823] = {.lex_state = 5, .external_lex_state = 25}, + [824] = {.lex_state = 10, .external_lex_state = 44}, + [825] = {.lex_state = 5, .external_lex_state = 25}, [826] = {.lex_state = 5, .external_lex_state = 25}, [827] = {.lex_state = 5, .external_lex_state = 25}, [828] = {.lex_state = 5, .external_lex_state = 25}, [829] = {.lex_state = 5, .external_lex_state = 25}, [830] = {.lex_state = 5, .external_lex_state = 22}, [831] = {.lex_state = 5, .external_lex_state = 25}, - [832] = {.lex_state = 5, .external_lex_state = 23}, + [832] = {.lex_state = 10, .external_lex_state = 25}, [833] = {.lex_state = 5, .external_lex_state = 25}, - [834] = {.lex_state = 5, .external_lex_state = 23}, - [835] = {.lex_state = 5, .external_lex_state = 25}, + [834] = {.lex_state = 5, .external_lex_state = 25}, + [835] = {.lex_state = 5, .external_lex_state = 22}, [836] = {.lex_state = 5, .external_lex_state = 25}, - [837] = {.lex_state = 10, .external_lex_state = 25}, - [838] = {.lex_state = 5, .external_lex_state = 32}, - [839] = {.lex_state = 5, .external_lex_state = 25}, + [837] = {.lex_state = 5, .external_lex_state = 25}, + [838] = {.lex_state = 5, .external_lex_state = 33}, + [839] = {.lex_state = 10, .external_lex_state = 25}, [840] = {.lex_state = 5, .external_lex_state = 25}, [841] = {.lex_state = 10, .external_lex_state = 25}, [842] = {.lex_state = 5, .external_lex_state = 25}, - [843] = {.lex_state = 5, .external_lex_state = 25}, + [843] = {.lex_state = 5, .external_lex_state = 21}, [844] = {.lex_state = 5, .external_lex_state = 25}, - [845] = {.lex_state = 10, .external_lex_state = 25}, - [846] = {.lex_state = 5, .external_lex_state = 25}, - [847] = {.lex_state = 5, .external_lex_state = 22}, - [848] = {.lex_state = 5, .external_lex_state = 25}, - [849] = {.lex_state = 5, .external_lex_state = 25}, + [845] = {.lex_state = 5, .external_lex_state = 22}, + [846] = {.lex_state = 5, .external_lex_state = 22}, + [847] = {.lex_state = 5, .external_lex_state = 25}, + [848] = {.lex_state = 5, .external_lex_state = 21}, + [849] = {.lex_state = 5, .external_lex_state = 21}, [850] = {.lex_state = 5, .external_lex_state = 25}, [851] = {.lex_state = 5, .external_lex_state = 25}, - [852] = {.lex_state = 5, .external_lex_state = 25}, + [852] = {.lex_state = 10, .external_lex_state = 25}, [853] = {.lex_state = 5, .external_lex_state = 25}, [854] = {.lex_state = 5, .external_lex_state = 25}, - [855] = {.lex_state = 10, .external_lex_state = 44}, + [855] = {.lex_state = 5, .external_lex_state = 25}, [856] = {.lex_state = 5, .external_lex_state = 25}, [857] = {.lex_state = 5, .external_lex_state = 25}, - [858] = {.lex_state = 5, .external_lex_state = 25}, - [859] = {.lex_state = 5, .external_lex_state = 23}, + [858] = {.lex_state = 5, .external_lex_state = 32}, + [859] = {.lex_state = 5, .external_lex_state = 31}, [860] = {.lex_state = 5, .external_lex_state = 25}, - [861] = {.lex_state = 5, .external_lex_state = 25}, - [862] = {.lex_state = 5, .external_lex_state = 25}, - [863] = {.lex_state = 5, .external_lex_state = 25}, + [861] = {.lex_state = 10, .external_lex_state = 25}, + [862] = {.lex_state = 10, .external_lex_state = 25}, + [863] = {.lex_state = 10, .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 = 25}, + [865] = {.lex_state = 5, .external_lex_state = 22}, + [866] = {.lex_state = 5, .external_lex_state = 21}, [867] = {.lex_state = 5, .external_lex_state = 25}, [868] = {.lex_state = 5, .external_lex_state = 25}, [869] = {.lex_state = 5, .external_lex_state = 25}, - [870] = {.lex_state = 5, .external_lex_state = 25}, + [870] = {.lex_state = 5, .external_lex_state = 22}, [871] = {.lex_state = 5, .external_lex_state = 25}, [872] = {.lex_state = 5, .external_lex_state = 25}, [873] = {.lex_state = 5, .external_lex_state = 25}, @@ -24391,886 +24398,886 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [875] = {.lex_state = 5, .external_lex_state = 25}, [876] = {.lex_state = 5, .external_lex_state = 25}, [877] = {.lex_state = 5, .external_lex_state = 25}, - [878] = {.lex_state = 5, .external_lex_state = 23}, + [878] = {.lex_state = 5, .external_lex_state = 25}, [879] = {.lex_state = 5, .external_lex_state = 25}, - [880] = {.lex_state = 10, .external_lex_state = 25}, - [881] = {.lex_state = 5, .external_lex_state = 23}, - [882] = {.lex_state = 5, .external_lex_state = 23}, - [883] = {.lex_state = 5, .external_lex_state = 25}, + [880] = {.lex_state = 5, .external_lex_state = 25}, + [881] = {.lex_state = 5, .external_lex_state = 25}, + [882] = {.lex_state = 5, .external_lex_state = 25}, + [883] = {.lex_state = 10, .external_lex_state = 25}, [884] = {.lex_state = 5, .external_lex_state = 25}, [885] = {.lex_state = 10, .external_lex_state = 25}, - [886] = {.lex_state = 5, .external_lex_state = 23}, - [887] = {.lex_state = 10, .external_lex_state = 25}, - [888] = {.lex_state = 5, .external_lex_state = 25}, - [889] = {.lex_state = 5, .external_lex_state = 23}, + [886] = {.lex_state = 5, .external_lex_state = 25}, + [887] = {.lex_state = 5, .external_lex_state = 25}, + [888] = {.lex_state = 10, .external_lex_state = 25}, + [889] = {.lex_state = 10, .external_lex_state = 25}, [890] = {.lex_state = 5, .external_lex_state = 25}, - [891] = {.lex_state = 10, .external_lex_state = 25}, + [891] = {.lex_state = 5, .external_lex_state = 25}, [892] = {.lex_state = 5, .external_lex_state = 25}, [893] = {.lex_state = 5, .external_lex_state = 25}, - [894] = {.lex_state = 5, .external_lex_state = 22}, + [894] = {.lex_state = 5, .external_lex_state = 25}, [895] = {.lex_state = 5, .external_lex_state = 25}, - [896] = {.lex_state = 5, .external_lex_state = 33}, + [896] = {.lex_state = 5, .external_lex_state = 25}, [897] = {.lex_state = 5, .external_lex_state = 25}, - [898] = {.lex_state = 5, .external_lex_state = 23}, + [898] = {.lex_state = 5, .external_lex_state = 25}, [899] = {.lex_state = 5, .external_lex_state = 25}, [900] = {.lex_state = 5, .external_lex_state = 25}, [901] = {.lex_state = 5, .external_lex_state = 25}, - [902] = {.lex_state = 5, .external_lex_state = 25}, - [903] = {.lex_state = 5, .external_lex_state = 25}, + [902] = {.lex_state = 5, .external_lex_state = 21}, + [903] = {.lex_state = 5, .external_lex_state = 21}, [904] = {.lex_state = 5, .external_lex_state = 25}, - [905] = {.lex_state = 5, .external_lex_state = 25}, - [906] = {.lex_state = 5, .external_lex_state = 25}, - [907] = {.lex_state = 5, .external_lex_state = 25}, - [908] = {.lex_state = 10, .external_lex_state = 25}, - [909] = {.lex_state = 10, .external_lex_state = 25}, + [905] = {.lex_state = 5, .external_lex_state = 21}, + [906] = {.lex_state = 5, .external_lex_state = 21}, + [907] = {.lex_state = 5, .external_lex_state = 21}, + [908] = {.lex_state = 5, .external_lex_state = 25}, + [909] = {.lex_state = 5, .external_lex_state = 25}, [910] = {.lex_state = 5, .external_lex_state = 25}, [911] = {.lex_state = 5, .external_lex_state = 25}, - [912] = {.lex_state = 10, .external_lex_state = 25}, - [913] = {.lex_state = 5, .external_lex_state = 22}, + [912] = {.lex_state = 5, .external_lex_state = 25}, + [913] = {.lex_state = 5, .external_lex_state = 25}, [914] = {.lex_state = 5, .external_lex_state = 25}, [915] = {.lex_state = 5, .external_lex_state = 25}, - [916] = {.lex_state = 5, .external_lex_state = 25}, + [916] = {.lex_state = 5, .external_lex_state = 22}, [917] = {.lex_state = 5, .external_lex_state = 25}, - [918] = {.lex_state = 10, .external_lex_state = 25}, + [918] = {.lex_state = 5, .external_lex_state = 25}, [919] = {.lex_state = 5, .external_lex_state = 25}, - [920] = {.lex_state = 5, .external_lex_state = 25}, - [921] = {.lex_state = 5, .external_lex_state = 25}, - [922] = {.lex_state = 5, .external_lex_state = 23}, - [923] = {.lex_state = 7}, + [920] = {.lex_state = 5, .external_lex_state = 21}, + [921] = {.lex_state = 5, .external_lex_state = 21}, + [922] = {.lex_state = 7}, + [923] = {.lex_state = 13, .external_lex_state = 50}, [924] = {.lex_state = 7}, - [925] = {.lex_state = 5, .external_lex_state = 22}, + [925] = {.lex_state = 7}, [926] = {.lex_state = 7}, [927] = {.lex_state = 7}, - [928] = {.lex_state = 5, .external_lex_state = 22}, - [929] = {.lex_state = 5, .external_lex_state = 22}, + [928] = {.lex_state = 7}, + [929] = {.lex_state = 7}, [930] = {.lex_state = 7}, - [931] = {.lex_state = 5, .external_lex_state = 22}, + [931] = {.lex_state = 7}, [932] = {.lex_state = 7}, - [933] = {.lex_state = 7}, + [933] = {.lex_state = 13, .external_lex_state = 50}, [934] = {.lex_state = 7}, [935] = {.lex_state = 7}, - [936] = {.lex_state = 7}, + [936] = {.lex_state = 5, .external_lex_state = 22}, [937] = {.lex_state = 7}, - [938] = {.lex_state = 7}, - [939] = {.lex_state = 7}, - [940] = {.lex_state = 7}, - [941] = {.lex_state = 7}, - [942] = {.lex_state = 7}, - [943] = {.lex_state = 7}, - [944] = {.lex_state = 7}, - [945] = {.lex_state = 7}, + [938] = {.lex_state = 13, .external_lex_state = 50}, + [939] = {.lex_state = 5, .external_lex_state = 22}, + [940] = {.lex_state = 13, .external_lex_state = 50}, + [941] = {.lex_state = 5, .external_lex_state = 22}, + [942] = {.lex_state = 10, .external_lex_state = 45}, + [943] = {.lex_state = 10, .external_lex_state = 45}, + [944] = {.lex_state = 10, .external_lex_state = 45}, + [945] = {.lex_state = 10, .external_lex_state = 45}, [946] = {.lex_state = 7}, - [947] = {.lex_state = 7}, - [948] = {.lex_state = 7}, + [947] = {.lex_state = 5, .external_lex_state = 22}, + [948] = {.lex_state = 5, .external_lex_state = 22}, [949] = {.lex_state = 7}, [950] = {.lex_state = 7}, - [951] = {.lex_state = 10, .external_lex_state = 45}, - [952] = {.lex_state = 10, .external_lex_state = 45}, - [953] = {.lex_state = 10, .external_lex_state = 45}, - [954] = {.lex_state = 10, .external_lex_state = 45}, + [951] = {.lex_state = 7}, + [952] = {.lex_state = 7}, + [953] = {.lex_state = 7}, + [954] = {.lex_state = 7}, [955] = {.lex_state = 7}, - [956] = {.lex_state = 5, .external_lex_state = 25}, - [957] = {.lex_state = 5, .external_lex_state = 25}, + [956] = {.lex_state = 5, .external_lex_state = 21}, + [957] = {.lex_state = 13, .external_lex_state = 50}, [958] = {.lex_state = 7}, [959] = {.lex_state = 7}, [960] = {.lex_state = 7}, - [961] = {.lex_state = 7}, - [962] = {.lex_state = 7}, - [963] = {.lex_state = 7}, - [964] = {.lex_state = 7}, + [961] = {.lex_state = 5, .external_lex_state = 25}, + [962] = {.lex_state = 13, .external_lex_state = 50}, + [963] = {.lex_state = 5, .external_lex_state = 25}, + [964] = {.lex_state = 5, .external_lex_state = 25}, [965] = {.lex_state = 7}, [966] = {.lex_state = 7}, [967] = {.lex_state = 7}, [968] = {.lex_state = 7}, [969] = {.lex_state = 7}, [970] = {.lex_state = 7}, - [971] = {.lex_state = 6, .external_lex_state = 30}, - [972] = {.lex_state = 6, .external_lex_state = 30}, + [971] = {.lex_state = 7}, + [972] = {.lex_state = 13, .external_lex_state = 50}, [973] = {.lex_state = 7}, - [974] = {.lex_state = 7}, + [974] = {.lex_state = 13, .external_lex_state = 50}, [975] = {.lex_state = 7}, [976] = {.lex_state = 7}, - [977] = {.lex_state = 10, .external_lex_state = 25}, + [977] = {.lex_state = 7}, [978] = {.lex_state = 7}, - [979] = {.lex_state = 13, .external_lex_state = 50}, - [980] = {.lex_state = 7}, - [981] = {.lex_state = 5, .external_lex_state = 23}, - [982] = {.lex_state = 5, .external_lex_state = 23}, - [983] = {.lex_state = 5, .external_lex_state = 23}, - [984] = {.lex_state = 5, .external_lex_state = 23}, - [985] = {.lex_state = 7}, - [986] = {.lex_state = 5, .external_lex_state = 22}, - [987] = {.lex_state = 13, .external_lex_state = 50}, - [988] = {.lex_state = 5, .external_lex_state = 23}, + [979] = {.lex_state = 7}, + [980] = {.lex_state = 6, .external_lex_state = 30}, + [981] = {.lex_state = 6, .external_lex_state = 30}, + [982] = {.lex_state = 7}, + [983] = {.lex_state = 13, .external_lex_state = 50}, + [984] = {.lex_state = 7}, + [985] = {.lex_state = 5, .external_lex_state = 21}, + [986] = {.lex_state = 5, .external_lex_state = 21}, + [987] = {.lex_state = 5, .external_lex_state = 21}, + [988] = {.lex_state = 5, .external_lex_state = 21}, [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 = 7}, - [993] = {.lex_state = 7}, - [994] = {.lex_state = 5, .external_lex_state = 25}, - [995] = {.lex_state = 5, .external_lex_state = 22}, - [996] = {.lex_state = 13, .external_lex_state = 50}, - [997] = {.lex_state = 13, .external_lex_state = 50}, - [998] = {.lex_state = 5, .external_lex_state = 22}, - [999] = {.lex_state = 5, .external_lex_state = 23}, - [1000] = {.lex_state = 5, .external_lex_state = 25}, + [990] = {.lex_state = 7}, + [991] = {.lex_state = 7}, + [992] = {.lex_state = 10, .external_lex_state = 25}, + [993] = {.lex_state = 13, .external_lex_state = 50}, + [994] = {.lex_state = 13, .external_lex_state = 50}, + [995] = {.lex_state = 13, .external_lex_state = 50}, + [996] = {.lex_state = 7}, + [997] = {.lex_state = 7}, + [998] = {.lex_state = 13, .external_lex_state = 50}, + [999] = {.lex_state = 7}, + [1000] = {.lex_state = 7}, [1001] = {.lex_state = 7}, - [1002] = {.lex_state = 5, .external_lex_state = 25}, - [1003] = {.lex_state = 13, .external_lex_state = 50}, - [1004] = {.lex_state = 13, .external_lex_state = 50}, - [1005] = {.lex_state = 5, .external_lex_state = 22}, - [1006] = {.lex_state = 5, .external_lex_state = 23}, - [1007] = {.lex_state = 13, .external_lex_state = 50}, - [1008] = {.lex_state = 7}, + [1002] = {.lex_state = 5, .external_lex_state = 22}, + [1003] = {.lex_state = 5, .external_lex_state = 22}, + [1004] = {.lex_state = 7}, + [1005] = {.lex_state = 5, .external_lex_state = 21}, + [1006] = {.lex_state = 5, .external_lex_state = 21}, + [1007] = {.lex_state = 5, .external_lex_state = 25}, + [1008] = {.lex_state = 13, .external_lex_state = 50}, [1009] = {.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 = 13, .external_lex_state = 50}, + [1013] = {.lex_state = 5, .external_lex_state = 22}, [1014] = {.lex_state = 13, .external_lex_state = 50}, [1015] = {.lex_state = 13, .external_lex_state = 50}, - [1016] = {.lex_state = 7}, + [1016] = {.lex_state = 5, .external_lex_state = 21}, [1017] = {.lex_state = 13, .external_lex_state = 50}, - [1018] = {.lex_state = 5, .external_lex_state = 25}, - [1019] = {.lex_state = 13, .external_lex_state = 50}, - [1020] = {.lex_state = 5, .external_lex_state = 23}, - [1021] = {.lex_state = 13, .external_lex_state = 50}, - [1022] = {.lex_state = 7}, - [1023] = {.lex_state = 13, .external_lex_state = 50}, - [1024] = {.lex_state = 13, .external_lex_state = 50}, - [1025] = {.lex_state = 13, .external_lex_state = 50}, - [1026] = {.lex_state = 13, .external_lex_state = 50}, + [1018] = {.lex_state = 13, .external_lex_state = 50}, + [1019] = {.lex_state = 5, .external_lex_state = 25}, + [1020] = {.lex_state = 13, .external_lex_state = 50}, + [1021] = {.lex_state = 5, .external_lex_state = 25}, + [1022] = {.lex_state = 5, .external_lex_state = 21}, + [1023] = {.lex_state = 5, .external_lex_state = 25}, + [1024] = {.lex_state = 5, .external_lex_state = 25}, + [1025] = {.lex_state = 5, .external_lex_state = 22}, + [1026] = {.lex_state = 7}, [1027] = {.lex_state = 13, .external_lex_state = 50}, - [1028] = {.lex_state = 13, .external_lex_state = 50}, - [1029] = {.lex_state = 5, .external_lex_state = 22}, - [1030] = {.lex_state = 5, .external_lex_state = 25}, - [1031] = {.lex_state = 13, .external_lex_state = 50}, - [1032] = {.lex_state = 5, .external_lex_state = 25}, + [1028] = {.lex_state = 7}, + [1029] = {.lex_state = 7}, + [1030] = {.lex_state = 13, .external_lex_state = 50}, + [1031] = {.lex_state = 7}, + [1032] = {.lex_state = 13, .external_lex_state = 50}, [1033] = {.lex_state = 7, .external_lex_state = 51}, [1034] = {.lex_state = 7, .external_lex_state = 51}, [1035] = {.lex_state = 10, .external_lex_state = 52}, - [1036] = {.lex_state = 7, .external_lex_state = 53}, - [1037] = {.lex_state = 7}, + [1036] = {.lex_state = 7}, + [1037] = {.lex_state = 7, .external_lex_state = 53}, [1038] = {.lex_state = 13, .external_lex_state = 54}, [1039] = {.lex_state = 13, .external_lex_state = 54}, - [1040] = {.lex_state = 7, .external_lex_state = 55}, + [1040] = {.lex_state = 13, .external_lex_state = 55}, [1041] = {.lex_state = 13, .external_lex_state = 54}, - [1042] = {.lex_state = 13, .external_lex_state = 56}, - [1043] = {.lex_state = 10, .external_lex_state = 33}, + [1042] = {.lex_state = 13, .external_lex_state = 55}, + [1043] = {.lex_state = 13, .external_lex_state = 54}, [1044] = {.lex_state = 13, .external_lex_state = 54}, - [1045] = {.lex_state = 10, .external_lex_state = 35}, - [1046] = {.lex_state = 13, .external_lex_state = 56}, - [1047] = {.lex_state = 7, .external_lex_state = 55}, - [1048] = {.lex_state = 7, .external_lex_state = 55}, - [1049] = {.lex_state = 7, .external_lex_state = 55}, - [1050] = {.lex_state = 13, .external_lex_state = 54}, - [1051] = {.lex_state = 7, .external_lex_state = 57}, - [1052] = {.lex_state = 13, .external_lex_state = 56}, - [1053] = {.lex_state = 13, .external_lex_state = 54}, - [1054] = {.lex_state = 7}, - [1055] = {.lex_state = 7}, - [1056] = {.lex_state = 13, .external_lex_state = 56}, - [1057] = {.lex_state = 7}, - [1058] = {.lex_state = 13, .external_lex_state = 56}, - [1059] = {.lex_state = 13, .external_lex_state = 56}, - [1060] = {.lex_state = 15, .external_lex_state = 30}, - [1061] = {.lex_state = 13, .external_lex_state = 56}, + [1045] = {.lex_state = 13, .external_lex_state = 55}, + [1046] = {.lex_state = 13, .external_lex_state = 54}, + [1047] = {.lex_state = 13, .external_lex_state = 55}, + [1048] = {.lex_state = 13, .external_lex_state = 54}, + [1049] = {.lex_state = 13, .external_lex_state = 55}, + [1050] = {.lex_state = 10, .external_lex_state = 35}, + [1051] = {.lex_state = 16, .external_lex_state = 30}, + [1052] = {.lex_state = 16, .external_lex_state = 30}, + [1053] = {.lex_state = 7, .external_lex_state = 56}, + [1054] = {.lex_state = 13, .external_lex_state = 54}, + [1055] = {.lex_state = 13, .external_lex_state = 54}, + [1056] = {.lex_state = 13, .external_lex_state = 54}, + [1057] = {.lex_state = 13, .external_lex_state = 54}, + [1058] = {.lex_state = 13, .external_lex_state = 55}, + [1059] = {.lex_state = 13, .external_lex_state = 55}, + [1060] = {.lex_state = 13, .external_lex_state = 55}, + [1061] = {.lex_state = 13, .external_lex_state = 55}, [1062] = {.lex_state = 13, .external_lex_state = 54}, - [1063] = {.lex_state = 16, .external_lex_state = 30}, - [1064] = {.lex_state = 13, .external_lex_state = 56}, - [1065] = {.lex_state = 13, .external_lex_state = 54}, - [1066] = {.lex_state = 13, .external_lex_state = 56}, - [1067] = {.lex_state = 16, .external_lex_state = 30}, + [1063] = {.lex_state = 13, .external_lex_state = 54}, + [1064] = {.lex_state = 13, .external_lex_state = 55}, + [1065] = {.lex_state = 13, .external_lex_state = 55}, + [1066] = {.lex_state = 7, .external_lex_state = 56}, + [1067] = {.lex_state = 13, .external_lex_state = 54}, [1068] = {.lex_state = 13, .external_lex_state = 54}, [1069] = {.lex_state = 13, .external_lex_state = 54}, - [1070] = {.lex_state = 13, .external_lex_state = 56}, + [1070] = {.lex_state = 13, .external_lex_state = 55}, [1071] = {.lex_state = 13, .external_lex_state = 54}, - [1072] = {.lex_state = 13, .external_lex_state = 56}, - [1073] = {.lex_state = 13, .external_lex_state = 54}, + [1072] = {.lex_state = 13, .external_lex_state = 55}, + [1073] = {.lex_state = 7}, [1074] = {.lex_state = 13, .external_lex_state = 54}, - [1075] = {.lex_state = 13, .external_lex_state = 56}, - [1076] = {.lex_state = 13, .external_lex_state = 56}, - [1077] = {.lex_state = 13, .external_lex_state = 54}, - [1078] = {.lex_state = 13, .external_lex_state = 56}, - [1079] = {.lex_state = 7}, - [1080] = {.lex_state = 13, .external_lex_state = 54}, - [1081] = {.lex_state = 13, .external_lex_state = 56}, - [1082] = {.lex_state = 13, .external_lex_state = 54}, - [1083] = {.lex_state = 13, .external_lex_state = 54}, - [1084] = {.lex_state = 13, .external_lex_state = 56}, - [1085] = {.lex_state = 13, .external_lex_state = 56}, + [1075] = {.lex_state = 10, .external_lex_state = 33}, + [1076] = {.lex_state = 13, .external_lex_state = 55}, + [1077] = {.lex_state = 13, .external_lex_state = 55}, + [1078] = {.lex_state = 7, .external_lex_state = 56}, + [1079] = {.lex_state = 13, .external_lex_state = 54}, + [1080] = {.lex_state = 13, .external_lex_state = 55}, + [1081] = {.lex_state = 13, .external_lex_state = 54}, + [1082] = {.lex_state = 13, .external_lex_state = 55}, + [1083] = {.lex_state = 7, .external_lex_state = 57}, + [1084] = {.lex_state = 7}, + [1085] = {.lex_state = 13, .external_lex_state = 54}, [1086] = {.lex_state = 13, .external_lex_state = 54}, - [1087] = {.lex_state = 13, .external_lex_state = 56}, - [1088] = {.lex_state = 13, .external_lex_state = 54}, - [1089] = {.lex_state = 13, .external_lex_state = 54}, - [1090] = {.lex_state = 13, .external_lex_state = 56}, - [1091] = {.lex_state = 13, .external_lex_state = 56}, - [1092] = {.lex_state = 13, .external_lex_state = 54}, - [1093] = {.lex_state = 13, .external_lex_state = 56}, - [1094] = {.lex_state = 13, .external_lex_state = 56}, - [1095] = {.lex_state = 13, .external_lex_state = 54}, - [1096] = {.lex_state = 15, .external_lex_state = 30}, - [1097] = {.lex_state = 13, .external_lex_state = 54}, - [1098] = {.lex_state = 13, .external_lex_state = 56}, - [1099] = {.lex_state = 13, .external_lex_state = 56}, + [1087] = {.lex_state = 13, .external_lex_state = 54}, + [1088] = {.lex_state = 13, .external_lex_state = 55}, + [1089] = {.lex_state = 13, .external_lex_state = 55}, + [1090] = {.lex_state = 7}, + [1091] = {.lex_state = 7}, + [1092] = {.lex_state = 13, .external_lex_state = 55}, + [1093] = {.lex_state = 13, .external_lex_state = 55}, + [1094] = {.lex_state = 13, .external_lex_state = 55}, + [1095] = {.lex_state = 7, .external_lex_state = 56}, + [1096] = {.lex_state = 13, .external_lex_state = 54}, + [1097] = {.lex_state = 15, .external_lex_state = 30}, + [1098] = {.lex_state = 13, .external_lex_state = 54}, + [1099] = {.lex_state = 15, .external_lex_state = 30}, [1100] = {.lex_state = 13, .external_lex_state = 54}, - [1101] = {.lex_state = 13, .external_lex_state = 56}, - [1102] = {.lex_state = 13, .external_lex_state = 54}, + [1101] = {.lex_state = 13, .external_lex_state = 55}, + [1102] = {.lex_state = 13, .external_lex_state = 55}, [1103] = {.lex_state = 13, .external_lex_state = 54}, - [1104] = {.lex_state = 13, .external_lex_state = 56}, - [1105] = {.lex_state = 13, .external_lex_state = 54}, - [1106] = {.lex_state = 13, .external_lex_state = 54}, - [1107] = {.lex_state = 13, .external_lex_state = 56}, - [1108] = {.lex_state = 13, .external_lex_state = 56}, - [1109] = {.lex_state = 13, .external_lex_state = 54}, - [1110] = {.lex_state = 13, .external_lex_state = 56}, - [1111] = {.lex_state = 13, .external_lex_state = 56}, + [1104] = {.lex_state = 13, .external_lex_state = 54}, + [1105] = {.lex_state = 13, .external_lex_state = 55}, + [1106] = {.lex_state = 13, .external_lex_state = 55}, + [1107] = {.lex_state = 13, .external_lex_state = 55}, + [1108] = {.lex_state = 13, .external_lex_state = 55}, + [1109] = {.lex_state = 13, .external_lex_state = 55}, + [1110] = {.lex_state = 13, .external_lex_state = 55}, + [1111] = {.lex_state = 13, .external_lex_state = 54}, [1112] = {.lex_state = 13, .external_lex_state = 54}, - [1113] = {.lex_state = 7, .external_lex_state = 58}, - [1114] = {.lex_state = 7, .external_lex_state = 58}, - [1115] = {.lex_state = 7}, - [1116] = {.lex_state = 7, .external_lex_state = 51}, - [1117] = {.lex_state = 13, .external_lex_state = 59}, - [1118] = {.lex_state = 7, .external_lex_state = 51}, - [1119] = {.lex_state = 7}, - [1120] = {.lex_state = 7, .external_lex_state = 51}, - [1121] = {.lex_state = 13, .external_lex_state = 59}, + [1113] = {.lex_state = 7, .external_lex_state = 51}, + [1114] = {.lex_state = 7, .external_lex_state = 51}, + [1115] = {.lex_state = 7, .external_lex_state = 58}, + [1116] = {.lex_state = 7, .external_lex_state = 58}, + [1117] = {.lex_state = 7, .external_lex_state = 58}, + [1118] = {.lex_state = 7, .external_lex_state = 58}, + [1119] = {.lex_state = 7, .external_lex_state = 58}, + [1120] = {.lex_state = 7, .external_lex_state = 58}, + [1121] = {.lex_state = 7, .external_lex_state = 58}, [1122] = {.lex_state = 7, .external_lex_state = 58}, [1123] = {.lex_state = 7, .external_lex_state = 58}, - [1124] = {.lex_state = 7}, - [1125] = {.lex_state = 7}, - [1126] = {.lex_state = 13, .external_lex_state = 56}, - [1127] = {.lex_state = 7}, + [1124] = {.lex_state = 13, .external_lex_state = 59}, + [1125] = {.lex_state = 7, .external_lex_state = 58}, + [1126] = {.lex_state = 7, .external_lex_state = 58}, + [1127] = {.lex_state = 7, .external_lex_state = 58}, [1128] = {.lex_state = 7, .external_lex_state = 58}, - [1129] = {.lex_state = 7}, - [1130] = {.lex_state = 13, .external_lex_state = 56}, + [1129] = {.lex_state = 13, .external_lex_state = 54}, + [1130] = {.lex_state = 7, .external_lex_state = 58}, [1131] = {.lex_state = 7, .external_lex_state = 58}, [1132] = {.lex_state = 7, .external_lex_state = 58}, [1133] = {.lex_state = 7, .external_lex_state = 58}, - [1134] = {.lex_state = 7}, - [1135] = {.lex_state = 7}, + [1134] = {.lex_state = 7, .external_lex_state = 58}, + [1135] = {.lex_state = 7, .external_lex_state = 58}, [1136] = {.lex_state = 7, .external_lex_state = 58}, - [1137] = {.lex_state = 13, .external_lex_state = 59}, + [1137] = {.lex_state = 7, .external_lex_state = 58}, [1138] = {.lex_state = 7, .external_lex_state = 58}, [1139] = {.lex_state = 7, .external_lex_state = 58}, [1140] = {.lex_state = 7, .external_lex_state = 58}, [1141] = {.lex_state = 7, .external_lex_state = 58}, [1142] = {.lex_state = 7, .external_lex_state = 58}, - [1143] = {.lex_state = 7, .external_lex_state = 58}, + [1143] = {.lex_state = 13, .external_lex_state = 60}, [1144] = {.lex_state = 7, .external_lex_state = 58}, [1145] = {.lex_state = 7, .external_lex_state = 58}, [1146] = {.lex_state = 7, .external_lex_state = 58}, [1147] = {.lex_state = 7, .external_lex_state = 58}, [1148] = {.lex_state = 7, .external_lex_state = 58}, - [1149] = {.lex_state = 7}, - [1150] = {.lex_state = 12, .external_lex_state = 60}, - [1151] = {.lex_state = 13, .external_lex_state = 61}, - [1152] = {.lex_state = 11, .external_lex_state = 60}, - [1153] = {.lex_state = 8, .external_lex_state = 60}, - [1154] = {.lex_state = 10, .external_lex_state = 25}, - [1155] = {.lex_state = 14, .external_lex_state = 60}, - [1156] = {.lex_state = 7, .external_lex_state = 58}, - [1157] = {.lex_state = 7, .external_lex_state = 58}, - [1158] = {.lex_state = 7, .external_lex_state = 58}, - [1159] = {.lex_state = 7, .external_lex_state = 58}, - [1160] = {.lex_state = 7, .external_lex_state = 58}, - [1161] = {.lex_state = 7, .external_lex_state = 58}, - [1162] = {.lex_state = 13, .external_lex_state = 59}, - [1163] = {.lex_state = 7, .external_lex_state = 58}, - [1164] = {.lex_state = 7, .external_lex_state = 58}, - [1165] = {.lex_state = 13, .external_lex_state = 62}, - [1166] = {.lex_state = 7}, - [1167] = {.lex_state = 7, .external_lex_state = 58}, - [1168] = {.lex_state = 7, .external_lex_state = 58}, - [1169] = {.lex_state = 7}, - [1170] = {.lex_state = 7, .external_lex_state = 58}, - [1171] = {.lex_state = 7, .external_lex_state = 58}, - [1172] = {.lex_state = 7, .external_lex_state = 58}, - [1173] = {.lex_state = 13, .external_lex_state = 54}, - [1174] = {.lex_state = 7, .external_lex_state = 58}, - [1175] = {.lex_state = 10, .external_lex_state = 25}, - [1176] = {.lex_state = 13, .external_lex_state = 63}, - [1177] = {.lex_state = 7, .external_lex_state = 58}, + [1149] = {.lex_state = 7, .external_lex_state = 58}, + [1150] = {.lex_state = 7, .external_lex_state = 58}, + [1151] = {.lex_state = 7, .external_lex_state = 58}, + [1152] = {.lex_state = 7, .external_lex_state = 58}, + [1153] = {.lex_state = 7, .external_lex_state = 58}, + [1154] = {.lex_state = 7, .external_lex_state = 58}, + [1155] = {.lex_state = 7, .external_lex_state = 58}, + [1156] = {.lex_state = 7}, + [1157] = {.lex_state = 13, .external_lex_state = 55}, + [1158] = {.lex_state = 13, .external_lex_state = 55}, + [1159] = {.lex_state = 7}, + [1160] = {.lex_state = 13, .external_lex_state = 61}, + [1161] = {.lex_state = 14, .external_lex_state = 62}, + [1162] = {.lex_state = 7}, + [1163] = {.lex_state = 13, .external_lex_state = 54}, + [1164] = {.lex_state = 10, .external_lex_state = 25}, + [1165] = {.lex_state = 7}, + [1166] = {.lex_state = 8, .external_lex_state = 62}, + [1167] = {.lex_state = 13, .external_lex_state = 61}, + [1168] = {.lex_state = 11, .external_lex_state = 62}, + [1169] = {.lex_state = 7, .external_lex_state = 58}, + [1170] = {.lex_state = 12, .external_lex_state = 62}, + [1171] = {.lex_state = 13, .external_lex_state = 63}, + [1172] = {.lex_state = 10, .external_lex_state = 25}, + [1173] = {.lex_state = 7}, + [1174] = {.lex_state = 7}, + [1175] = {.lex_state = 13, .external_lex_state = 61}, + [1176] = {.lex_state = 7}, + [1177] = {.lex_state = 7}, [1178] = {.lex_state = 7, .external_lex_state = 58}, - [1179] = {.lex_state = 7, .external_lex_state = 58}, - [1180] = {.lex_state = 7, .external_lex_state = 58}, - [1181] = {.lex_state = 13, .external_lex_state = 54}, - [1182] = {.lex_state = 7, .external_lex_state = 58}, - [1183] = {.lex_state = 7, .external_lex_state = 58}, + [1179] = {.lex_state = 7, .external_lex_state = 51}, + [1180] = {.lex_state = 7}, + [1181] = {.lex_state = 7}, + [1182] = {.lex_state = 7}, + [1183] = {.lex_state = 13, .external_lex_state = 61}, [1184] = {.lex_state = 7, .external_lex_state = 58}, [1185] = {.lex_state = 7, .external_lex_state = 58}, - [1186] = {.lex_state = 11, .external_lex_state = 64}, - [1187] = {.lex_state = 13, .external_lex_state = 60}, - [1188] = {.lex_state = 12, .external_lex_state = 64}, - [1189] = {.lex_state = 11, .external_lex_state = 64}, - [1190] = {.lex_state = 8, .external_lex_state = 51}, - [1191] = {.lex_state = 13, .external_lex_state = 65}, - [1192] = {.lex_state = 8, .external_lex_state = 64}, - [1193] = {.lex_state = 14, .external_lex_state = 64}, - [1194] = {.lex_state = 13, .external_lex_state = 66}, - [1195] = {.lex_state = 13, .external_lex_state = 65}, - [1196] = {.lex_state = 13, .external_lex_state = 65}, - [1197] = {.lex_state = 12, .external_lex_state = 64}, - [1198] = {.lex_state = 11, .external_lex_state = 64}, - [1199] = {.lex_state = 8, .external_lex_state = 51}, - [1200] = {.lex_state = 8, .external_lex_state = 64}, - [1201] = {.lex_state = 14, .external_lex_state = 64}, - [1202] = {.lex_state = 13, .external_lex_state = 65}, - [1203] = {.lex_state = 7}, - [1204] = {.lex_state = 12, .external_lex_state = 64}, - [1205] = {.lex_state = 7}, + [1186] = {.lex_state = 14, .external_lex_state = 64}, + [1187] = {.lex_state = 8, .external_lex_state = 65}, + [1188] = {.lex_state = 7}, + [1189] = {.lex_state = 8, .external_lex_state = 51}, + [1190] = {.lex_state = 11, .external_lex_state = 64}, + [1191] = {.lex_state = 13, .external_lex_state = 66}, + [1192] = {.lex_state = 12, .external_lex_state = 64}, + [1193] = {.lex_state = 7}, + [1194] = {.lex_state = 11, .external_lex_state = 64}, + [1195] = {.lex_state = 8, .external_lex_state = 64}, + [1196] = {.lex_state = 14, .external_lex_state = 64}, + [1197] = {.lex_state = 13, .external_lex_state = 62}, + [1198] = {.lex_state = 12, .external_lex_state = 64}, + [1199] = {.lex_state = 14, .external_lex_state = 64}, + [1200] = {.lex_state = 12, .external_lex_state = 64}, + [1201] = {.lex_state = 7}, + [1202] = {.lex_state = 12, .external_lex_state = 64}, + [1203] = {.lex_state = 11, .external_lex_state = 64}, + [1204] = {.lex_state = 13, .external_lex_state = 64}, + [1205] = {.lex_state = 11, .external_lex_state = 64}, [1206] = {.lex_state = 14, .external_lex_state = 64}, - [1207] = {.lex_state = 8, .external_lex_state = 64}, - [1208] = {.lex_state = 12, .external_lex_state = 64}, + [1207] = {.lex_state = 8, .external_lex_state = 51}, + [1208] = {.lex_state = 8, .external_lex_state = 64}, [1209] = {.lex_state = 14, .external_lex_state = 64}, - [1210] = {.lex_state = 8, .external_lex_state = 64}, - [1211] = {.lex_state = 11, .external_lex_state = 64}, + [1210] = {.lex_state = 8, .external_lex_state = 51}, + [1211] = {.lex_state = 8, .external_lex_state = 64}, [1212] = {.lex_state = 12, .external_lex_state = 64}, - [1213] = {.lex_state = 7}, - [1214] = {.lex_state = 7}, - [1215] = {.lex_state = 7}, - [1216] = {.lex_state = 14, .external_lex_state = 64}, - [1217] = {.lex_state = 8, .external_lex_state = 64}, - [1218] = {.lex_state = 11, .external_lex_state = 64}, + [1213] = {.lex_state = 12, .external_lex_state = 64}, + [1214] = {.lex_state = 13, .external_lex_state = 64}, + [1215] = {.lex_state = 11, .external_lex_state = 64}, + [1216] = {.lex_state = 8, .external_lex_state = 64}, + [1217] = {.lex_state = 14, .external_lex_state = 64}, + [1218] = {.lex_state = 13, .external_lex_state = 64}, [1219] = {.lex_state = 12, .external_lex_state = 64}, - [1220] = {.lex_state = 14, .external_lex_state = 64}, - [1221] = {.lex_state = 8, .external_lex_state = 64}, - [1222] = {.lex_state = 11, .external_lex_state = 64}, + [1220] = {.lex_state = 13, .external_lex_state = 67}, + [1221] = {.lex_state = 14, .external_lex_state = 64}, + [1222] = {.lex_state = 13, .external_lex_state = 68}, [1223] = {.lex_state = 12, .external_lex_state = 64}, [1224] = {.lex_state = 11, .external_lex_state = 64}, - [1225] = {.lex_state = 8, .external_lex_state = 51}, - [1226] = {.lex_state = 8, .external_lex_state = 64}, - [1227] = {.lex_state = 14, .external_lex_state = 64}, - [1228] = {.lex_state = 12, .external_lex_state = 64}, + [1225] = {.lex_state = 7}, + [1226] = {.lex_state = 11, .external_lex_state = 64}, + [1227] = {.lex_state = 12, .external_lex_state = 64}, + [1228] = {.lex_state = 8, .external_lex_state = 64}, [1229] = {.lex_state = 7}, - [1230] = {.lex_state = 7}, - [1231] = {.lex_state = 11, .external_lex_state = 64}, - [1232] = {.lex_state = 8, .external_lex_state = 57}, - [1233] = {.lex_state = 14, .external_lex_state = 64}, - [1234] = {.lex_state = 8, .external_lex_state = 64}, - [1235] = {.lex_state = 11, .external_lex_state = 64}, - [1236] = {.lex_state = 12, .external_lex_state = 64}, - [1237] = {.lex_state = 12, .external_lex_state = 64}, - [1238] = {.lex_state = 11, .external_lex_state = 64}, - [1239] = {.lex_state = 8, .external_lex_state = 51}, - [1240] = {.lex_state = 8, .external_lex_state = 64}, - [1241] = {.lex_state = 14, .external_lex_state = 64}, - [1242] = {.lex_state = 13, .external_lex_state = 64}, - [1243] = {.lex_state = 8, .external_lex_state = 64}, - [1244] = {.lex_state = 14, .external_lex_state = 64}, + [1230] = {.lex_state = 12, .external_lex_state = 64}, + [1231] = {.lex_state = 14, .external_lex_state = 64}, + [1232] = {.lex_state = 8, .external_lex_state = 64}, + [1233] = {.lex_state = 13, .external_lex_state = 64}, + [1234] = {.lex_state = 8, .external_lex_state = 57}, + [1235] = {.lex_state = 8, .external_lex_state = 64}, + [1236] = {.lex_state = 11, .external_lex_state = 64}, + [1237] = {.lex_state = 13, .external_lex_state = 50}, + [1238] = {.lex_state = 8, .external_lex_state = 64}, + [1239] = {.lex_state = 14, .external_lex_state = 64}, + [1240] = {.lex_state = 13, .external_lex_state = 50}, + [1241] = {.lex_state = 13, .external_lex_state = 50}, + [1242] = {.lex_state = 8, .external_lex_state = 51}, + [1243] = {.lex_state = 11, .external_lex_state = 64}, + [1244] = {.lex_state = 13, .external_lex_state = 50}, [1245] = {.lex_state = 8, .external_lex_state = 64}, - [1246] = {.lex_state = 11, .external_lex_state = 64}, - [1247] = {.lex_state = 13, .external_lex_state = 64}, - [1248] = {.lex_state = 13, .external_lex_state = 64}, - [1249] = {.lex_state = 14, .external_lex_state = 64}, - [1250] = {.lex_state = 8, .external_lex_state = 64}, - [1251] = {.lex_state = 8, .external_lex_state = 51}, - [1252] = {.lex_state = 12, .external_lex_state = 64}, - [1253] = {.lex_state = 14, .external_lex_state = 64}, - [1254] = {.lex_state = 13, .external_lex_state = 64}, - [1255] = {.lex_state = 14, .external_lex_state = 64}, - [1256] = {.lex_state = 8, .external_lex_state = 64}, - [1257] = {.lex_state = 11, .external_lex_state = 64}, - [1258] = {.lex_state = 13, .external_lex_state = 66}, - [1259] = {.lex_state = 12, .external_lex_state = 64}, - [1260] = {.lex_state = 11, .external_lex_state = 64}, - [1261] = {.lex_state = 14, .external_lex_state = 64}, - [1262] = {.lex_state = 8, .external_lex_state = 64}, - [1263] = {.lex_state = 11, .external_lex_state = 64}, - [1264] = {.lex_state = 12, .external_lex_state = 64}, - [1265] = {.lex_state = 12, .external_lex_state = 64}, - [1266] = {.lex_state = 13, .external_lex_state = 67}, - [1267] = {.lex_state = 7}, - [1268] = {.lex_state = 14, .external_lex_state = 64}, + [1246] = {.lex_state = 12, .external_lex_state = 65}, + [1247] = {.lex_state = 12, .external_lex_state = 65}, + [1248] = {.lex_state = 12, .external_lex_state = 65}, + [1249] = {.lex_state = 12, .external_lex_state = 65}, + [1250] = {.lex_state = 14, .external_lex_state = 64}, + [1251] = {.lex_state = 11, .external_lex_state = 65}, + [1252] = {.lex_state = 11, .external_lex_state = 65}, + [1253] = {.lex_state = 11, .external_lex_state = 65}, + [1254] = {.lex_state = 11, .external_lex_state = 65}, + [1255] = {.lex_state = 13, .external_lex_state = 64}, + [1256] = {.lex_state = 11, .external_lex_state = 64}, + [1257] = {.lex_state = 7}, + [1258] = {.lex_state = 8, .external_lex_state = 65}, + [1259] = {.lex_state = 8, .external_lex_state = 65}, + [1260] = {.lex_state = 8, .external_lex_state = 64}, + [1261] = {.lex_state = 8, .external_lex_state = 65}, + [1262] = {.lex_state = 14, .external_lex_state = 64}, + [1263] = {.lex_state = 14, .external_lex_state = 65}, + [1264] = {.lex_state = 14, .external_lex_state = 65}, + [1265] = {.lex_state = 14, .external_lex_state = 65}, + [1266] = {.lex_state = 14, .external_lex_state = 65}, + [1267] = {.lex_state = 8, .external_lex_state = 64}, + [1268] = {.lex_state = 11, .external_lex_state = 64}, [1269] = {.lex_state = 8, .external_lex_state = 64}, - [1270] = {.lex_state = 11, .external_lex_state = 64}, - [1271] = {.lex_state = 12, .external_lex_state = 64}, - [1272] = {.lex_state = 14, .external_lex_state = 64}, - [1273] = {.lex_state = 8, .external_lex_state = 64}, - [1274] = {.lex_state = 11, .external_lex_state = 64}, - [1275] = {.lex_state = 12, .external_lex_state = 64}, - [1276] = {.lex_state = 13, .external_lex_state = 50}, - [1277] = {.lex_state = 13, .external_lex_state = 50}, - [1278] = {.lex_state = 13, .external_lex_state = 50}, - [1279] = {.lex_state = 13, .external_lex_state = 64}, - [1280] = {.lex_state = 13, .external_lex_state = 50}, - [1281] = {.lex_state = 12, .external_lex_state = 68}, - [1282] = {.lex_state = 12, .external_lex_state = 68}, - [1283] = {.lex_state = 12, .external_lex_state = 68}, - [1284] = {.lex_state = 12, .external_lex_state = 68}, - [1285] = {.lex_state = 11, .external_lex_state = 68}, - [1286] = {.lex_state = 11, .external_lex_state = 68}, - [1287] = {.lex_state = 11, .external_lex_state = 68}, - [1288] = {.lex_state = 11, .external_lex_state = 68}, - [1289] = {.lex_state = 8, .external_lex_state = 68}, - [1290] = {.lex_state = 8, .external_lex_state = 68}, - [1291] = {.lex_state = 8, .external_lex_state = 68}, - [1292] = {.lex_state = 8, .external_lex_state = 68}, - [1293] = {.lex_state = 11, .external_lex_state = 57}, - [1294] = {.lex_state = 14, .external_lex_state = 68}, - [1295] = {.lex_state = 14, .external_lex_state = 68}, - [1296] = {.lex_state = 14, .external_lex_state = 68}, - [1297] = {.lex_state = 14, .external_lex_state = 68}, + [1270] = {.lex_state = 13, .external_lex_state = 67}, + [1271] = {.lex_state = 13, .external_lex_state = 67}, + [1272] = {.lex_state = 12, .external_lex_state = 64}, + [1273] = {.lex_state = 11, .external_lex_state = 64}, + [1274] = {.lex_state = 8, .external_lex_state = 64}, + [1275] = {.lex_state = 14, .external_lex_state = 64}, + [1276] = {.lex_state = 14, .external_lex_state = 64}, + [1277] = {.lex_state = 12, .external_lex_state = 64}, + [1278] = {.lex_state = 14, .external_lex_state = 64}, + [1279] = {.lex_state = 8, .external_lex_state = 64}, + [1280] = {.lex_state = 8, .external_lex_state = 64}, + [1281] = {.lex_state = 11, .external_lex_state = 64}, + [1282] = {.lex_state = 7}, + [1283] = {.lex_state = 7}, + [1284] = {.lex_state = 12, .external_lex_state = 64}, + [1285] = {.lex_state = 11, .external_lex_state = 64}, + [1286] = {.lex_state = 8, .external_lex_state = 64}, + [1287] = {.lex_state = 14, .external_lex_state = 64}, + [1288] = {.lex_state = 8, .external_lex_state = 51}, + [1289] = {.lex_state = 12, .external_lex_state = 57}, + [1290] = {.lex_state = 11, .external_lex_state = 64}, + [1291] = {.lex_state = 12, .external_lex_state = 64}, + [1292] = {.lex_state = 12, .external_lex_state = 64}, + [1293] = {.lex_state = 14, .external_lex_state = 64}, + [1294] = {.lex_state = 12, .external_lex_state = 64}, + [1295] = {.lex_state = 11, .external_lex_state = 57}, + [1296] = {.lex_state = 8, .external_lex_state = 64}, + [1297] = {.lex_state = 11, .external_lex_state = 64}, [1298] = {.lex_state = 12, .external_lex_state = 64}, - [1299] = {.lex_state = 14, .external_lex_state = 64}, - [1300] = {.lex_state = 8, .external_lex_state = 64}, - [1301] = {.lex_state = 11, .external_lex_state = 64}, - [1302] = {.lex_state = 12, .external_lex_state = 64}, - [1303] = {.lex_state = 14, .external_lex_state = 64}, + [1299] = {.lex_state = 11, .external_lex_state = 64}, + [1300] = {.lex_state = 12, .external_lex_state = 64}, + [1301] = {.lex_state = 14, .external_lex_state = 64}, + [1302] = {.lex_state = 11, .external_lex_state = 64}, + [1303] = {.lex_state = 8, .external_lex_state = 64}, [1304] = {.lex_state = 8, .external_lex_state = 64}, - [1305] = {.lex_state = 11, .external_lex_state = 64}, - [1306] = {.lex_state = 12, .external_lex_state = 64}, - [1307] = {.lex_state = 12, .external_lex_state = 57}, + [1305] = {.lex_state = 13, .external_lex_state = 66}, + [1306] = {.lex_state = 14, .external_lex_state = 64}, + [1307] = {.lex_state = 12, .external_lex_state = 64}, [1308] = {.lex_state = 11, .external_lex_state = 64}, [1309] = {.lex_state = 8, .external_lex_state = 51}, - [1310] = {.lex_state = 14, .external_lex_state = 64}, - [1311] = {.lex_state = 8, .external_lex_state = 64}, + [1310] = {.lex_state = 8, .external_lex_state = 64}, + [1311] = {.lex_state = 14, .external_lex_state = 64}, [1312] = {.lex_state = 11, .external_lex_state = 64}, [1313] = {.lex_state = 12, .external_lex_state = 64}, [1314] = {.lex_state = 8, .external_lex_state = 64}, [1315] = {.lex_state = 14, .external_lex_state = 64}, - [1316] = {.lex_state = 8, .external_lex_state = 64}, + [1316] = {.lex_state = 13, .external_lex_state = 67}, [1317] = {.lex_state = 13, .external_lex_state = 66}, - [1318] = {.lex_state = 11, .external_lex_state = 64}, - [1319] = {.lex_state = 13, .external_lex_state = 66}, + [1318] = {.lex_state = 13, .external_lex_state = 66}, + [1319] = {.lex_state = 12, .external_lex_state = 64}, [1320] = {.lex_state = 12, .external_lex_state = 64}, [1321] = {.lex_state = 14, .external_lex_state = 64}, - [1322] = {.lex_state = 14, .external_lex_state = 64}, + [1322] = {.lex_state = 11, .external_lex_state = 64}, [1323] = {.lex_state = 8, .external_lex_state = 64}, [1324] = {.lex_state = 11, .external_lex_state = 64}, - [1325] = {.lex_state = 12, .external_lex_state = 64}, - [1326] = {.lex_state = 14, .external_lex_state = 64}, - [1327] = {.lex_state = 8, .external_lex_state = 64}, - [1328] = {.lex_state = 11, .external_lex_state = 64}, - [1329] = {.lex_state = 12, .external_lex_state = 64}, - [1330] = {.lex_state = 13, .external_lex_state = 64}, + [1325] = {.lex_state = 14, .external_lex_state = 64}, + [1326] = {.lex_state = 12, .external_lex_state = 64}, + [1327] = {.lex_state = 11, .external_lex_state = 64}, + [1328] = {.lex_state = 8, .external_lex_state = 64}, + [1329] = {.lex_state = 14, .external_lex_state = 64}, + [1330] = {.lex_state = 13}, [1331] = {.lex_state = 13, .external_lex_state = 64}, [1332] = {.lex_state = 13, .external_lex_state = 64}, - [1333] = {.lex_state = 8}, - [1334] = {.lex_state = 13, .external_lex_state = 64}, - [1335] = {.lex_state = 8}, - [1336] = {.lex_state = 7}, - [1337] = {.lex_state = 7}, - [1338] = {.lex_state = 13, .external_lex_state = 68}, + [1333] = {.lex_state = 7}, + [1334] = {.lex_state = 8}, + [1335] = {.lex_state = 11}, + [1336] = {.lex_state = 8}, + [1337] = {.lex_state = 13, .external_lex_state = 65}, + [1338] = {.lex_state = 13, .external_lex_state = 64}, [1339] = {.lex_state = 11}, - [1340] = {.lex_state = 13, .external_lex_state = 64}, - [1341] = {.lex_state = 12}, - [1342] = {.lex_state = 13, .external_lex_state = 64}, - [1343] = {.lex_state = 13, .external_lex_state = 68}, - [1344] = {.lex_state = 11}, - [1345] = {.lex_state = 13, .external_lex_state = 68}, - [1346] = {.lex_state = 8}, - [1347] = {.lex_state = 8}, - [1348] = {.lex_state = 13, .external_lex_state = 69}, - [1349] = {.lex_state = 8}, + [1340] = {.lex_state = 11, .external_lex_state = 58}, + [1341] = {.lex_state = 11, .external_lex_state = 58}, + [1342] = {.lex_state = 8, .external_lex_state = 58}, + [1343] = {.lex_state = 8}, + [1344] = {.lex_state = 8}, + [1345] = {.lex_state = 11, .external_lex_state = 58}, + [1346] = {.lex_state = 12}, + [1347] = {.lex_state = 13, .external_lex_state = 65}, + [1348] = {.lex_state = 13, .external_lex_state = 64}, + [1349] = {.lex_state = 13, .external_lex_state = 64}, [1350] = {.lex_state = 13, .external_lex_state = 64}, - [1351] = {.lex_state = 13, .external_lex_state = 68}, - [1352] = {.lex_state = 13, .external_lex_state = 69}, - [1353] = {.lex_state = 13, .external_lex_state = 57}, - [1354] = {.lex_state = 7}, - [1355] = {.lex_state = 13, .external_lex_state = 64}, - [1356] = {.lex_state = 8}, - [1357] = {.lex_state = 13, .external_lex_state = 64}, - [1358] = {.lex_state = 13, .external_lex_state = 64}, - [1359] = {.lex_state = 13, .external_lex_state = 64}, - [1360] = {.lex_state = 8}, - [1361] = {.lex_state = 11, .external_lex_state = 58}, - [1362] = {.lex_state = 12}, - [1363] = {.lex_state = 13, .external_lex_state = 64}, - [1364] = {.lex_state = 13, .external_lex_state = 64}, + [1351] = {.lex_state = 12}, + [1352] = {.lex_state = 13, .external_lex_state = 65}, + [1353] = {.lex_state = 13, .external_lex_state = 64}, + [1354] = {.lex_state = 13, .external_lex_state = 64}, + [1355] = {.lex_state = 13, .external_lex_state = 57}, + [1356] = {.lex_state = 7}, + [1357] = {.lex_state = 7}, + [1358] = {.lex_state = 7}, + [1359] = {.lex_state = 7}, + [1360] = {.lex_state = 7}, + [1361] = {.lex_state = 13, .external_lex_state = 69}, + [1362] = {.lex_state = 8}, + [1363] = {.lex_state = 11, .external_lex_state = 58}, + [1364] = {.lex_state = 13, .external_lex_state = 69}, [1365] = {.lex_state = 13, .external_lex_state = 64}, [1366] = {.lex_state = 13, .external_lex_state = 64}, - [1367] = {.lex_state = 13, .external_lex_state = 69}, + [1367] = {.lex_state = 7}, [1368] = {.lex_state = 13, .external_lex_state = 64}, - [1369] = {.lex_state = 11}, - [1370] = {.lex_state = 8}, + [1369] = {.lex_state = 13, .external_lex_state = 64}, + [1370] = {.lex_state = 13, .external_lex_state = 64}, [1371] = {.lex_state = 13, .external_lex_state = 64}, [1372] = {.lex_state = 13, .external_lex_state = 64}, [1373] = {.lex_state = 13, .external_lex_state = 64}, - [1374] = {.lex_state = 13, .external_lex_state = 64}, - [1375] = {.lex_state = 13, .external_lex_state = 64}, + [1374] = {.lex_state = 13}, + [1375] = {.lex_state = 8}, [1376] = {.lex_state = 13, .external_lex_state = 64}, - [1377] = {.lex_state = 13, .external_lex_state = 64}, + [1377] = {.lex_state = 8}, [1378] = {.lex_state = 13, .external_lex_state = 64}, - [1379] = {.lex_state = 13, .external_lex_state = 69}, + [1379] = {.lex_state = 8}, [1380] = {.lex_state = 13, .external_lex_state = 64}, - [1381] = {.lex_state = 13, .external_lex_state = 64}, + [1381] = {.lex_state = 8}, [1382] = {.lex_state = 13, .external_lex_state = 64}, - [1383] = {.lex_state = 13, .external_lex_state = 64}, + [1383] = {.lex_state = 8}, [1384] = {.lex_state = 13, .external_lex_state = 64}, - [1385] = {.lex_state = 13, .external_lex_state = 69}, - [1386] = {.lex_state = 13, .external_lex_state = 69}, - [1387] = {.lex_state = 13, .external_lex_state = 69}, + [1385] = {.lex_state = 13, .external_lex_state = 64}, + [1386] = {.lex_state = 13, .external_lex_state = 64}, + [1387] = {.lex_state = 13, .external_lex_state = 64}, [1388] = {.lex_state = 13, .external_lex_state = 64}, [1389] = {.lex_state = 13, .external_lex_state = 64}, [1390] = {.lex_state = 13, .external_lex_state = 64}, - [1391] = {.lex_state = 11, .external_lex_state = 58}, + [1391] = {.lex_state = 13, .external_lex_state = 64}, [1392] = {.lex_state = 13, .external_lex_state = 69}, [1393] = {.lex_state = 13, .external_lex_state = 64}, - [1394] = {.lex_state = 8}, - [1395] = {.lex_state = 8}, - [1396] = {.lex_state = 13, .external_lex_state = 69}, + [1394] = {.lex_state = 13, .external_lex_state = 64}, + [1395] = {.lex_state = 13, .external_lex_state = 64}, + [1396] = {.lex_state = 13, .external_lex_state = 64}, [1397] = {.lex_state = 13, .external_lex_state = 64}, - [1398] = {.lex_state = 8}, - [1399] = {.lex_state = 13, .external_lex_state = 69}, + [1398] = {.lex_state = 13, .external_lex_state = 64}, + [1399] = {.lex_state = 13, .external_lex_state = 64}, [1400] = {.lex_state = 13, .external_lex_state = 64}, [1401] = {.lex_state = 13, .external_lex_state = 64}, - [1402] = {.lex_state = 13, .external_lex_state = 64}, - [1403] = {.lex_state = 13, .external_lex_state = 64}, + [1402] = {.lex_state = 7}, + [1403] = {.lex_state = 7}, [1404] = {.lex_state = 13, .external_lex_state = 64}, [1405] = {.lex_state = 13, .external_lex_state = 64}, [1406] = {.lex_state = 13, .external_lex_state = 64}, [1407] = {.lex_state = 13, .external_lex_state = 64}, [1408] = {.lex_state = 13, .external_lex_state = 64}, - [1409] = {.lex_state = 13, .external_lex_state = 69}, - [1410] = {.lex_state = 13, .external_lex_state = 64}, - [1411] = {.lex_state = 13, .external_lex_state = 64}, - [1412] = {.lex_state = 7, .external_lex_state = 70}, - [1413] = {.lex_state = 13, .external_lex_state = 69}, + [1409] = {.lex_state = 13, .external_lex_state = 64}, + [1410] = {.lex_state = 8}, + [1411] = {.lex_state = 11}, + [1412] = {.lex_state = 13, .external_lex_state = 69}, + [1413] = {.lex_state = 13, .external_lex_state = 64}, [1414] = {.lex_state = 13, .external_lex_state = 64}, - [1415] = {.lex_state = 12, .external_lex_state = 58}, - [1416] = {.lex_state = 12, .external_lex_state = 58}, - [1417] = {.lex_state = 13, .external_lex_state = 64}, - [1418] = {.lex_state = 13, .external_lex_state = 64}, - [1419] = {.lex_state = 13, .external_lex_state = 64}, - [1420] = {.lex_state = 13, .external_lex_state = 64}, - [1421] = {.lex_state = 8}, - [1422] = {.lex_state = 13, .external_lex_state = 69}, + [1415] = {.lex_state = 13, .external_lex_state = 64}, + [1416] = {.lex_state = 13, .external_lex_state = 64}, + [1417] = {.lex_state = 12, .external_lex_state = 58}, + [1418] = {.lex_state = 12, .external_lex_state = 58}, + [1419] = {.lex_state = 13, .external_lex_state = 69}, + [1420] = {.lex_state = 13, .external_lex_state = 69}, + [1421] = {.lex_state = 13, .external_lex_state = 69}, + [1422] = {.lex_state = 13, .external_lex_state = 64}, [1423] = {.lex_state = 13, .external_lex_state = 64}, - [1424] = {.lex_state = 7, .external_lex_state = 70}, - [1425] = {.lex_state = 13, .external_lex_state = 64}, - [1426] = {.lex_state = 13, .external_lex_state = 64}, + [1424] = {.lex_state = 13, .external_lex_state = 69}, + [1425] = {.lex_state = 13, .external_lex_state = 69}, + [1426] = {.lex_state = 13, .external_lex_state = 69}, [1427] = {.lex_state = 13, .external_lex_state = 64}, - [1428] = {.lex_state = 12, .external_lex_state = 58}, - [1429] = {.lex_state = 13, .external_lex_state = 64}, - [1430] = {.lex_state = 13, .external_lex_state = 64}, - [1431] = {.lex_state = 13, .external_lex_state = 64}, + [1428] = {.lex_state = 13, .external_lex_state = 69}, + [1429] = {.lex_state = 13, .external_lex_state = 69}, + [1430] = {.lex_state = 12, .external_lex_state = 58}, + [1431] = {.lex_state = 13, .external_lex_state = 69}, [1432] = {.lex_state = 13, .external_lex_state = 69}, - [1433] = {.lex_state = 13, .external_lex_state = 64}, - [1434] = {.lex_state = 8}, - [1435] = {.lex_state = 8}, - [1436] = {.lex_state = 13, .external_lex_state = 64}, - [1437] = {.lex_state = 13, .external_lex_state = 69}, - [1438] = {.lex_state = 13, .external_lex_state = 69}, - [1439] = {.lex_state = 13, .external_lex_state = 64}, + [1433] = {.lex_state = 8}, + [1434] = {.lex_state = 13, .external_lex_state = 69}, + [1435] = {.lex_state = 13, .external_lex_state = 64}, + [1436] = {.lex_state = 8}, + [1437] = {.lex_state = 8}, + [1438] = {.lex_state = 13, .external_lex_state = 64}, + [1439] = {.lex_state = 13, .external_lex_state = 69}, [1440] = {.lex_state = 13, .external_lex_state = 69}, [1441] = {.lex_state = 13, .external_lex_state = 69}, - [1442] = {.lex_state = 13, .external_lex_state = 69}, + [1442] = {.lex_state = 8}, [1443] = {.lex_state = 13, .external_lex_state = 64}, [1444] = {.lex_state = 13, .external_lex_state = 64}, [1445] = {.lex_state = 13, .external_lex_state = 64}, - [1446] = {.lex_state = 13, .external_lex_state = 69}, - [1447] = {.lex_state = 13, .external_lex_state = 69}, - [1448] = {.lex_state = 13, .external_lex_state = 64}, + [1446] = {.lex_state = 13, .external_lex_state = 64}, + [1447] = {.lex_state = 8}, + [1448] = {.lex_state = 13, .external_lex_state = 69}, [1449] = {.lex_state = 13, .external_lex_state = 69}, - [1450] = {.lex_state = 13, .external_lex_state = 64}, + [1450] = {.lex_state = 13, .external_lex_state = 69}, [1451] = {.lex_state = 13, .external_lex_state = 69}, - [1452] = {.lex_state = 13, .external_lex_state = 64}, - [1453] = {.lex_state = 13, .external_lex_state = 69}, - [1454] = {.lex_state = 13, .external_lex_state = 69}, + [1452] = {.lex_state = 13, .external_lex_state = 69}, + [1453] = {.lex_state = 13, .external_lex_state = 64}, + [1454] = {.lex_state = 13, .external_lex_state = 64}, [1455] = {.lex_state = 8}, - [1456] = {.lex_state = 8}, - [1457] = {.lex_state = 13, .external_lex_state = 69}, - [1458] = {.lex_state = 13, .external_lex_state = 69}, + [1456] = {.lex_state = 13, .external_lex_state = 64}, + [1457] = {.lex_state = 13, .external_lex_state = 64}, + [1458] = {.lex_state = 13, .external_lex_state = 64}, [1459] = {.lex_state = 13, .external_lex_state = 64}, - [1460] = {.lex_state = 13, .external_lex_state = 69}, + [1460] = {.lex_state = 13, .external_lex_state = 64}, [1461] = {.lex_state = 13, .external_lex_state = 64}, - [1462] = {.lex_state = 13, .external_lex_state = 64}, - [1463] = {.lex_state = 13, .external_lex_state = 69}, + [1462] = {.lex_state = 13}, + [1463] = {.lex_state = 13, .external_lex_state = 64}, [1464] = {.lex_state = 13, .external_lex_state = 64}, - [1465] = {.lex_state = 13, .external_lex_state = 64}, + [1465] = {.lex_state = 13}, [1466] = {.lex_state = 13, .external_lex_state = 64}, - [1467] = {.lex_state = 13, .external_lex_state = 69}, + [1467] = {.lex_state = 13, .external_lex_state = 64}, [1468] = {.lex_state = 13, .external_lex_state = 64}, [1469] = {.lex_state = 13, .external_lex_state = 64}, - [1470] = {.lex_state = 12, .external_lex_state = 58}, - [1471] = {.lex_state = 13, .external_lex_state = 64}, - [1472] = {.lex_state = 13, .external_lex_state = 64}, + [1470] = {.lex_state = 13, .external_lex_state = 64}, + [1471] = {.lex_state = 7}, + [1472] = {.lex_state = 12, .external_lex_state = 58}, [1473] = {.lex_state = 13, .external_lex_state = 64}, [1474] = {.lex_state = 13, .external_lex_state = 64}, [1475] = {.lex_state = 13, .external_lex_state = 64}, - [1476] = {.lex_state = 13, .external_lex_state = 69}, - [1477] = {.lex_state = 13, .external_lex_state = 69}, + [1476] = {.lex_state = 13, .external_lex_state = 64}, + [1477] = {.lex_state = 13, .external_lex_state = 64}, [1478] = {.lex_state = 13, .external_lex_state = 64}, - [1479] = {.lex_state = 13, .external_lex_state = 69}, + [1479] = {.lex_state = 13, .external_lex_state = 65}, [1480] = {.lex_state = 13, .external_lex_state = 64}, [1481] = {.lex_state = 13, .external_lex_state = 64}, [1482] = {.lex_state = 13, .external_lex_state = 64}, - [1483] = {.lex_state = 13, .external_lex_state = 64}, + [1483] = {.lex_state = 13, .external_lex_state = 69}, [1484] = {.lex_state = 13, .external_lex_state = 69}, - [1485] = {.lex_state = 13, .external_lex_state = 64}, - [1486] = {.lex_state = 8, .external_lex_state = 58}, - [1487] = {.lex_state = 13, .external_lex_state = 69}, - [1488] = {.lex_state = 11, .external_lex_state = 58}, - [1489] = {.lex_state = 11, .external_lex_state = 58}, - [1490] = {.lex_state = 12}, - [1491] = {.lex_state = 8, .external_lex_state = 58}, - [1492] = {.lex_state = 13}, - [1493] = {.lex_state = 13, .external_lex_state = 64}, - [1494] = {.lex_state = 13}, + [1485] = {.lex_state = 13, .external_lex_state = 69}, + [1486] = {.lex_state = 7, .external_lex_state = 70}, + [1487] = {.lex_state = 13, .external_lex_state = 64}, + [1488] = {.lex_state = 13, .external_lex_state = 64}, + [1489] = {.lex_state = 13, .external_lex_state = 64}, + [1490] = {.lex_state = 13, .external_lex_state = 64}, + [1491] = {.lex_state = 13, .external_lex_state = 64}, + [1492] = {.lex_state = 13, .external_lex_state = 64}, + [1493] = {.lex_state = 13, .external_lex_state = 69}, + [1494] = {.lex_state = 13, .external_lex_state = 69}, [1495] = {.lex_state = 13, .external_lex_state = 64}, - [1496] = {.lex_state = 11}, - [1497] = {.lex_state = 8, .external_lex_state = 58}, - [1498] = {.lex_state = 8}, - [1499] = {.lex_state = 8}, - [1500] = {.lex_state = 13, .external_lex_state = 69}, - [1501] = {.lex_state = 8}, - [1502] = {.lex_state = 13, .external_lex_state = 64}, - [1503] = {.lex_state = 8}, - [1504] = {.lex_state = 13, .external_lex_state = 69}, - [1505] = {.lex_state = 7}, + [1496] = {.lex_state = 7, .external_lex_state = 70}, + [1497] = {.lex_state = 13, .external_lex_state = 64}, + [1498] = {.lex_state = 13, .external_lex_state = 64}, + [1499] = {.lex_state = 13, .external_lex_state = 64}, + [1500] = {.lex_state = 13, .external_lex_state = 64}, + [1501] = {.lex_state = 13}, + [1502] = {.lex_state = 13, .external_lex_state = 69}, + [1503] = {.lex_state = 13, .external_lex_state = 64}, + [1504] = {.lex_state = 13}, + [1505] = {.lex_state = 13, .external_lex_state = 64}, [1506] = {.lex_state = 13, .external_lex_state = 64}, - [1507] = {.lex_state = 7}, - [1508] = {.lex_state = 8, .external_lex_state = 58}, - [1509] = {.lex_state = 13, .external_lex_state = 64}, - [1510] = {.lex_state = 13}, + [1507] = {.lex_state = 8}, + [1508] = {.lex_state = 11}, + [1509] = {.lex_state = 7}, + [1510] = {.lex_state = 13, .external_lex_state = 69}, [1511] = {.lex_state = 13, .external_lex_state = 64}, [1512] = {.lex_state = 13, .external_lex_state = 64}, - [1513] = {.lex_state = 13}, - [1514] = {.lex_state = 13, .external_lex_state = 64}, + [1513] = {.lex_state = 13, .external_lex_state = 64}, + [1514] = {.lex_state = 8, .external_lex_state = 58}, [1515] = {.lex_state = 13, .external_lex_state = 64}, [1516] = {.lex_state = 13, .external_lex_state = 64}, [1517] = {.lex_state = 13, .external_lex_state = 64}, [1518] = {.lex_state = 13, .external_lex_state = 64}, - [1519] = {.lex_state = 13, .external_lex_state = 69}, + [1519] = {.lex_state = 7}, [1520] = {.lex_state = 13, .external_lex_state = 64}, [1521] = {.lex_state = 13, .external_lex_state = 64}, [1522] = {.lex_state = 13, .external_lex_state = 64}, [1523] = {.lex_state = 13, .external_lex_state = 64}, - [1524] = {.lex_state = 13, .external_lex_state = 64}, + [1524] = {.lex_state = 13, .external_lex_state = 69}, [1525] = {.lex_state = 13, .external_lex_state = 64}, - [1526] = {.lex_state = 13, .external_lex_state = 64}, + [1526] = {.lex_state = 8}, [1527] = {.lex_state = 13, .external_lex_state = 64}, [1528] = {.lex_state = 13, .external_lex_state = 64}, - [1529] = {.lex_state = 13, .external_lex_state = 64}, - [1530] = {.lex_state = 13, .external_lex_state = 64}, + [1529] = {.lex_state = 8, .external_lex_state = 58}, + [1530] = {.lex_state = 8, .external_lex_state = 58}, [1531] = {.lex_state = 13, .external_lex_state = 64}, [1532] = {.lex_state = 13, .external_lex_state = 64}, [1533] = {.lex_state = 13, .external_lex_state = 64}, [1534] = {.lex_state = 13, .external_lex_state = 64}, [1535] = {.lex_state = 13, .external_lex_state = 64}, - [1536] = {.lex_state = 7}, + [1536] = {.lex_state = 13, .external_lex_state = 64}, [1537] = {.lex_state = 13, .external_lex_state = 64}, - [1538] = {.lex_state = 7}, + [1538] = {.lex_state = 13, .external_lex_state = 64}, [1539] = {.lex_state = 13, .external_lex_state = 64}, - [1540] = {.lex_state = 13, .external_lex_state = 64}, + [1540] = {.lex_state = 12}, [1541] = {.lex_state = 13, .external_lex_state = 64}, [1542] = {.lex_state = 13, .external_lex_state = 64}, - [1543] = {.lex_state = 7}, + [1543] = {.lex_state = 13, .external_lex_state = 64}, [1544] = {.lex_state = 13, .external_lex_state = 64}, [1545] = {.lex_state = 13, .external_lex_state = 64}, - [1546] = {.lex_state = 7}, - [1547] = {.lex_state = 8}, - [1548] = {.lex_state = 13, .external_lex_state = 64}, - [1549] = {.lex_state = 13}, + [1546] = {.lex_state = 13, .external_lex_state = 64}, + [1547] = {.lex_state = 13, .external_lex_state = 64}, + [1548] = {.lex_state = 12}, + [1549] = {.lex_state = 13, .external_lex_state = 64}, [1550] = {.lex_state = 13, .external_lex_state = 64}, - [1551] = {.lex_state = 13}, - [1552] = {.lex_state = 7}, - [1553] = {.lex_state = 12}, - [1554] = {.lex_state = 13, .external_lex_state = 64}, - [1555] = {.lex_state = 7}, - [1556] = {.lex_state = 8}, - [1557] = {.lex_state = 7}, + [1551] = {.lex_state = 13, .external_lex_state = 69}, + [1552] = {.lex_state = 13, .external_lex_state = 64}, + [1553] = {.lex_state = 13, .external_lex_state = 69}, + [1554] = {.lex_state = 13, .external_lex_state = 69}, + [1555] = {.lex_state = 13, .external_lex_state = 64}, + [1556] = {.lex_state = 13, .external_lex_state = 69}, + [1557] = {.lex_state = 13, .external_lex_state = 69}, [1558] = {.lex_state = 13, .external_lex_state = 64}, - [1559] = {.lex_state = 13, .external_lex_state = 64}, - [1560] = {.lex_state = 13, .external_lex_state = 64}, + [1559] = {.lex_state = 13, .external_lex_state = 69}, + [1560] = {.lex_state = 13, .external_lex_state = 69}, [1561] = {.lex_state = 13, .external_lex_state = 69}, [1562] = {.lex_state = 13, .external_lex_state = 69}, [1563] = {.lex_state = 13, .external_lex_state = 69}, [1564] = {.lex_state = 13, .external_lex_state = 69}, - [1565] = {.lex_state = 13, .external_lex_state = 64}, - [1566] = {.lex_state = 13, .external_lex_state = 64}, - [1567] = {.lex_state = 13, .external_lex_state = 64}, - [1568] = {.lex_state = 13, .external_lex_state = 58}, - [1569] = {.lex_state = 13}, - [1570] = {.lex_state = 13}, - [1571] = {.lex_state = 13, .external_lex_state = 59}, - [1572] = {.lex_state = 13}, - [1573] = {.lex_state = 13, .external_lex_state = 58}, - [1574] = {.lex_state = 13, .external_lex_state = 58}, + [1565] = {.lex_state = 13, .external_lex_state = 58}, + [1566] = {.lex_state = 13, .external_lex_state = 58}, + [1567] = {.lex_state = 7, .external_lex_state = 71}, + [1568] = {.lex_state = 7, .external_lex_state = 70}, + [1569] = {.lex_state = 7, .external_lex_state = 51}, + [1570] = {.lex_state = 7, .external_lex_state = 51}, + [1571] = {.lex_state = 13, .external_lex_state = 61}, + [1572] = {.lex_state = 7, .external_lex_state = 51}, + [1573] = {.lex_state = 13, .external_lex_state = 61}, + [1574] = {.lex_state = 7, .external_lex_state = 51}, [1575] = {.lex_state = 7, .external_lex_state = 51}, - [1576] = {.lex_state = 13, .external_lex_state = 58}, - [1577] = {.lex_state = 7, .external_lex_state = 70}, + [1576] = {.lex_state = 7, .external_lex_state = 51}, + [1577] = {.lex_state = 13}, [1578] = {.lex_state = 13, .external_lex_state = 58}, - [1579] = {.lex_state = 13, .external_lex_state = 59}, - [1580] = {.lex_state = 7, .external_lex_state = 51}, + [1579] = {.lex_state = 13, .external_lex_state = 58}, + [1580] = {.lex_state = 13, .external_lex_state = 58}, [1581] = {.lex_state = 13, .external_lex_state = 58}, [1582] = {.lex_state = 13, .external_lex_state = 58}, [1583] = {.lex_state = 13, .external_lex_state = 58}, - [1584] = {.lex_state = 13}, + [1584] = {.lex_state = 13, .external_lex_state = 58}, [1585] = {.lex_state = 13, .external_lex_state = 58}, [1586] = {.lex_state = 13, .external_lex_state = 58}, [1587] = {.lex_state = 13, .external_lex_state = 58}, - [1588] = {.lex_state = 7, .external_lex_state = 51}, - [1589] = {.lex_state = 7, .external_lex_state = 51}, + [1588] = {.lex_state = 13, .external_lex_state = 58}, + [1589] = {.lex_state = 13, .external_lex_state = 58}, [1590] = {.lex_state = 13, .external_lex_state = 58}, [1591] = {.lex_state = 13, .external_lex_state = 58}, [1592] = {.lex_state = 13, .external_lex_state = 58}, - [1593] = {.lex_state = 13, .external_lex_state = 59}, + [1593] = {.lex_state = 13, .external_lex_state = 58}, [1594] = {.lex_state = 13, .external_lex_state = 58}, [1595] = {.lex_state = 13, .external_lex_state = 58}, - [1596] = {.lex_state = 13, .external_lex_state = 58}, - [1597] = {.lex_state = 13, .external_lex_state = 58}, + [1596] = {.lex_state = 13}, + [1597] = {.lex_state = 7, .external_lex_state = 51}, [1598] = {.lex_state = 13, .external_lex_state = 58}, [1599] = {.lex_state = 13, .external_lex_state = 58}, [1600] = {.lex_state = 13, .external_lex_state = 58}, - [1601] = {.lex_state = 7, .external_lex_state = 51}, + [1601] = {.lex_state = 13, .external_lex_state = 58}, [1602] = {.lex_state = 13, .external_lex_state = 58}, - [1603] = {.lex_state = 7, .external_lex_state = 51}, - [1604] = {.lex_state = 7, .external_lex_state = 71}, - [1605] = {.lex_state = 7, .external_lex_state = 51}, + [1603] = {.lex_state = 13, .external_lex_state = 58}, + [1604] = {.lex_state = 13, .external_lex_state = 58}, + [1605] = {.lex_state = 13}, [1606] = {.lex_state = 13, .external_lex_state = 58}, - [1607] = {.lex_state = 13}, + [1607] = {.lex_state = 13, .external_lex_state = 58}, [1608] = {.lex_state = 13, .external_lex_state = 58}, [1609] = {.lex_state = 13, .external_lex_state = 58}, [1610] = {.lex_state = 13, .external_lex_state = 58}, [1611] = {.lex_state = 13, .external_lex_state = 58}, [1612] = {.lex_state = 13, .external_lex_state = 58}, - [1613] = {.lex_state = 13}, + [1613] = {.lex_state = 13, .external_lex_state = 58}, [1614] = {.lex_state = 13, .external_lex_state = 58}, [1615] = {.lex_state = 13, .external_lex_state = 58}, [1616] = {.lex_state = 13, .external_lex_state = 58}, [1617] = {.lex_state = 13, .external_lex_state = 58}, - [1618] = {.lex_state = 13, .external_lex_state = 58}, - [1619] = {.lex_state = 13, .external_lex_state = 58}, - [1620] = {.lex_state = 13, .external_lex_state = 58}, + [1618] = {.lex_state = 13, .external_lex_state = 61}, + [1619] = {.lex_state = 13}, + [1620] = {.lex_state = 13}, [1621] = {.lex_state = 13, .external_lex_state = 58}, - [1622] = {.lex_state = 13}, - [1623] = {.lex_state = 13, .external_lex_state = 58}, - [1624] = {.lex_state = 7, .external_lex_state = 51}, + [1622] = {.lex_state = 7, .external_lex_state = 51}, + [1623] = {.lex_state = 13, .external_lex_state = 61}, + [1624] = {.lex_state = 13, .external_lex_state = 58}, [1625] = {.lex_state = 13, .external_lex_state = 58}, - [1626] = {.lex_state = 13, .external_lex_state = 58}, + [1626] = {.lex_state = 13}, [1627] = {.lex_state = 7, .external_lex_state = 51}, - [1628] = {.lex_state = 13, .external_lex_state = 59}, - [1629] = {.lex_state = 13, .external_lex_state = 58}, - [1630] = {.lex_state = 13, .external_lex_state = 58}, - [1631] = {.lex_state = 13, .external_lex_state = 58}, - [1632] = {.lex_state = 12, .external_lex_state = 72}, + [1628] = {.lex_state = 13}, + [1629] = {.lex_state = 14, .external_lex_state = 72}, + [1630] = {.lex_state = 7}, + [1631] = {.lex_state = 10}, + [1632] = {.lex_state = 7}, [1633] = {.lex_state = 13, .external_lex_state = 73}, [1634] = {.lex_state = 7}, - [1635] = {.lex_state = 11, .external_lex_state = 72}, - [1636] = {.lex_state = 11, .external_lex_state = 74}, + [1635] = {.lex_state = 13, .external_lex_state = 74}, + [1636] = {.lex_state = 7}, [1637] = {.lex_state = 7}, - [1638] = {.lex_state = 7, .external_lex_state = 51}, + [1638] = {.lex_state = 7}, [1639] = {.lex_state = 7}, - [1640] = {.lex_state = 8, .external_lex_state = 74}, + [1640] = {.lex_state = 7}, [1641] = {.lex_state = 7}, [1642] = {.lex_state = 7}, - [1643] = {.lex_state = 7}, - [1644] = {.lex_state = 10}, - [1645] = {.lex_state = 7}, + [1643] = {.lex_state = 12, .external_lex_state = 72}, + [1644] = {.lex_state = 11, .external_lex_state = 72}, + [1645] = {.lex_state = 8, .external_lex_state = 72}, [1646] = {.lex_state = 7}, - [1647] = {.lex_state = 8, .external_lex_state = 72}, + [1647] = {.lex_state = 13, .external_lex_state = 75}, [1648] = {.lex_state = 7}, - [1649] = {.lex_state = 7}, - [1650] = {.lex_state = 14, .external_lex_state = 74}, + [1649] = {.lex_state = 10}, + [1650] = {.lex_state = 7}, [1651] = {.lex_state = 7}, - [1652] = {.lex_state = 7}, + [1652] = {.lex_state = 7, .external_lex_state = 51}, [1653] = {.lex_state = 7}, - [1654] = {.lex_state = 14, .external_lex_state = 72}, - [1655] = {.lex_state = 7}, - [1656] = {.lex_state = 10}, + [1654] = {.lex_state = 7}, + [1655] = {.lex_state = 13, .external_lex_state = 76}, + [1656] = {.lex_state = 13, .external_lex_state = 77}, [1657] = {.lex_state = 7}, - [1658] = {.lex_state = 13, .external_lex_state = 75}, - [1659] = {.lex_state = 13, .external_lex_state = 76}, - [1660] = {.lex_state = 12, .external_lex_state = 74}, - [1661] = {.lex_state = 7}, + [1658] = {.lex_state = 7}, + [1659] = {.lex_state = 7}, + [1660] = {.lex_state = 7}, + [1661] = {.lex_state = 10}, [1662] = {.lex_state = 13, .external_lex_state = 77}, - [1663] = {.lex_state = 7}, - [1664] = {.lex_state = 7}, - [1665] = {.lex_state = 7}, - [1666] = {.lex_state = 7}, - [1667] = {.lex_state = 7}, + [1663] = {.lex_state = 12, .external_lex_state = 78}, + [1664] = {.lex_state = 13, .external_lex_state = 79}, + [1665] = {.lex_state = 11, .external_lex_state = 78}, + [1666] = {.lex_state = 8, .external_lex_state = 78}, + [1667] = {.lex_state = 14, .external_lex_state = 78}, [1668] = {.lex_state = 7}, [1669] = {.lex_state = 7}, [1670] = {.lex_state = 7}, - [1671] = {.lex_state = 13, .external_lex_state = 75}, + [1671] = {.lex_state = 7}, [1672] = {.lex_state = 7}, [1673] = {.lex_state = 7}, [1674] = {.lex_state = 7}, [1675] = {.lex_state = 7}, - [1676] = {.lex_state = 13, .external_lex_state = 78}, + [1676] = {.lex_state = 7}, [1677] = {.lex_state = 7}, - [1678] = {.lex_state = 10}, - [1679] = {.lex_state = 7}, - [1680] = {.lex_state = 13, .external_lex_state = 79}, - [1681] = {.lex_state = 13, .external_lex_state = 80}, - [1682] = {.lex_state = 8, .external_lex_state = 51}, - [1683] = {.lex_state = 11, .external_lex_state = 64}, - [1684] = {.lex_state = 8, .external_lex_state = 64}, - [1685] = {.lex_state = 12, .external_lex_state = 71}, - [1686] = {.lex_state = 13, .external_lex_state = 72}, - [1687] = {.lex_state = 11, .external_lex_state = 51}, - [1688] = {.lex_state = 13, .external_lex_state = 81}, - [1689] = {.lex_state = 7}, - [1690] = {.lex_state = 13, .external_lex_state = 56}, - [1691] = {.lex_state = 13, .external_lex_state = 72}, - [1692] = {.lex_state = 8, .external_lex_state = 51}, - [1693] = {.lex_state = 7}, - [1694] = {.lex_state = 13, .external_lex_state = 56}, - [1695] = {.lex_state = 7}, + [1678] = {.lex_state = 7}, + [1679] = {.lex_state = 13}, + [1680] = {.lex_state = 8, .external_lex_state = 51}, + [1681] = {.lex_state = 8, .external_lex_state = 64}, + [1682] = {.lex_state = 14, .external_lex_state = 64}, + [1683] = {.lex_state = 13, .external_lex_state = 78}, + [1684] = {.lex_state = 12, .external_lex_state = 71}, + [1685] = {.lex_state = 11, .external_lex_state = 64}, + [1686] = {.lex_state = 12, .external_lex_state = 51}, + [1687] = {.lex_state = 13, .external_lex_state = 80}, + [1688] = {.lex_state = 13, .external_lex_state = 72}, + [1689] = {.lex_state = 12, .external_lex_state = 64}, + [1690] = {.lex_state = 13, .external_lex_state = 78}, + [1691] = {.lex_state = 13, .external_lex_state = 54}, + [1692] = {.lex_state = 7}, + [1693] = {.lex_state = 13, .external_lex_state = 78}, + [1694] = {.lex_state = 8, .external_lex_state = 71}, + [1695] = {.lex_state = 11, .external_lex_state = 51}, [1696] = {.lex_state = 13, .external_lex_state = 54}, - [1697] = {.lex_state = 12, .external_lex_state = 64}, - [1698] = {.lex_state = 12, .external_lex_state = 51}, - [1699] = {.lex_state = 8, .external_lex_state = 71}, + [1697] = {.lex_state = 7}, + [1698] = {.lex_state = 7}, + [1699] = {.lex_state = 11, .external_lex_state = 64}, [1700] = {.lex_state = 11, .external_lex_state = 71}, - [1701] = {.lex_state = 8, .external_lex_state = 64}, - [1702] = {.lex_state = 7}, - [1703] = {.lex_state = 14, .external_lex_state = 64}, - [1704] = {.lex_state = 14, .external_lex_state = 64}, - [1705] = {.lex_state = 13, .external_lex_state = 72}, - [1706] = {.lex_state = 11, .external_lex_state = 64}, - [1707] = {.lex_state = 8, .external_lex_state = 51}, - [1708] = {.lex_state = 13, .external_lex_state = 74}, - [1709] = {.lex_state = 12, .external_lex_state = 64}, - [1710] = {.lex_state = 7}, - [1711] = {.lex_state = 8, .external_lex_state = 51}, - [1712] = {.lex_state = 7}, - [1713] = {.lex_state = 13, .external_lex_state = 54}, - [1714] = {.lex_state = 7}, - [1715] = {.lex_state = 13, .external_lex_state = 72}, - [1716] = {.lex_state = 7}, - [1717] = {.lex_state = 13, .external_lex_state = 64}, - [1718] = {.lex_state = 13, .external_lex_state = 64}, - [1719] = {.lex_state = 13, .external_lex_state = 64}, - [1720] = {.lex_state = 12}, - [1721] = {.lex_state = 13, .external_lex_state = 51}, - [1722] = {.lex_state = 8}, - [1723] = {.lex_state = 13, .external_lex_state = 59}, - [1724] = {.lex_state = 13, .external_lex_state = 59}, - [1725] = {.lex_state = 13, .external_lex_state = 51}, - [1726] = {.lex_state = 13, .external_lex_state = 59}, - [1727] = {.lex_state = 13, .external_lex_state = 51}, - [1728] = {.lex_state = 11}, - [1729] = {.lex_state = 13, .external_lex_state = 59}, - [1730] = {.lex_state = 13, .external_lex_state = 59}, - [1731] = {.lex_state = 13, .external_lex_state = 59}, - [1732] = {.lex_state = 13, .external_lex_state = 59}, - [1733] = {.lex_state = 12}, - [1734] = {.lex_state = 13, .external_lex_state = 64}, - [1735] = {.lex_state = 13, .external_lex_state = 59}, - [1736] = {.lex_state = 13, .external_lex_state = 59}, - [1737] = {.lex_state = 13, .external_lex_state = 59}, - [1738] = {.lex_state = 13, .external_lex_state = 59}, - [1739] = {.lex_state = 13, .external_lex_state = 64}, - [1740] = {.lex_state = 13, .external_lex_state = 71}, - [1741] = {.lex_state = 11}, - [1742] = {.lex_state = 13, .external_lex_state = 64}, - [1743] = {.lex_state = 13, .external_lex_state = 59}, - [1744] = {.lex_state = 13, .external_lex_state = 59}, - [1745] = {.lex_state = 13, .external_lex_state = 64}, - [1746] = {.lex_state = 13, .external_lex_state = 59}, - [1747] = {.lex_state = 13, .external_lex_state = 59}, - [1748] = {.lex_state = 8}, + [1701] = {.lex_state = 13, .external_lex_state = 55}, + [1702] = {.lex_state = 14, .external_lex_state = 64}, + [1703] = {.lex_state = 7}, + [1704] = {.lex_state = 7}, + [1705] = {.lex_state = 7}, + [1706] = {.lex_state = 7}, + [1707] = {.lex_state = 13, .external_lex_state = 78}, + [1708] = {.lex_state = 13, .external_lex_state = 81}, + [1709] = {.lex_state = 8, .external_lex_state = 64}, + [1710] = {.lex_state = 13, .external_lex_state = 55}, + [1711] = {.lex_state = 12, .external_lex_state = 64}, + [1712] = {.lex_state = 8, .external_lex_state = 51}, + [1713] = {.lex_state = 13, .external_lex_state = 61}, + [1714] = {.lex_state = 13, .external_lex_state = 64}, + [1715] = {.lex_state = 13, .external_lex_state = 64}, + [1716] = {.lex_state = 13, .external_lex_state = 61}, + [1717] = {.lex_state = 13, .external_lex_state = 61}, + [1718] = {.lex_state = 12}, + [1719] = {.lex_state = 13, .external_lex_state = 71}, + [1720] = {.lex_state = 13, .external_lex_state = 61}, + [1721] = {.lex_state = 11}, + [1722] = {.lex_state = 13, .external_lex_state = 61}, + [1723] = {.lex_state = 8}, + [1724] = {.lex_state = 13, .external_lex_state = 64}, + [1725] = {.lex_state = 13, .external_lex_state = 64}, + [1726] = {.lex_state = 13, .external_lex_state = 61}, + [1727] = {.lex_state = 13, .external_lex_state = 64}, + [1728] = {.lex_state = 13, .external_lex_state = 61}, + [1729] = {.lex_state = 13, .external_lex_state = 64}, + [1730] = {.lex_state = 13, .external_lex_state = 61}, + [1731] = {.lex_state = 13, .external_lex_state = 64}, + [1732] = {.lex_state = 13, .external_lex_state = 51}, + [1733] = {.lex_state = 8}, + [1734] = {.lex_state = 13, .external_lex_state = 61}, + [1735] = {.lex_state = 13, .external_lex_state = 61}, + [1736] = {.lex_state = 12}, + [1737] = {.lex_state = 13, .external_lex_state = 51}, + [1738] = {.lex_state = 13, .external_lex_state = 61}, + [1739] = {.lex_state = 13, .external_lex_state = 61}, + [1740] = {.lex_state = 13, .external_lex_state = 61}, + [1741] = {.lex_state = 13, .external_lex_state = 61}, + [1742] = {.lex_state = 8}, + [1743] = {.lex_state = 11}, + [1744] = {.lex_state = 13, .external_lex_state = 61}, + [1745] = {.lex_state = 13, .external_lex_state = 51}, + [1746] = {.lex_state = 13}, + [1747] = {.lex_state = 10, .external_lex_state = 71}, + [1748] = {.lex_state = 13}, [1749] = {.lex_state = 13}, [1750] = {.lex_state = 13}, [1751] = {.lex_state = 13}, [1752] = {.lex_state = 13}, - [1753] = {.lex_state = 10, .external_lex_state = 51}, + [1753] = {.lex_state = 13}, [1754] = {.lex_state = 13}, [1755] = {.lex_state = 13}, [1756] = {.lex_state = 13}, - [1757] = {.lex_state = 13}, + [1757] = {.lex_state = 10, .external_lex_state = 51}, [1758] = {.lex_state = 13}, [1759] = {.lex_state = 13}, [1760] = {.lex_state = 13}, @@ -25278,11 +25285,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1762] = {.lex_state = 13}, [1763] = {.lex_state = 13}, [1764] = {.lex_state = 13}, - [1765] = {.lex_state = 10, .external_lex_state = 71}, - [1766] = {.lex_state = 13}, + [1765] = {.lex_state = 10}, + [1766] = {.lex_state = 10}, [1767] = {.lex_state = 13}, - [1768] = {.lex_state = 10}, - [1769] = {.lex_state = 10}, + [1768] = {.lex_state = 13}, + [1769] = {.lex_state = 13}, [1770] = {.lex_state = 0, .external_lex_state = 58}, [1771] = {.lex_state = 0, .external_lex_state = 58}, [1772] = {.lex_state = 0, .external_lex_state = 58}, @@ -25312,7 +25319,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1796] = {.lex_state = 0, .external_lex_state = 58}, [1797] = {.lex_state = 0, .external_lex_state = 58}, [1798] = {.lex_state = 0, .external_lex_state = 58}, - [1799] = {.lex_state = 0, .external_lex_state = 58}, + [1799] = {.lex_state = 0}, [1800] = {.lex_state = 0, .external_lex_state = 58}, [1801] = {.lex_state = 0, .external_lex_state = 58}, [1802] = {.lex_state = 0, .external_lex_state = 58}, @@ -25320,7 +25327,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1804] = {.lex_state = 0, .external_lex_state = 58}, [1805] = {.lex_state = 0, .external_lex_state = 58}, [1806] = {.lex_state = 0, .external_lex_state = 58}, - [1807] = {.lex_state = 0}, + [1807] = {.lex_state = 0, .external_lex_state = 58}, [1808] = {.lex_state = 0, .external_lex_state = 58}, [1809] = {.lex_state = 0}, [1810] = {.lex_state = 0}, @@ -25334,148 +25341,148 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1818] = {.lex_state = 0}, [1819] = {.lex_state = 0}, [1820] = {.lex_state = 0}, - [1821] = {.lex_state = 15}, - [1822] = {.lex_state = 16}, - [1823] = {.lex_state = 15, .external_lex_state = 57}, - [1824] = {.lex_state = 15}, - [1825] = {.lex_state = 0}, - [1826] = {.lex_state = 15}, + [1821] = {.lex_state = 0}, + [1822] = {.lex_state = 15}, + [1823] = {.lex_state = 0}, + [1824] = {.lex_state = 15, .external_lex_state = 57}, + [1825] = {.lex_state = 15}, + [1826] = {.lex_state = 0}, [1827] = {.lex_state = 15}, [1828] = {.lex_state = 16}, - [1829] = {.lex_state = 0}, - [1830] = {.lex_state = 0, .external_lex_state = 82}, - [1831] = {.lex_state = 0}, - [1832] = {.lex_state = 0}, - [1833] = {.lex_state = 16, .external_lex_state = 57}, - [1834] = {.lex_state = 0}, - [1835] = {.lex_state = 15}, - [1836] = {.lex_state = 0}, - [1837] = {.lex_state = 16}, + [1829] = {.lex_state = 15}, + [1830] = {.lex_state = 16}, + [1831] = {.lex_state = 0, .external_lex_state = 82}, + [1832] = {.lex_state = 15}, + [1833] = {.lex_state = 15}, + [1834] = {.lex_state = 15}, + [1835] = {.lex_state = 16, .external_lex_state = 57}, + [1836] = {.lex_state = 15}, + [1837] = {.lex_state = 15}, [1838] = {.lex_state = 15}, - [1839] = {.lex_state = 15}, - [1840] = {.lex_state = 0}, - [1841] = {.lex_state = 15}, + [1839] = {.lex_state = 0}, + [1840] = {.lex_state = 15}, + [1841] = {.lex_state = 16}, [1842] = {.lex_state = 15}, - [1843] = {.lex_state = 15}, - [1844] = {.lex_state = 15}, - [1845] = {.lex_state = 16}, + [1843] = {.lex_state = 16}, + [1844] = {.lex_state = 0}, + [1845] = {.lex_state = 0}, [1846] = {.lex_state = 15}, - [1847] = {.lex_state = 15}, + [1847] = {.lex_state = 0}, [1848] = {.lex_state = 15}, - [1849] = {.lex_state = 15, .external_lex_state = 58}, - [1850] = {.lex_state = 15, .external_lex_state = 58}, - [1851] = {.lex_state = 16, .external_lex_state = 58}, - [1852] = {.lex_state = 15}, - [1853] = {.lex_state = 16, .external_lex_state = 58}, - [1854] = {.lex_state = 16, .external_lex_state = 58}, - [1855] = {.lex_state = 16, .external_lex_state = 58}, + [1849] = {.lex_state = 16, .external_lex_state = 58}, + [1850] = {.lex_state = 16, .external_lex_state = 58}, + [1851] = {.lex_state = 15, .external_lex_state = 58}, + [1852] = {.lex_state = 16, .external_lex_state = 58}, + [1853] = {.lex_state = 15, .external_lex_state = 58}, + [1854] = {.lex_state = 15, .external_lex_state = 58}, + [1855] = {.lex_state = 15, .external_lex_state = 58}, [1856] = {.lex_state = 16, .external_lex_state = 58}, [1857] = {.lex_state = 16, .external_lex_state = 58}, - [1858] = {.lex_state = 16, .external_lex_state = 58}, + [1858] = {.lex_state = 15, .external_lex_state = 58}, [1859] = {.lex_state = 16, .external_lex_state = 58}, [1860] = {.lex_state = 15, .external_lex_state = 58}, [1861] = {.lex_state = 15, .external_lex_state = 58}, - [1862] = {.lex_state = 15, .external_lex_state = 58}, - [1863] = {.lex_state = 15, .external_lex_state = 58}, - [1864] = {.lex_state = 16, .external_lex_state = 58}, - [1865] = {.lex_state = 15, .external_lex_state = 58}, - [1866] = {.lex_state = 16, .external_lex_state = 58}, + [1862] = {.lex_state = 16, .external_lex_state = 58}, + [1863] = {.lex_state = 16, .external_lex_state = 58}, + [1864] = {.lex_state = 15, .external_lex_state = 58}, + [1865] = {.lex_state = 16, .external_lex_state = 58}, + [1866] = {.lex_state = 15, .external_lex_state = 58}, [1867] = {.lex_state = 15, .external_lex_state = 58}, - [1868] = {.lex_state = 16, .external_lex_state = 58}, - [1869] = {.lex_state = 16, .external_lex_state = 58}, - [1870] = {.lex_state = 16, .external_lex_state = 58}, - [1871] = {.lex_state = 16, .external_lex_state = 58}, - [1872] = {.lex_state = 16, .external_lex_state = 58}, - [1873] = {.lex_state = 16, .external_lex_state = 58}, + [1868] = {.lex_state = 15, .external_lex_state = 58}, + [1869] = {.lex_state = 15, .external_lex_state = 58}, + [1870] = {.lex_state = 15, .external_lex_state = 58}, + [1871] = {.lex_state = 15, .external_lex_state = 58}, + [1872] = {.lex_state = 15, .external_lex_state = 58}, + [1873] = {.lex_state = 15, .external_lex_state = 58}, [1874] = {.lex_state = 15, .external_lex_state = 58}, [1875] = {.lex_state = 15, .external_lex_state = 58}, - [1876] = {.lex_state = 16, .external_lex_state = 58}, + [1876] = {.lex_state = 15, .external_lex_state = 58}, [1877] = {.lex_state = 16, .external_lex_state = 58}, [1878] = {.lex_state = 16, .external_lex_state = 58}, - [1879] = {.lex_state = 16, .external_lex_state = 58}, - [1880] = {.lex_state = 15, .external_lex_state = 58}, - [1881] = {.lex_state = 16, .external_lex_state = 58}, + [1879] = {.lex_state = 16}, + [1880] = {.lex_state = 16, .external_lex_state = 58}, + [1881] = {.lex_state = 15}, [1882] = {.lex_state = 15, .external_lex_state = 58}, [1883] = {.lex_state = 15, .external_lex_state = 58}, [1884] = {.lex_state = 16, .external_lex_state = 58}, [1885] = {.lex_state = 15, .external_lex_state = 58}, - [1886] = {.lex_state = 15}, + [1886] = {.lex_state = 16, .external_lex_state = 58}, [1887] = {.lex_state = 16, .external_lex_state = 58}, [1888] = {.lex_state = 16, .external_lex_state = 58}, - [1889] = {.lex_state = 16, .external_lex_state = 58}, + [1889] = {.lex_state = 15, .external_lex_state = 58}, [1890] = {.lex_state = 16, .external_lex_state = 58}, - [1891] = {.lex_state = 16, .external_lex_state = 58}, - [1892] = {.lex_state = 16, .external_lex_state = 58}, - [1893] = {.lex_state = 15}, + [1891] = {.lex_state = 15, .external_lex_state = 58}, + [1892] = {.lex_state = 15, .external_lex_state = 58}, + [1893] = {.lex_state = 16, .external_lex_state = 58}, [1894] = {.lex_state = 15, .external_lex_state = 58}, [1895] = {.lex_state = 15, .external_lex_state = 58}, [1896] = {.lex_state = 15, .external_lex_state = 58}, - [1897] = {.lex_state = 15, .external_lex_state = 58}, + [1897] = {.lex_state = 0, .external_lex_state = 83}, [1898] = {.lex_state = 16, .external_lex_state = 58}, [1899] = {.lex_state = 16, .external_lex_state = 58}, - [1900] = {.lex_state = 15, .external_lex_state = 58}, - [1901] = {.lex_state = 15, .external_lex_state = 58}, - [1902] = {.lex_state = 15, .external_lex_state = 58}, + [1900] = {.lex_state = 16, .external_lex_state = 58}, + [1901] = {.lex_state = 16, .external_lex_state = 58}, + [1902] = {.lex_state = 16, .external_lex_state = 58}, [1903] = {.lex_state = 16, .external_lex_state = 58}, [1904] = {.lex_state = 16, .external_lex_state = 58}, - [1905] = {.lex_state = 15, .external_lex_state = 58}, - [1906] = {.lex_state = 16, .external_lex_state = 58}, - [1907] = {.lex_state = 15, .external_lex_state = 58}, + [1905] = {.lex_state = 16, .external_lex_state = 58}, + [1906] = {.lex_state = 15, .external_lex_state = 58}, + [1907] = {.lex_state = 16, .external_lex_state = 58}, [1908] = {.lex_state = 16, .external_lex_state = 58}, - [1909] = {.lex_state = 16}, - [1910] = {.lex_state = 15, .external_lex_state = 58}, - [1911] = {.lex_state = 16, .external_lex_state = 58}, - [1912] = {.lex_state = 15, .external_lex_state = 58}, + [1909] = {.lex_state = 16, .external_lex_state = 58}, + [1910] = {.lex_state = 16, .external_lex_state = 58}, + [1911] = {.lex_state = 15, .external_lex_state = 58}, + [1912] = {.lex_state = 16, .external_lex_state = 58}, [1913] = {.lex_state = 16, .external_lex_state = 58}, - [1914] = {.lex_state = 15, .external_lex_state = 58}, - [1915] = {.lex_state = 15, .external_lex_state = 58}, + [1914] = {.lex_state = 16, .external_lex_state = 58}, + [1915] = {.lex_state = 16, .external_lex_state = 58}, [1916] = {.lex_state = 15, .external_lex_state = 58}, [1917] = {.lex_state = 15, .external_lex_state = 58}, [1918] = {.lex_state = 16, .external_lex_state = 58}, - [1919] = {.lex_state = 16, .external_lex_state = 58}, - [1920] = {.lex_state = 15, .external_lex_state = 58}, - [1921] = {.lex_state = 16, .external_lex_state = 58}, - [1922] = {.lex_state = 0, .external_lex_state = 83}, - [1923] = {.lex_state = 0, .external_lex_state = 83}, - [1924] = {.lex_state = 0, .external_lex_state = 83}, - [1925] = {.lex_state = 15, .external_lex_state = 58}, - [1926] = {.lex_state = 0, .external_lex_state = 83}, - [1927] = {.lex_state = 16, .external_lex_state = 58}, + [1919] = {.lex_state = 15, .external_lex_state = 58}, + [1920] = {.lex_state = 15}, + [1921] = {.lex_state = 0, .external_lex_state = 83}, + [1922] = {.lex_state = 16, .external_lex_state = 58}, + [1923] = {.lex_state = 16, .external_lex_state = 58}, + [1924] = {.lex_state = 16, .external_lex_state = 58}, + [1925] = {.lex_state = 15}, + [1926] = {.lex_state = 16, .external_lex_state = 58}, + [1927] = {.lex_state = 15, .external_lex_state = 58}, [1928] = {.lex_state = 16, .external_lex_state = 58}, [1929] = {.lex_state = 15, .external_lex_state = 58}, - [1930] = {.lex_state = 15, .external_lex_state = 58}, + [1930] = {.lex_state = 16, .external_lex_state = 58}, [1931] = {.lex_state = 15, .external_lex_state = 58}, [1932] = {.lex_state = 15}, [1933] = {.lex_state = 15, .external_lex_state = 58}, - [1934] = {.lex_state = 15}, + [1934] = {.lex_state = 15, .external_lex_state = 58}, [1935] = {.lex_state = 15, .external_lex_state = 58}, - [1936] = {.lex_state = 15, .external_lex_state = 58}, - [1937] = {.lex_state = 15}, + [1936] = {.lex_state = 15}, + [1937] = {.lex_state = 0, .external_lex_state = 83}, [1938] = {.lex_state = 15, .external_lex_state = 58}, [1939] = {.lex_state = 16, .external_lex_state = 58}, [1940] = {.lex_state = 15, .external_lex_state = 58}, - [1941] = {.lex_state = 15, .external_lex_state = 58}, + [1941] = {.lex_state = 15}, [1942] = {.lex_state = 15, .external_lex_state = 58}, - [1943] = {.lex_state = 15, .external_lex_state = 58}, + [1943] = {.lex_state = 0, .external_lex_state = 83}, [1944] = {.lex_state = 2901}, [1945] = {.lex_state = 2901}, [1946] = {.lex_state = 2901}, - [1947] = {.lex_state = 0}, - [1948] = {.lex_state = 0, .external_lex_state = 84}, - [1949] = {.lex_state = 0, .external_lex_state = 84}, + [1947] = {.lex_state = 0, .external_lex_state = 84}, + [1948] = {.lex_state = 0}, + [1949] = {.lex_state = 0}, [1950] = {.lex_state = 0}, [1951] = {.lex_state = 0}, - [1952] = {.lex_state = 0}, + [1952] = {.lex_state = 0, .external_lex_state = 84}, [1953] = {.lex_state = 0}, [1954] = {.lex_state = 0}, - [1955] = {.lex_state = 0, .external_lex_state = 84}, + [1955] = {.lex_state = 0}, [1956] = {.lex_state = 0}, - [1957] = {.lex_state = 0, .external_lex_state = 84}, - [1958] = {.lex_state = 0}, + [1957] = {.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, .external_lex_state = 84}, + [1962] = {.lex_state = 0}, [1963] = {.lex_state = 0}, [1964] = {.lex_state = 0, .external_lex_state = 84}, [1965] = {.lex_state = 0}, @@ -25491,7 +25498,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1975] = {.lex_state = 0}, [1976] = {.lex_state = 0}, [1977] = {.lex_state = 0}, - [1978] = {.lex_state = 0, .external_lex_state = 84}, + [1978] = {.lex_state = 0}, [1979] = {.lex_state = 0}, [1980] = {.lex_state = 0, .external_lex_state = 84}, [1981] = {.lex_state = 0}, @@ -25502,33 +25509,33 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1986] = {.lex_state = 0}, [1987] = {.lex_state = 0}, [1988] = {.lex_state = 0}, - [1989] = {.lex_state = 0}, - [1990] = {.lex_state = 0, .external_lex_state = 84}, + [1989] = {.lex_state = 0, .external_lex_state = 84}, + [1990] = {.lex_state = 0}, [1991] = {.lex_state = 0}, [1992] = {.lex_state = 0}, [1993] = {.lex_state = 0}, - [1994] = {.lex_state = 0}, + [1994] = {.lex_state = 0, .external_lex_state = 84}, [1995] = {.lex_state = 0}, [1996] = {.lex_state = 0}, [1997] = {.lex_state = 0}, [1998] = {.lex_state = 0}, [1999] = {.lex_state = 0}, - [2000] = {.lex_state = 0}, + [2000] = {.lex_state = 15}, [2001] = {.lex_state = 0}, [2002] = {.lex_state = 0}, [2003] = {.lex_state = 0}, - [2004] = {.lex_state = 0}, + [2004] = {.lex_state = 0, .external_lex_state = 84}, [2005] = {.lex_state = 0}, [2006] = {.lex_state = 0}, [2007] = {.lex_state = 0}, [2008] = {.lex_state = 0}, [2009] = {.lex_state = 0}, [2010] = {.lex_state = 0}, - [2011] = {.lex_state = 0}, + [2011] = {.lex_state = 0, .external_lex_state = 84}, [2012] = {.lex_state = 0}, [2013] = {.lex_state = 0}, [2014] = {.lex_state = 0}, - [2015] = {.lex_state = 15}, + [2015] = {.lex_state = 0}, [2016] = {.lex_state = 0}, [2017] = {.lex_state = 0}, [2018] = {.lex_state = 0}, @@ -25543,76 +25550,76 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2027] = {.lex_state = 0}, [2028] = {.lex_state = 0}, [2029] = {.lex_state = 0, .external_lex_state = 84}, - [2030] = {.lex_state = 16, .external_lex_state = 71}, + [2030] = {.lex_state = 0, .external_lex_state = 85}, [2031] = {.lex_state = 0, .external_lex_state = 84}, [2032] = {.lex_state = 0, .external_lex_state = 84}, [2033] = {.lex_state = 0, .external_lex_state = 84}, [2034] = {.lex_state = 0, .external_lex_state = 84}, - [2035] = {.lex_state = 0, .external_lex_state = 84}, - [2036] = {.lex_state = 15, .external_lex_state = 71}, + [2035] = {.lex_state = 15, .external_lex_state = 71}, + [2036] = {.lex_state = 0, .external_lex_state = 84}, [2037] = {.lex_state = 0, .external_lex_state = 84}, [2038] = {.lex_state = 0, .external_lex_state = 84}, - [2039] = {.lex_state = 0, .external_lex_state = 85}, - [2040] = {.lex_state = 0, .external_lex_state = 84}, + [2039] = {.lex_state = 0, .external_lex_state = 84}, + [2040] = {.lex_state = 16, .external_lex_state = 71}, [2041] = {.lex_state = 0, .external_lex_state = 84}, - [2042] = {.lex_state = 16}, + [2042] = {.lex_state = 0, .external_lex_state = 86}, [2043] = {.lex_state = 16}, [2044] = {.lex_state = 16}, [2045] = {.lex_state = 16}, - [2046] = {.lex_state = 0, .external_lex_state = 86}, + [2046] = {.lex_state = 16}, [2047] = {.lex_state = 16}, - [2048] = {.lex_state = 0, .external_lex_state = 86}, - [2049] = {.lex_state = 0, .external_lex_state = 87}, - [2050] = {.lex_state = 15}, + [2048] = {.lex_state = 16}, + [2049] = {.lex_state = 16}, + [2050] = {.lex_state = 0, .external_lex_state = 87}, [2051] = {.lex_state = 0, .external_lex_state = 88}, [2052] = {.lex_state = 16}, [2053] = {.lex_state = 16}, - [2054] = {.lex_state = 16}, + [2054] = {.lex_state = 15}, [2055] = {.lex_state = 16}, - [2056] = {.lex_state = 0, .external_lex_state = 89}, - [2057] = {.lex_state = 0, .external_lex_state = 86}, - [2058] = {.lex_state = 16}, + [2056] = {.lex_state = 16}, + [2057] = {.lex_state = 16}, + [2058] = {.lex_state = 0, .external_lex_state = 88}, [2059] = {.lex_state = 16}, - [2060] = {.lex_state = 16}, + [2060] = {.lex_state = 0, .external_lex_state = 88}, [2061] = {.lex_state = 16}, - [2062] = {.lex_state = 16}, - [2063] = {.lex_state = 0, .external_lex_state = 86}, + [2062] = {.lex_state = 0, .external_lex_state = 88}, + [2063] = {.lex_state = 0, .external_lex_state = 89}, [2064] = {.lex_state = 0, .external_lex_state = 90}, [2065] = {.lex_state = 0, .external_lex_state = 90}, [2066] = {.lex_state = 0}, [2067] = {.lex_state = 0}, - [2068] = {.lex_state = 0, .external_lex_state = 68}, - [2069] = {.lex_state = 0, .external_lex_state = 90}, - [2070] = {.lex_state = 0, .external_lex_state = 68}, - [2071] = {.lex_state = 0, .external_lex_state = 84}, + [2068] = {.lex_state = 0, .external_lex_state = 84}, + [2069] = {.lex_state = 0, .external_lex_state = 84}, + [2070] = {.lex_state = 0}, + [2071] = {.lex_state = 0}, [2072] = {.lex_state = 0}, [2073] = {.lex_state = 0}, [2074] = {.lex_state = 0}, - [2075] = {.lex_state = 0, .external_lex_state = 84}, - [2076] = {.lex_state = 0}, - [2077] = {.lex_state = 0}, - [2078] = {.lex_state = 0, .external_lex_state = 84}, + [2075] = {.lex_state = 0, .external_lex_state = 91}, + [2076] = {.lex_state = 0, .external_lex_state = 91}, + [2077] = {.lex_state = 0, .external_lex_state = 84}, + [2078] = {.lex_state = 0, .external_lex_state = 91}, [2079] = {.lex_state = 0, .external_lex_state = 91}, - [2080] = {.lex_state = 0, .external_lex_state = 91}, + [2080] = {.lex_state = 0}, [2081] = {.lex_state = 0}, [2082] = {.lex_state = 0}, [2083] = {.lex_state = 0, .external_lex_state = 84}, - [2084] = {.lex_state = 0, .external_lex_state = 90}, - [2085] = {.lex_state = 0}, - [2086] = {.lex_state = 0}, - [2087] = {.lex_state = 0, .external_lex_state = 84}, - [2088] = {.lex_state = 0, .external_lex_state = 91}, - [2089] = {.lex_state = 0, .external_lex_state = 84}, + [2084] = {.lex_state = 0, .external_lex_state = 84}, + [2085] = {.lex_state = 0, .external_lex_state = 65}, + [2086] = {.lex_state = 0, .external_lex_state = 84}, + [2087] = {.lex_state = 0, .external_lex_state = 65}, + [2088] = {.lex_state = 0}, + [2089] = {.lex_state = 0}, [2090] = {.lex_state = 0}, - [2091] = {.lex_state = 0, .external_lex_state = 91}, + [2091] = {.lex_state = 0, .external_lex_state = 84}, [2092] = {.lex_state = 0, .external_lex_state = 84}, - [2093] = {.lex_state = 0, .external_lex_state = 84}, - [2094] = {.lex_state = 0}, + [2093] = {.lex_state = 0}, + [2094] = {.lex_state = 0, .external_lex_state = 84}, [2095] = {.lex_state = 0, .external_lex_state = 84}, - [2096] = {.lex_state = 0, .external_lex_state = 84}, - [2097] = {.lex_state = 0}, + [2096] = {.lex_state = 0}, + [2097] = {.lex_state = 0, .external_lex_state = 90}, [2098] = {.lex_state = 0, .external_lex_state = 84}, - [2099] = {.lex_state = 0}, + [2099] = {.lex_state = 0, .external_lex_state = 90}, [2100] = {.lex_state = 0, .external_lex_state = 84}, [2101] = {.lex_state = 0, .external_lex_state = 84}, [2102] = {.lex_state = 0}, @@ -25633,52 +25640,52 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2117] = {.lex_state = 0}, [2118] = {.lex_state = 0}, [2119] = {.lex_state = 0}, - [2120] = {.lex_state = 0, .external_lex_state = 92}, + [2120] = {.lex_state = 0}, [2121] = {.lex_state = 0, .external_lex_state = 92}, - [2122] = {.lex_state = 0}, + [2122] = {.lex_state = 0, .external_lex_state = 92}, [2123] = {.lex_state = 0, .external_lex_state = 92}, - [2124] = {.lex_state = 0, .external_lex_state = 92}, + [2124] = {.lex_state = 0}, [2125] = {.lex_state = 0, .external_lex_state = 92}, - [2126] = {.lex_state = 0, .external_lex_state = 92}, + [2126] = {.lex_state = 0}, [2127] = {.lex_state = 0, .external_lex_state = 92}, [2128] = {.lex_state = 0, .external_lex_state = 92}, [2129] = {.lex_state = 0, .external_lex_state = 92}, [2130] = {.lex_state = 0, .external_lex_state = 92}, [2131] = {.lex_state = 0, .external_lex_state = 92}, - [2132] = {.lex_state = 0}, - [2133] = {.lex_state = 0}, - [2134] = {.lex_state = 0, .external_lex_state = 92}, - [2135] = {.lex_state = 0}, + [2132] = {.lex_state = 0, .external_lex_state = 92}, + [2133] = {.lex_state = 0, .external_lex_state = 92}, + [2134] = {.lex_state = 0}, + [2135] = {.lex_state = 0, .external_lex_state = 92}, [2136] = {.lex_state = 0, .external_lex_state = 92}, - [2137] = {.lex_state = 0}, + [2137] = {.lex_state = 0, .external_lex_state = 92}, [2138] = {.lex_state = 0, .external_lex_state = 92}, - [2139] = {.lex_state = 0, .external_lex_state = 92}, + [2139] = {.lex_state = 0}, [2140] = {.lex_state = 0, .external_lex_state = 92}, [2141] = {.lex_state = 0, .external_lex_state = 92}, - [2142] = {.lex_state = 0, .external_lex_state = 92}, - [2143] = {.lex_state = 0}, + [2142] = {.lex_state = 0}, + [2143] = {.lex_state = 0, .external_lex_state = 92}, [2144] = {.lex_state = 0, .external_lex_state = 92}, - [2145] = {.lex_state = 0, .external_lex_state = 54}, - [2146] = {.lex_state = 0}, - [2147] = {.lex_state = 0, .external_lex_state = 56}, + [2145] = {.lex_state = 0, .external_lex_state = 55}, + [2146] = {.lex_state = 0, .external_lex_state = 55}, + [2147] = {.lex_state = 0, .external_lex_state = 54}, [2148] = {.lex_state = 0}, - [2149] = {.lex_state = 0, .external_lex_state = 54}, + [2149] = {.lex_state = 0, .external_lex_state = 55}, [2150] = {.lex_state = 0}, [2151] = {.lex_state = 0}, [2152] = {.lex_state = 0}, - [2153] = {.lex_state = 0}, + [2153] = {.lex_state = 0, .external_lex_state = 54}, [2154] = {.lex_state = 0}, - [2155] = {.lex_state = 0, .external_lex_state = 56}, + [2155] = {.lex_state = 0}, [2156] = {.lex_state = 0}, - [2157] = {.lex_state = 0, .external_lex_state = 56}, + [2157] = {.lex_state = 0, .external_lex_state = 54}, [2158] = {.lex_state = 0}, - [2159] = {.lex_state = 0, .external_lex_state = 54}, + [2159] = {.lex_state = 0, .external_lex_state = 55}, [2160] = {.lex_state = 0}, [2161] = {.lex_state = 0}, [2162] = {.lex_state = 0}, - [2163] = {.lex_state = 0, .external_lex_state = 56}, + [2163] = {.lex_state = 0, .external_lex_state = 54}, [2164] = {.lex_state = 0}, - [2165] = {.lex_state = 0, .external_lex_state = 54}, + [2165] = {.lex_state = 0, .external_lex_state = 55}, [2166] = {.lex_state = 0}, [2167] = {.lex_state = 0}, [2168] = {.lex_state = 0}, @@ -25691,153 +25698,153 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2175] = {.lex_state = 0}, [2176] = {.lex_state = 0}, [2177] = {.lex_state = 0}, - [2178] = {.lex_state = 0}, + [2178] = {.lex_state = 0, .external_lex_state = 55}, [2179] = {.lex_state = 0}, - [2180] = {.lex_state = 0, .external_lex_state = 54}, + [2180] = {.lex_state = 0}, [2181] = {.lex_state = 0}, [2182] = {.lex_state = 0}, - [2183] = {.lex_state = 0, .external_lex_state = 56}, - [2184] = {.lex_state = 0, .external_lex_state = 54}, + [2183] = {.lex_state = 0}, + [2184] = {.lex_state = 0, .external_lex_state = 55}, [2185] = {.lex_state = 0}, [2186] = {.lex_state = 0}, [2187] = {.lex_state = 0, .external_lex_state = 54}, - [2188] = {.lex_state = 0, .external_lex_state = 56}, + [2188] = {.lex_state = 0}, [2189] = {.lex_state = 0}, [2190] = {.lex_state = 0}, - [2191] = {.lex_state = 0}, + [2191] = {.lex_state = 0, .external_lex_state = 54}, [2192] = {.lex_state = 0}, [2193] = {.lex_state = 0}, - [2194] = {.lex_state = 0, .external_lex_state = 56}, - [2195] = {.lex_state = 0, .external_lex_state = 56}, + [2194] = {.lex_state = 0}, + [2195] = {.lex_state = 0, .external_lex_state = 54}, [2196] = {.lex_state = 0}, - [2197] = {.lex_state = 0, .external_lex_state = 54}, - [2198] = {.lex_state = 0, .external_lex_state = 54}, + [2197] = {.lex_state = 0, .external_lex_state = 55}, + [2198] = {.lex_state = 0, .external_lex_state = 55}, [2199] = {.lex_state = 0}, [2200] = {.lex_state = 0}, - [2201] = {.lex_state = 0, .external_lex_state = 56}, - [2202] = {.lex_state = 0}, + [2201] = {.lex_state = 0}, + [2202] = {.lex_state = 0, .external_lex_state = 54}, [2203] = {.lex_state = 0}, - [2204] = {.lex_state = 0}, - [2205] = {.lex_state = 0, .external_lex_state = 56}, - [2206] = {.lex_state = 0, .external_lex_state = 54}, - [2207] = {.lex_state = 0, .external_lex_state = 54}, + [2204] = {.lex_state = 0, .external_lex_state = 55}, + [2205] = {.lex_state = 0, .external_lex_state = 54}, + [2206] = {.lex_state = 0}, + [2207] = {.lex_state = 0, .external_lex_state = 55}, [2208] = {.lex_state = 0}, - [2209] = {.lex_state = 0}, - [2210] = {.lex_state = 0}, - [2211] = {.lex_state = 0, .external_lex_state = 56}, + [2209] = {.lex_state = 0, .external_lex_state = 55}, + [2210] = {.lex_state = 0, .external_lex_state = 54}, + [2211] = {.lex_state = 0, .external_lex_state = 54}, [2212] = {.lex_state = 0}, - [2213] = {.lex_state = 0}, + [2213] = {.lex_state = 0, .external_lex_state = 55}, [2214] = {.lex_state = 0}, [2215] = {.lex_state = 0}, [2216] = {.lex_state = 0}, [2217] = {.lex_state = 0, .external_lex_state = 54}, - [2218] = {.lex_state = 0}, + [2218] = {.lex_state = 0, .external_lex_state = 55}, [2219] = {.lex_state = 0}, - [2220] = {.lex_state = 0, .external_lex_state = 56}, + [2220] = {.lex_state = 0, .external_lex_state = 55}, [2221] = {.lex_state = 0}, - [2222] = {.lex_state = 0}, + [2222] = {.lex_state = 0, .external_lex_state = 54}, [2223] = {.lex_state = 0}, [2224] = {.lex_state = 0}, [2225] = {.lex_state = 0}, [2226] = {.lex_state = 0}, - [2227] = {.lex_state = 0, .external_lex_state = 54}, - [2228] = {.lex_state = 0, .external_lex_state = 56}, + [2227] = {.lex_state = 0}, + [2228] = {.lex_state = 0}, [2229] = {.lex_state = 0}, [2230] = {.lex_state = 0}, [2231] = {.lex_state = 0}, - [2232] = {.lex_state = 0, .external_lex_state = 54}, - [2233] = {.lex_state = 0, .external_lex_state = 56}, + [2232] = {.lex_state = 0}, + [2233] = {.lex_state = 0}, [2234] = {.lex_state = 0}, [2235] = {.lex_state = 0}, [2236] = {.lex_state = 0}, [2237] = {.lex_state = 0}, - [2238] = {.lex_state = 0, .external_lex_state = 56}, + [2238] = {.lex_state = 0, .external_lex_state = 55}, [2239] = {.lex_state = 0}, - [2240] = {.lex_state = 0, .external_lex_state = 54}, - [2241] = {.lex_state = 0, .external_lex_state = 56}, + [2240] = {.lex_state = 0}, + [2241] = {.lex_state = 0}, [2242] = {.lex_state = 0}, - [2243] = {.lex_state = 0, .external_lex_state = 56}, - [2244] = {.lex_state = 0, .external_lex_state = 56}, - [2245] = {.lex_state = 0, .external_lex_state = 54}, + [2243] = {.lex_state = 0, .external_lex_state = 54}, + [2244] = {.lex_state = 0}, + [2245] = {.lex_state = 0, .external_lex_state = 55}, [2246] = {.lex_state = 0}, [2247] = {.lex_state = 0}, [2248] = {.lex_state = 0}, [2249] = {.lex_state = 0}, [2250] = {.lex_state = 0}, [2251] = {.lex_state = 0}, - [2252] = {.lex_state = 0, .external_lex_state = 54}, - [2253] = {.lex_state = 0, .external_lex_state = 56}, - [2254] = {.lex_state = 0}, - [2255] = {.lex_state = 0, .external_lex_state = 54}, + [2252] = {.lex_state = 0}, + [2253] = {.lex_state = 0, .external_lex_state = 54}, + [2254] = {.lex_state = 0, .external_lex_state = 54}, + [2255] = {.lex_state = 0, .external_lex_state = 55}, [2256] = {.lex_state = 0}, [2257] = {.lex_state = 0}, - [2258] = {.lex_state = 0}, - [2259] = {.lex_state = 0, .external_lex_state = 56}, - [2260] = {.lex_state = 0}, - [2261] = {.lex_state = 0, .external_lex_state = 54}, - [2262] = {.lex_state = 0}, + [2258] = {.lex_state = 0, .external_lex_state = 55}, + [2259] = {.lex_state = 0, .external_lex_state = 54}, + [2260] = {.lex_state = 0, .external_lex_state = 55}, + [2261] = {.lex_state = 0}, + [2262] = {.lex_state = 0, .external_lex_state = 54}, [2263] = {.lex_state = 0}, [2264] = {.lex_state = 0}, - [2265] = {.lex_state = 0}, + [2265] = {.lex_state = 0, .external_lex_state = 54}, [2266] = {.lex_state = 0}, - [2267] = {.lex_state = 0, .external_lex_state = 56}, - [2268] = {.lex_state = 0}, + [2267] = {.lex_state = 0}, + [2268] = {.lex_state = 0, .external_lex_state = 54}, [2269] = {.lex_state = 0}, - [2270] = {.lex_state = 0}, - [2271] = {.lex_state = 0, .external_lex_state = 56}, + [2270] = {.lex_state = 0, .external_lex_state = 55}, + [2271] = {.lex_state = 0}, [2272] = {.lex_state = 0}, [2273] = {.lex_state = 0}, - [2274] = {.lex_state = 0, .external_lex_state = 54}, + [2274] = {.lex_state = 0}, [2275] = {.lex_state = 0, .external_lex_state = 54}, - [2276] = {.lex_state = 0}, - [2277] = {.lex_state = 0, .external_lex_state = 56}, - [2278] = {.lex_state = 0, .external_lex_state = 54}, + [2276] = {.lex_state = 0, .external_lex_state = 55}, + [2277] = {.lex_state = 0}, + [2278] = {.lex_state = 0}, [2279] = {.lex_state = 0}, - [2280] = {.lex_state = 0, .external_lex_state = 54}, - [2281] = {.lex_state = 0}, - [2282] = {.lex_state = 0, .external_lex_state = 56}, + [2280] = {.lex_state = 0}, + [2281] = {.lex_state = 0, .external_lex_state = 54}, + [2282] = {.lex_state = 0}, [2283] = {.lex_state = 0}, [2284] = {.lex_state = 0}, [2285] = {.lex_state = 0}, [2286] = {.lex_state = 0}, - [2287] = {.lex_state = 0, .external_lex_state = 54}, - [2288] = {.lex_state = 0}, + [2287] = {.lex_state = 0}, + [2288] = {.lex_state = 0, .external_lex_state = 54}, [2289] = {.lex_state = 0}, [2290] = {.lex_state = 0}, - [2291] = {.lex_state = 0}, - [2292] = {.lex_state = 0}, - [2293] = {.lex_state = 0}, + [2291] = {.lex_state = 0, .external_lex_state = 55}, + [2292] = {.lex_state = 0, .external_lex_state = 55}, + [2293] = {.lex_state = 0, .external_lex_state = 55}, [2294] = {.lex_state = 0}, - [2295] = {.lex_state = 0}, - [2296] = {.lex_state = 0}, - [2297] = {.lex_state = 0, .external_lex_state = 54}, + [2295] = {.lex_state = 0, .external_lex_state = 54}, + [2296] = {.lex_state = 0, .external_lex_state = 55}, + [2297] = {.lex_state = 0}, [2298] = {.lex_state = 0}, - [2299] = {.lex_state = 0, .external_lex_state = 56}, - [2300] = {.lex_state = 0}, + [2299] = {.lex_state = 0}, + [2300] = {.lex_state = 0, .external_lex_state = 55}, [2301] = {.lex_state = 0}, [2302] = {.lex_state = 0}, [2303] = {.lex_state = 0}, [2304] = {.lex_state = 0}, - [2305] = {.lex_state = 0, .external_lex_state = 56}, - [2306] = {.lex_state = 0}, - [2307] = {.lex_state = 0, .external_lex_state = 56}, - [2308] = {.lex_state = 0}, + [2305] = {.lex_state = 0, .external_lex_state = 54}, + [2306] = {.lex_state = 0, .external_lex_state = 54}, + [2307] = {.lex_state = 0}, + [2308] = {.lex_state = 0, .external_lex_state = 54}, [2309] = {.lex_state = 0}, - [2310] = {.lex_state = 0, .external_lex_state = 54}, - [2311] = {.lex_state = 0}, - [2312] = {.lex_state = 0, .external_lex_state = 54}, - [2313] = {.lex_state = 0}, + [2310] = {.lex_state = 0}, + [2311] = {.lex_state = 0, .external_lex_state = 54}, + [2312] = {.lex_state = 0, .external_lex_state = 55}, + [2313] = {.lex_state = 0, .external_lex_state = 55}, [2314] = {.lex_state = 0}, - [2315] = {.lex_state = 0, .external_lex_state = 56}, + [2315] = {.lex_state = 0}, [2316] = {.lex_state = 0, .external_lex_state = 54}, - [2317] = {.lex_state = 0, .external_lex_state = 56}, + [2317] = {.lex_state = 0, .external_lex_state = 54}, [2318] = {.lex_state = 0}, - [2319] = {.lex_state = 0, .external_lex_state = 56}, + [2319] = {.lex_state = 0, .external_lex_state = 55}, [2320] = {.lex_state = 0}, [2321] = {.lex_state = 0}, - [2322] = {.lex_state = 0, .external_lex_state = 54}, + [2322] = {.lex_state = 0}, [2323] = {.lex_state = 0}, - [2324] = {.lex_state = 0, .external_lex_state = 54}, + [2324] = {.lex_state = 0}, [2325] = {.lex_state = 0}, [2326] = {.lex_state = 0}, [2327] = {.lex_state = 0}, @@ -25845,252 +25852,252 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2329] = {.lex_state = 0}, [2330] = {.lex_state = 0}, [2331] = {.lex_state = 0, .external_lex_state = 64}, - [2332] = {.lex_state = 0, .external_lex_state = 93}, - [2333] = {.lex_state = 0, .external_lex_state = 64}, - [2334] = {.lex_state = 0, .external_lex_state = 64}, + [2332] = {.lex_state = 0}, + [2333] = {.lex_state = 0}, + [2334] = {.lex_state = 0, .external_lex_state = 93}, [2335] = {.lex_state = 0, .external_lex_state = 64}, [2336] = {.lex_state = 0, .external_lex_state = 94}, - [2337] = {.lex_state = 0}, + [2337] = {.lex_state = 0, .external_lex_state = 95}, [2338] = {.lex_state = 0, .external_lex_state = 94}, - [2339] = {.lex_state = 0, .external_lex_state = 95}, - [2340] = {.lex_state = 0, .external_lex_state = 95}, - [2341] = {.lex_state = 0, .external_lex_state = 64}, + [2339] = {.lex_state = 0, .external_lex_state = 93}, + [2340] = {.lex_state = 0, .external_lex_state = 93}, + [2341] = {.lex_state = 0, .external_lex_state = 93}, [2342] = {.lex_state = 0, .external_lex_state = 64}, - [2343] = {.lex_state = 0, .external_lex_state = 64}, - [2344] = {.lex_state = 0, .external_lex_state = 96}, - [2345] = {.lex_state = 0, .external_lex_state = 96}, - [2346] = {.lex_state = 0, .external_lex_state = 95}, - [2347] = {.lex_state = 0, .external_lex_state = 95}, + [2343] = {.lex_state = 0, .external_lex_state = 96}, + [2344] = {.lex_state = 0}, + [2345] = {.lex_state = 0, .external_lex_state = 64}, + [2346] = {.lex_state = 0, .external_lex_state = 93}, + [2347] = {.lex_state = 0, .external_lex_state = 93}, [2348] = {.lex_state = 0, .external_lex_state = 64}, - [2349] = {.lex_state = 0, .external_lex_state = 96}, - [2350] = {.lex_state = 0, .external_lex_state = 96}, - [2351] = {.lex_state = 0}, + [2349] = {.lex_state = 0, .external_lex_state = 64}, + [2350] = {.lex_state = 0}, + [2351] = {.lex_state = 0, .external_lex_state = 93}, [2352] = {.lex_state = 0, .external_lex_state = 64}, - [2353] = {.lex_state = 0, .external_lex_state = 93}, - [2354] = {.lex_state = 0, .external_lex_state = 96}, + [2353] = {.lex_state = 0, .external_lex_state = 95}, + [2354] = {.lex_state = 0, .external_lex_state = 95}, [2355] = {.lex_state = 0, .external_lex_state = 97}, - [2356] = {.lex_state = 0}, - [2357] = {.lex_state = 0, .external_lex_state = 96}, - [2358] = {.lex_state = 0, .external_lex_state = 96}, - [2359] = {.lex_state = 0, .external_lex_state = 64}, - [2360] = {.lex_state = 0, .external_lex_state = 96}, + [2356] = {.lex_state = 0, .external_lex_state = 95}, + [2357] = {.lex_state = 0, .external_lex_state = 64}, + [2358] = {.lex_state = 0, .external_lex_state = 93}, + [2359] = {.lex_state = 0, .external_lex_state = 96}, + [2360] = {.lex_state = 0, .external_lex_state = 94}, [2361] = {.lex_state = 0, .external_lex_state = 95}, - [2362] = {.lex_state = 0, .external_lex_state = 96}, + [2362] = {.lex_state = 0, .external_lex_state = 64}, [2363] = {.lex_state = 0, .external_lex_state = 96}, - [2364] = {.lex_state = 0, .external_lex_state = 96}, - [2365] = {.lex_state = 0, .external_lex_state = 96}, - [2366] = {.lex_state = 0}, - [2367] = {.lex_state = 0, .external_lex_state = 64}, - [2368] = {.lex_state = 0, .external_lex_state = 96}, - [2369] = {.lex_state = 0, .external_lex_state = 64}, - [2370] = {.lex_state = 0, .external_lex_state = 96}, - [2371] = {.lex_state = 0, .external_lex_state = 64}, - [2372] = {.lex_state = 0, .external_lex_state = 64}, + [2364] = {.lex_state = 0}, + [2365] = {.lex_state = 0, .external_lex_state = 95}, + [2366] = {.lex_state = 0, .external_lex_state = 96}, + [2367] = {.lex_state = 0, .external_lex_state = 95}, + [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 = 95}, + [2372] = {.lex_state = 0}, [2373] = {.lex_state = 0, .external_lex_state = 64}, [2374] = {.lex_state = 0, .external_lex_state = 64}, [2375] = {.lex_state = 0, .external_lex_state = 95}, - [2376] = {.lex_state = 0, .external_lex_state = 94}, - [2377] = {.lex_state = 0, .external_lex_state = 64}, - [2378] = {.lex_state = 0, .external_lex_state = 95}, + [2376] = {.lex_state = 0, .external_lex_state = 64}, + [2377] = {.lex_state = 0, .external_lex_state = 95}, + [2378] = {.lex_state = 0, .external_lex_state = 64}, [2379] = {.lex_state = 0, .external_lex_state = 64}, - [2380] = {.lex_state = 0, .external_lex_state = 94}, - [2381] = {.lex_state = 0, .external_lex_state = 96}, - [2382] = {.lex_state = 0, .external_lex_state = 96}, - [2383] = {.lex_state = 0, .external_lex_state = 64}, + [2380] = {.lex_state = 0, .external_lex_state = 64}, + [2381] = {.lex_state = 0, .external_lex_state = 95}, + [2382] = {.lex_state = 0, .external_lex_state = 95}, + [2383] = {.lex_state = 0}, [2384] = {.lex_state = 0, .external_lex_state = 64}, [2385] = {.lex_state = 0, .external_lex_state = 64}, - [2386] = {.lex_state = 0, .external_lex_state = 93}, - [2387] = {.lex_state = 0, .external_lex_state = 96}, + [2386] = {.lex_state = 0, .external_lex_state = 64}, + [2387] = {.lex_state = 0, .external_lex_state = 95}, [2388] = {.lex_state = 0, .external_lex_state = 93}, - [2389] = {.lex_state = 0, .external_lex_state = 96}, + [2389] = {.lex_state = 0, .external_lex_state = 64}, [2390] = {.lex_state = 0, .external_lex_state = 94}, - [2391] = {.lex_state = 0, .external_lex_state = 96}, - [2392] = {.lex_state = 0, .external_lex_state = 96}, - [2393] = {.lex_state = 0, .external_lex_state = 96}, - [2394] = {.lex_state = 0, .external_lex_state = 95}, - [2395] = {.lex_state = 0}, - [2396] = {.lex_state = 0, .external_lex_state = 95}, + [2391] = {.lex_state = 0, .external_lex_state = 93}, + [2392] = {.lex_state = 0, .external_lex_state = 95}, + [2393] = {.lex_state = 0, .external_lex_state = 95}, + [2394] = {.lex_state = 0, .external_lex_state = 93}, + [2395] = {.lex_state = 0, .external_lex_state = 95}, + [2396] = {.lex_state = 0, .external_lex_state = 93}, [2397] = {.lex_state = 0, .external_lex_state = 95}, [2398] = {.lex_state = 0, .external_lex_state = 64}, - [2399] = {.lex_state = 0}, - [2400] = {.lex_state = 0}, - [2401] = {.lex_state = 0, .external_lex_state = 96}, - [2402] = {.lex_state = 0, .external_lex_state = 96}, - [2403] = {.lex_state = 0, .external_lex_state = 64}, - [2404] = {.lex_state = 0, .external_lex_state = 64}, - [2405] = {.lex_state = 0, .external_lex_state = 64}, - [2406] = {.lex_state = 0, .external_lex_state = 64}, - [2407] = {.lex_state = 0, .external_lex_state = 64}, + [2399] = {.lex_state = 0, .external_lex_state = 95}, + [2400] = {.lex_state = 0, .external_lex_state = 64}, + [2401] = {.lex_state = 0, .external_lex_state = 95}, + [2402] = {.lex_state = 0, .external_lex_state = 95}, + [2403] = {.lex_state = 0, .external_lex_state = 93}, + [2404] = {.lex_state = 0, .external_lex_state = 93}, + [2405] = {.lex_state = 0, .external_lex_state = 93}, + [2406] = {.lex_state = 0}, + [2407] = {.lex_state = 0, .external_lex_state = 94}, [2408] = {.lex_state = 0, .external_lex_state = 94}, [2409] = {.lex_state = 0, .external_lex_state = 64}, - [2410] = {.lex_state = 0, .external_lex_state = 95}, + [2410] = {.lex_state = 0, .external_lex_state = 64}, [2411] = {.lex_state = 0, .external_lex_state = 64}, - [2412] = {.lex_state = 0, .external_lex_state = 95}, - [2413] = {.lex_state = 0, .external_lex_state = 96}, - [2414] = {.lex_state = 0, .external_lex_state = 95}, + [2412] = {.lex_state = 0, .external_lex_state = 93}, + [2413] = {.lex_state = 0, .external_lex_state = 64}, + [2414] = {.lex_state = 0, .external_lex_state = 93}, [2415] = {.lex_state = 0, .external_lex_state = 64}, - [2416] = {.lex_state = 0}, - [2417] = {.lex_state = 0, .external_lex_state = 95}, + [2416] = {.lex_state = 0, .external_lex_state = 95}, + [2417] = {.lex_state = 0, .external_lex_state = 64}, [2418] = {.lex_state = 0, .external_lex_state = 95}, - [2419] = {.lex_state = 0, .external_lex_state = 96}, - [2420] = {.lex_state = 0, .external_lex_state = 96}, - [2421] = {.lex_state = 0, .external_lex_state = 96}, - [2422] = {.lex_state = 0, .external_lex_state = 95}, - [2423] = {.lex_state = 0, .external_lex_state = 95}, - [2424] = {.lex_state = 0}, - [2425] = {.lex_state = 0, .external_lex_state = 96}, + [2419] = {.lex_state = 0, .external_lex_state = 95}, + [2420] = {.lex_state = 0, .external_lex_state = 95}, + [2421] = {.lex_state = 0, .external_lex_state = 93}, + [2422] = {.lex_state = 0, .external_lex_state = 64}, + [2423] = {.lex_state = 0, .external_lex_state = 64}, + [2424] = {.lex_state = 0, .external_lex_state = 64}, + [2425] = {.lex_state = 0, .external_lex_state = 93}, [2426] = {.lex_state = 0, .external_lex_state = 94}, - [2427] = {.lex_state = 0, .external_lex_state = 96}, + [2427] = {.lex_state = 0, .external_lex_state = 64}, [2428] = {.lex_state = 0, .external_lex_state = 64}, [2429] = {.lex_state = 0, .external_lex_state = 64}, - [2430] = {.lex_state = 0, .external_lex_state = 95}, - [2431] = {.lex_state = 0, .external_lex_state = 64}, - [2432] = {.lex_state = 0, .external_lex_state = 95}, - [2433] = {.lex_state = 0, .external_lex_state = 64}, + [2430] = {.lex_state = 0, .external_lex_state = 93}, + [2431] = {.lex_state = 0, .external_lex_state = 95}, + [2432] = {.lex_state = 0, .external_lex_state = 93}, + [2433] = {.lex_state = 0, .external_lex_state = 93}, [2434] = {.lex_state = 0, .external_lex_state = 64}, - [2435] = {.lex_state = 0, .external_lex_state = 96}, - [2436] = {.lex_state = 0}, - [2437] = {.lex_state = 0, .external_lex_state = 96}, - [2438] = {.lex_state = 0, .external_lex_state = 96}, + [2435] = {.lex_state = 0, .external_lex_state = 64}, + [2436] = {.lex_state = 0, .external_lex_state = 95}, + [2437] = {.lex_state = 0, .external_lex_state = 95}, + [2438] = {.lex_state = 0, .external_lex_state = 95}, [2439] = {.lex_state = 0, .external_lex_state = 95}, - [2440] = {.lex_state = 0, .external_lex_state = 96}, - [2441] = {.lex_state = 0, .external_lex_state = 96}, - [2442] = {.lex_state = 0, .external_lex_state = 96}, - [2443] = {.lex_state = 0, .external_lex_state = 96}, + [2440] = {.lex_state = 0, .external_lex_state = 95}, + [2441] = {.lex_state = 0, .external_lex_state = 95}, + [2442] = {.lex_state = 0, .external_lex_state = 64}, + [2443] = {.lex_state = 0, .external_lex_state = 64}, [2444] = {.lex_state = 0, .external_lex_state = 94}, - [2445] = {.lex_state = 0, .external_lex_state = 96}, - [2446] = {.lex_state = 0, .external_lex_state = 96}, - [2447] = {.lex_state = 0, .external_lex_state = 64}, - [2448] = {.lex_state = 0, .external_lex_state = 95}, + [2445] = {.lex_state = 0, .external_lex_state = 64}, + [2446] = {.lex_state = 0, .external_lex_state = 64}, + [2447] = {.lex_state = 0}, + [2448] = {.lex_state = 0, .external_lex_state = 93}, [2449] = {.lex_state = 0, .external_lex_state = 95}, - [2450] = {.lex_state = 0, .external_lex_state = 95}, + [2450] = {.lex_state = 0, .external_lex_state = 93}, [2451] = {.lex_state = 0, .external_lex_state = 95}, - [2452] = {.lex_state = 0, .external_lex_state = 64}, + [2452] = {.lex_state = 0, .external_lex_state = 95}, [2453] = {.lex_state = 0, .external_lex_state = 95}, - [2454] = {.lex_state = 0, .external_lex_state = 64}, - [2455] = {.lex_state = 0, .external_lex_state = 64}, - [2456] = {.lex_state = 0, .external_lex_state = 96}, + [2454] = {.lex_state = 0, .external_lex_state = 95}, + [2455] = {.lex_state = 0, .external_lex_state = 95}, + [2456] = {.lex_state = 0, .external_lex_state = 95}, [2457] = {.lex_state = 0, .external_lex_state = 64}, [2458] = {.lex_state = 0, .external_lex_state = 64}, [2459] = {.lex_state = 0, .external_lex_state = 64}, - [2460] = {.lex_state = 0, .external_lex_state = 96}, - [2461] = {.lex_state = 0, .external_lex_state = 95}, + [2460] = {.lex_state = 0, .external_lex_state = 64}, + [2461] = {.lex_state = 0, .external_lex_state = 64}, [2462] = {.lex_state = 0, .external_lex_state = 94}, - [2463] = {.lex_state = 0, .external_lex_state = 64}, - [2464] = {.lex_state = 0, .external_lex_state = 64}, - [2465] = {.lex_state = 0, .external_lex_state = 64}, - [2466] = {.lex_state = 0, .external_lex_state = 95}, - [2467] = {.lex_state = 0}, - [2468] = {.lex_state = 0, .external_lex_state = 95}, - [2469] = {.lex_state = 0, .external_lex_state = 96}, - [2470] = {.lex_state = 0, .external_lex_state = 64}, - [2471] = {.lex_state = 0, .external_lex_state = 96}, + [2463] = {.lex_state = 0, .external_lex_state = 93}, + [2464] = {.lex_state = 0, .external_lex_state = 95}, + [2465] = {.lex_state = 0, .external_lex_state = 95}, + [2466] = {.lex_state = 0, .external_lex_state = 93}, + [2467] = {.lex_state = 0, .external_lex_state = 95}, + [2468] = {.lex_state = 0, .external_lex_state = 93}, + [2469] = {.lex_state = 0, .external_lex_state = 95}, + [2470] = {.lex_state = 0}, + [2471] = {.lex_state = 0, .external_lex_state = 64}, [2472] = {.lex_state = 0, .external_lex_state = 64}, - [2473] = {.lex_state = 0, .external_lex_state = 96}, - [2474] = {.lex_state = 0, .external_lex_state = 96}, - [2475] = {.lex_state = 0, .external_lex_state = 96}, - [2476] = {.lex_state = 0, .external_lex_state = 96}, - [2477] = {.lex_state = 0, .external_lex_state = 96}, - [2478] = {.lex_state = 0}, + [2473] = {.lex_state = 0, .external_lex_state = 95}, + [2474] = {.lex_state = 0, .external_lex_state = 95}, + [2475] = {.lex_state = 0, .external_lex_state = 95}, + [2476] = {.lex_state = 0, .external_lex_state = 95}, + [2477] = {.lex_state = 0, .external_lex_state = 95}, + [2478] = {.lex_state = 0, .external_lex_state = 64}, [2479] = {.lex_state = 0, .external_lex_state = 94}, - [2480] = {.lex_state = 0, .external_lex_state = 96}, - [2481] = {.lex_state = 0, .external_lex_state = 96}, - [2482] = {.lex_state = 0, .external_lex_state = 96}, - [2483] = {.lex_state = 0, .external_lex_state = 95}, + [2480] = {.lex_state = 0, .external_lex_state = 95}, + [2481] = {.lex_state = 0, .external_lex_state = 95}, + [2482] = {.lex_state = 0, .external_lex_state = 95}, + [2483] = {.lex_state = 0, .external_lex_state = 93}, [2484] = {.lex_state = 0, .external_lex_state = 64}, - [2485] = {.lex_state = 0, .external_lex_state = 95}, - [2486] = {.lex_state = 0, .external_lex_state = 96}, - [2487] = {.lex_state = 0, .external_lex_state = 95}, - [2488] = {.lex_state = 0, .external_lex_state = 96}, - [2489] = {.lex_state = 0}, - [2490] = {.lex_state = 0, .external_lex_state = 96}, - [2491] = {.lex_state = 0, .external_lex_state = 96}, + [2485] = {.lex_state = 0, .external_lex_state = 93}, + [2486] = {.lex_state = 0, .external_lex_state = 64}, + [2487] = {.lex_state = 0, .external_lex_state = 93}, + [2488] = {.lex_state = 0}, + [2489] = {.lex_state = 0, .external_lex_state = 95}, + [2490] = {.lex_state = 0, .external_lex_state = 95}, + [2491] = {.lex_state = 0, .external_lex_state = 95}, [2492] = {.lex_state = 0, .external_lex_state = 64}, - [2493] = {.lex_state = 0, .external_lex_state = 96}, + [2493] = {.lex_state = 0}, [2494] = {.lex_state = 0, .external_lex_state = 64}, - [2495] = {.lex_state = 0, .external_lex_state = 97}, + [2495] = {.lex_state = 0, .external_lex_state = 64}, [2496] = {.lex_state = 0, .external_lex_state = 94}, - [2497] = {.lex_state = 0, .external_lex_state = 96}, - [2498] = {.lex_state = 0, .external_lex_state = 96}, + [2497] = {.lex_state = 0, .external_lex_state = 64}, + [2498] = {.lex_state = 0, .external_lex_state = 64}, [2499] = {.lex_state = 0, .external_lex_state = 64}, - [2500] = {.lex_state = 0, .external_lex_state = 95}, - [2501] = {.lex_state = 0, .external_lex_state = 96}, - [2502] = {.lex_state = 0, .external_lex_state = 95}, + [2500] = {.lex_state = 0, .external_lex_state = 93}, + [2501] = {.lex_state = 0, .external_lex_state = 64}, + [2502] = {.lex_state = 0, .external_lex_state = 93}, [2503] = {.lex_state = 0, .external_lex_state = 64}, - [2504] = {.lex_state = 0, .external_lex_state = 96}, + [2504] = {.lex_state = 0}, [2505] = {.lex_state = 0, .external_lex_state = 97}, - [2506] = {.lex_state = 0, .external_lex_state = 96}, - [2507] = {.lex_state = 0, .external_lex_state = 96}, - [2508] = {.lex_state = 0, .external_lex_state = 96}, + [2506] = {.lex_state = 0, .external_lex_state = 97}, + [2507] = {.lex_state = 0, .external_lex_state = 95}, + [2508] = {.lex_state = 0, .external_lex_state = 95}, [2509] = {.lex_state = 0, .external_lex_state = 64}, - [2510] = {.lex_state = 0, .external_lex_state = 96}, + [2510] = {.lex_state = 0, .external_lex_state = 95}, [2511] = {.lex_state = 0, .external_lex_state = 64}, - [2512] = {.lex_state = 0, .external_lex_state = 96}, + [2512] = {.lex_state = 0, .external_lex_state = 95}, [2513] = {.lex_state = 0, .external_lex_state = 94}, [2514] = {.lex_state = 0, .external_lex_state = 64}, [2515] = {.lex_state = 0, .external_lex_state = 95}, - [2516] = {.lex_state = 0, .external_lex_state = 64}, - [2517] = {.lex_state = 0, .external_lex_state = 95}, - [2518] = {.lex_state = 0, .external_lex_state = 64}, - [2519] = {.lex_state = 0, .external_lex_state = 95}, - [2520] = {.lex_state = 0, .external_lex_state = 96}, - [2521] = {.lex_state = 0, .external_lex_state = 64}, - [2522] = {.lex_state = 0, .external_lex_state = 96}, - [2523] = {.lex_state = 0, .external_lex_state = 96}, + [2516] = {.lex_state = 0, .external_lex_state = 95}, + [2517] = {.lex_state = 0, .external_lex_state = 93}, + [2518] = {.lex_state = 0, .external_lex_state = 95}, + [2519] = {.lex_state = 0, .external_lex_state = 93}, + [2520] = {.lex_state = 0, .external_lex_state = 95}, + [2521] = {.lex_state = 0, .external_lex_state = 93}, + [2522] = {.lex_state = 0, .external_lex_state = 95}, + [2523] = {.lex_state = 0, .external_lex_state = 95}, [2524] = {.lex_state = 0, .external_lex_state = 94}, - [2525] = {.lex_state = 0, .external_lex_state = 95}, - [2526] = {.lex_state = 0, .external_lex_state = 95}, - [2527] = {.lex_state = 0, .external_lex_state = 96}, + [2525] = {.lex_state = 0, .external_lex_state = 93}, + [2526] = {.lex_state = 0, .external_lex_state = 93}, + [2527] = {.lex_state = 0, .external_lex_state = 95}, [2528] = {.lex_state = 0, .external_lex_state = 97}, [2529] = {.lex_state = 0}, - [2530] = {.lex_state = 0, .external_lex_state = 64}, - [2531] = {.lex_state = 0, .external_lex_state = 64}, + [2530] = {.lex_state = 0, .external_lex_state = 95}, + [2531] = {.lex_state = 0, .external_lex_state = 93}, [2532] = {.lex_state = 0}, - [2533] = {.lex_state = 0, .external_lex_state = 95}, - [2534] = {.lex_state = 0, .external_lex_state = 95}, - [2535] = {.lex_state = 0, .external_lex_state = 95}, - [2536] = {.lex_state = 0, .external_lex_state = 95}, - [2537] = {.lex_state = 0, .external_lex_state = 96}, - [2538] = {.lex_state = 0, .external_lex_state = 95}, - [2539] = {.lex_state = 0, .external_lex_state = 95}, - [2540] = {.lex_state = 0, .external_lex_state = 95}, - [2541] = {.lex_state = 0, .external_lex_state = 95}, - [2542] = {.lex_state = 0, .external_lex_state = 96}, - [2543] = {.lex_state = 0, .external_lex_state = 95}, - [2544] = {.lex_state = 0, .external_lex_state = 95}, - [2545] = {.lex_state = 0, .external_lex_state = 95}, - [2546] = {.lex_state = 0, .external_lex_state = 95}, - [2547] = {.lex_state = 0, .external_lex_state = 96}, - [2548] = {.lex_state = 0, .external_lex_state = 95}, - [2549] = {.lex_state = 0, .external_lex_state = 95}, - [2550] = {.lex_state = 0, .external_lex_state = 95}, - [2551] = {.lex_state = 0, .external_lex_state = 95}, - [2552] = {.lex_state = 0, .external_lex_state = 96}, - [2553] = {.lex_state = 0, .external_lex_state = 95}, - [2554] = {.lex_state = 0, .external_lex_state = 95}, - [2555] = {.lex_state = 0, .external_lex_state = 95}, - [2556] = {.lex_state = 0, .external_lex_state = 95}, - [2557] = {.lex_state = 0, .external_lex_state = 96}, - [2558] = {.lex_state = 0, .external_lex_state = 95}, - [2559] = {.lex_state = 0, .external_lex_state = 95}, - [2560] = {.lex_state = 0, .external_lex_state = 95}, - [2561] = {.lex_state = 0, .external_lex_state = 95}, - [2562] = {.lex_state = 0, .external_lex_state = 96}, - [2563] = {.lex_state = 0, .external_lex_state = 95}, - [2564] = {.lex_state = 0, .external_lex_state = 95}, - [2565] = {.lex_state = 0, .external_lex_state = 95}, - [2566] = {.lex_state = 0, .external_lex_state = 95}, - [2567] = {.lex_state = 0, .external_lex_state = 96}, - [2568] = {.lex_state = 0, .external_lex_state = 95}, - [2569] = {.lex_state = 0, .external_lex_state = 95}, - [2570] = {.lex_state = 0, .external_lex_state = 95}, - [2571] = {.lex_state = 0, .external_lex_state = 95}, - [2572] = {.lex_state = 0, .external_lex_state = 96}, - [2573] = {.lex_state = 0, .external_lex_state = 95}, - [2574] = {.lex_state = 0, .external_lex_state = 95}, - [2575] = {.lex_state = 0, .external_lex_state = 95}, - [2576] = {.lex_state = 0, .external_lex_state = 95}, - [2577] = {.lex_state = 0, .external_lex_state = 96}, + [2533] = {.lex_state = 0, .external_lex_state = 93}, + [2534] = {.lex_state = 0, .external_lex_state = 93}, + [2535] = {.lex_state = 0, .external_lex_state = 93}, + [2536] = {.lex_state = 0, .external_lex_state = 93}, + [2537] = {.lex_state = 0, .external_lex_state = 95}, + [2538] = {.lex_state = 0, .external_lex_state = 93}, + [2539] = {.lex_state = 0, .external_lex_state = 93}, + [2540] = {.lex_state = 0, .external_lex_state = 93}, + [2541] = {.lex_state = 0, .external_lex_state = 93}, + [2542] = {.lex_state = 0, .external_lex_state = 95}, + [2543] = {.lex_state = 0, .external_lex_state = 93}, + [2544] = {.lex_state = 0, .external_lex_state = 93}, + [2545] = {.lex_state = 0, .external_lex_state = 93}, + [2546] = {.lex_state = 0, .external_lex_state = 93}, + [2547] = {.lex_state = 0, .external_lex_state = 95}, + [2548] = {.lex_state = 0, .external_lex_state = 93}, + [2549] = {.lex_state = 0, .external_lex_state = 93}, + [2550] = {.lex_state = 0, .external_lex_state = 93}, + [2551] = {.lex_state = 0, .external_lex_state = 93}, + [2552] = {.lex_state = 0, .external_lex_state = 95}, + [2553] = {.lex_state = 0, .external_lex_state = 93}, + [2554] = {.lex_state = 0, .external_lex_state = 93}, + [2555] = {.lex_state = 0, .external_lex_state = 93}, + [2556] = {.lex_state = 0, .external_lex_state = 93}, + [2557] = {.lex_state = 0, .external_lex_state = 95}, + [2558] = {.lex_state = 0, .external_lex_state = 93}, + [2559] = {.lex_state = 0, .external_lex_state = 93}, + [2560] = {.lex_state = 0, .external_lex_state = 93}, + [2561] = {.lex_state = 0, .external_lex_state = 93}, + [2562] = {.lex_state = 0, .external_lex_state = 95}, + [2563] = {.lex_state = 0, .external_lex_state = 93}, + [2564] = {.lex_state = 0, .external_lex_state = 93}, + [2565] = {.lex_state = 0, .external_lex_state = 93}, + [2566] = {.lex_state = 0, .external_lex_state = 93}, + [2567] = {.lex_state = 0, .external_lex_state = 95}, + [2568] = {.lex_state = 0, .external_lex_state = 93}, + [2569] = {.lex_state = 0, .external_lex_state = 93}, + [2570] = {.lex_state = 0, .external_lex_state = 93}, + [2571] = {.lex_state = 0, .external_lex_state = 93}, + [2572] = {.lex_state = 0, .external_lex_state = 95}, + [2573] = {.lex_state = 0, .external_lex_state = 93}, + [2574] = {.lex_state = 0, .external_lex_state = 93}, + [2575] = {.lex_state = 0, .external_lex_state = 93}, + [2576] = {.lex_state = 0, .external_lex_state = 93}, + [2577] = {.lex_state = 0, .external_lex_state = 95}, }; enum { @@ -26520,12 +26527,10 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { [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, + [ts_external_token__emphasis_close_underscore] = true, }, [11] = { - [ts_external_token__line_ending] = true, - [ts_external_token__block_continuation] = true, - [ts_external_token__block_quote_continuation] = 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, @@ -26534,6 +26539,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__thematic_break] = true, [ts_external_token__list_marker_minus] = true, [ts_external_token__list_marker_plus] = true, @@ -26548,13 +26555,17 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { [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__no_indented_chunk] = true, + [ts_external_token__split_token] = true, + [ts_external_token__soft_line_break_marker] = true, [ts_external_token__code_span_start] = true, [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, - [ts_external_token__last_token_whitespace] = true, }, [12] = { + [ts_external_token__line_ending] = true, + [ts_external_token__block_close] = true, + [ts_external_token__block_continuation] = true, + [ts_external_token__block_quote_continuation] = true, [ts_external_token__block_quote_start] = true, [ts_external_token__indented_chunk_start] = true, [ts_external_token_atx_h1_marker] = true, @@ -26563,8 +26574,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__thematic_break] = true, [ts_external_token__list_marker_minus] = true, [ts_external_token__list_marker_plus] = true, @@ -26579,15 +26588,14 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { [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__split_token] = true, - [ts_external_token__soft_line_break_marker] = true, + [ts_external_token__no_indented_chunk] = true, [ts_external_token__code_span_start] = true, [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, + [ts_external_token__last_token_whitespace] = true, }, [13] = { [ts_external_token__line_ending] = true, - [ts_external_token__block_close] = true, [ts_external_token__block_continuation] = true, [ts_external_token__block_quote_continuation] = true, [ts_external_token__block_quote_start] = true, @@ -26619,9 +26627,7 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__last_token_whitespace] = true, }, [14] = { - [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, [ts_external_token_atx_h2_marker] = true, [ts_external_token_atx_h3_marker] = true, @@ -26636,11 +26642,6 @@ 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, @@ -26649,9 +26650,11 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { [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, }, [15] = { [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, @@ -26666,6 +26669,11 @@ 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, @@ -26674,7 +26682,6 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { [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_underscore] = true, }, [16] = { [ts_external_token__block_continuation] = true, @@ -26708,60 +26715,60 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__last_token_whitespace] = true, }, [17] = { - [ts_external_token__line_ending] = true, - [ts_external_token__block_continuation] = true, - [ts_external_token__block_quote_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, [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__thematic_break] = true, [ts_external_token__list_marker_minus] = true, [ts_external_token__list_marker_plus] = true, [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__split_token] = true, + [ts_external_token__soft_line_break_marker] = true, [ts_external_token__code_span_start] = true, [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, - [ts_external_token__last_token_whitespace] = true, }, [18] = { + [ts_external_token__line_ending] = true, + [ts_external_token__block_continuation] = true, + [ts_external_token__block_quote_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, [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__thematic_break] = true, [ts_external_token__list_marker_minus] = true, [ts_external_token__list_marker_plus] = true, [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__split_token] = true, - [ts_external_token__soft_line_break_marker] = true, [ts_external_token__code_span_start] = true, [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, + [ts_external_token__last_token_whitespace] = true, }, [19] = { [ts_external_token__block_close] = true, @@ -26828,6 +26835,19 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__last_token_whitespace] = true, }, [21] = { + [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_underscore] = true, + }, + [22] = { + [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, + }, + [23] = { + [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, @@ -26857,20 +26877,7 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, }, - [22] = { - [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, - }, - [23] = { - [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_underscore] = true, - }, [24] = { - [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, @@ -26963,7 +26970,6 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__emphasis_open_underscore] = true, }, [28] = { - [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, @@ -26993,6 +26999,7 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__emphasis_open_underscore] = true, }, [29] = { + [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, @@ -27047,14 +27054,14 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { [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, + [ts_external_token__emphasis_close_underscore] = true, [ts_external_token__last_token_punctuation] = true, }, [32] = { [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_underscore] = true, + [ts_external_token__emphasis_close_star] = true, [ts_external_token__last_token_punctuation] = true, }, [33] = { @@ -27097,14 +27104,14 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__code_span_close] = 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, }, [37] = { [ts_external_token__code_span_start] = true, [ts_external_token__code_span_close] = 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, }, [38] = { [ts_external_token__code_span_start] = true, @@ -27113,20 +27120,20 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__emphasis_open_underscore] = true, }, [39] = { - [ts_external_token__line_ending] = true, - [ts_external_token__block_continuation] = true, - [ts_external_token__block_quote_continuation] = true, + [ts_external_token__open_block] = true, [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, - [ts_external_token__last_token_whitespace] = true, }, [40] = { - [ts_external_token__open_block] = true, + [ts_external_token__line_ending] = true, + [ts_external_token__block_continuation] = true, + [ts_external_token__block_quote_continuation] = true, [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, + [ts_external_token__last_token_whitespace] = true, }, [41] = { [ts_external_token__line_ending] = true, @@ -27144,7 +27151,7 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { [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_underscore] = true, + [ts_external_token__emphasis_close_star] = true, [ts_external_token__last_token_whitespace] = true, }, [43] = { @@ -27153,7 +27160,7 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { [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, + [ts_external_token__emphasis_close_underscore] = true, [ts_external_token__last_token_whitespace] = true, }, [44] = { @@ -27234,18 +27241,18 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { }, [54] = { [ts_external_token__block_close] = true, - [ts_external_token__fenced_code_block_end_tilde] = true, + [ts_external_token__fenced_code_block_end_backtick] = true, }, [55] = { + [ts_external_token__block_close] = true, + [ts_external_token__fenced_code_block_end_tilde] = true, + }, + [56] = { [ts_external_token__block_continuation] = true, [ts_external_token__block_quote_continuation] = true, [ts_external_token__blank_line_start] = true, [ts_external_token__last_token_whitespace] = true, }, - [56] = { - [ts_external_token__block_close] = true, - [ts_external_token__fenced_code_block_end_backtick] = true, - }, [57] = { [ts_external_token__line_ending] = true, [ts_external_token__block_continuation] = true, @@ -27258,29 +27265,29 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__last_token_whitespace] = true, }, [59] = { - [ts_external_token__code_span_close] = true, - }, - [60] = { [ts_external_token__line_ending] = true, [ts_external_token__block_close] = true, [ts_external_token__block_continuation] = true, [ts_external_token__block_quote_continuation] = true, + [ts_external_token__fenced_code_block_end_tilde] = true, [ts_external_token__last_token_whitespace] = true, }, - [61] = { + [60] = { [ts_external_token__line_ending] = true, [ts_external_token__block_close] = true, [ts_external_token__block_continuation] = true, [ts_external_token__block_quote_continuation] = true, - [ts_external_token__fenced_code_block_end_tilde] = true, + [ts_external_token__fenced_code_block_end_backtick] = true, [ts_external_token__last_token_whitespace] = true, }, + [61] = { + [ts_external_token__code_span_close] = true, + }, [62] = { [ts_external_token__line_ending] = true, [ts_external_token__block_close] = true, [ts_external_token__block_continuation] = true, [ts_external_token__block_quote_continuation] = true, - [ts_external_token__blank_line_start] = true, [ts_external_token__last_token_whitespace] = true, }, [63] = { @@ -27288,7 +27295,7 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_close] = true, [ts_external_token__block_continuation] = true, [ts_external_token__block_quote_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, }, [64] = { @@ -27298,27 +27305,27 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_close] = true, [ts_external_token__block_continuation] = true, [ts_external_token__block_quote_continuation] = true, - [ts_external_token__fenced_code_block_end_tilde] = true, [ts_external_token__last_token_whitespace] = true, }, [66] = { [ts_external_token__block_close] = true, [ts_external_token__block_continuation] = true, [ts_external_token__block_quote_continuation] = 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, }, [67] = { - [ts_external_token__line_ending] = true, + [ts_external_token__block_close] = true, [ts_external_token__block_continuation] = true, [ts_external_token__block_quote_continuation] = true, - [ts_external_token__code_span_close] = true, + [ts_external_token__fenced_code_block_end_backtick] = true, [ts_external_token__last_token_whitespace] = true, }, [68] = { - [ts_external_token__block_close] = true, + [ts_external_token__line_ending] = true, [ts_external_token__block_continuation] = true, [ts_external_token__block_quote_continuation] = true, + [ts_external_token__code_span_close] = true, [ts_external_token__last_token_whitespace] = true, }, [69] = { @@ -27335,7 +27342,7 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { }, [72] = { [ts_external_token__block_close] = true, - [ts_external_token__last_token_punctuation] = true, + [ts_external_token__last_token_whitespace] = true, }, [73] = { [ts_external_token__block_close] = true, @@ -27344,26 +27351,26 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { }, [74] = { [ts_external_token__block_close] = true, + [ts_external_token__fenced_code_block_end_backtick] = true, [ts_external_token__last_token_whitespace] = true, }, [75] = { - [ts_external_token__block_close] = true, - [ts_external_token__blank_line_start] = true, - }, - [76] = { [ts_external_token__block_close] = true, [ts_external_token__fenced_code_block_end_backtick] = true, [ts_external_token__last_token_punctuation] = true, }, - [77] = { + [76] = { [ts_external_token__block_close] = true, [ts_external_token__fenced_code_block_end_tilde] = true, [ts_external_token__last_token_whitespace] = true, }, + [77] = { + [ts_external_token__block_close] = true, + [ts_external_token__blank_line_start] = true, + }, [78] = { [ts_external_token__block_close] = true, - [ts_external_token__fenced_code_block_end_backtick] = true, - [ts_external_token__last_token_whitespace] = true, + [ts_external_token__last_token_punctuation] = true, }, [79] = { [ts_external_token__block_close] = true, @@ -27403,28 +27410,28 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__last_token_whitespace] = true, }, [86] = { - [ts_external_token__block_continuation] = true, - [ts_external_token__block_quote_continuation] = true, - [ts_external_token__split_token] = true, - [ts_external_token__soft_line_break_marker] = true, + [ts_external_token__no_indented_chunk] = true, [ts_external_token__last_token_whitespace] = true, }, [87] = { [ts_external_token__line_ending] = true, [ts_external_token__block_continuation] = true, [ts_external_token__block_quote_continuation] = true, - [ts_external_token__close_block] = true, + [ts_external_token__trigger_error] = true, [ts_external_token__last_token_whitespace] = true, }, [88] = { - [ts_external_token__line_ending] = true, [ts_external_token__block_continuation] = true, [ts_external_token__block_quote_continuation] = true, - [ts_external_token__trigger_error] = true, + [ts_external_token__split_token] = true, + [ts_external_token__soft_line_break_marker] = true, [ts_external_token__last_token_whitespace] = true, }, [89] = { - [ts_external_token__no_indented_chunk] = true, + [ts_external_token__line_ending] = true, + [ts_external_token__block_continuation] = true, + [ts_external_token__block_quote_continuation] = true, + [ts_external_token__close_block] = true, [ts_external_token__last_token_whitespace] = true, }, [90] = { @@ -27444,16 +27451,16 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__soft_line_break_marker] = true, }, [93] = { - [ts_external_token__trigger_error] = true, + [ts_external_token__close_block] = true, }, [94] = { [ts_external_token__line_ending] = true, }, [95] = { - [ts_external_token__close_block] = true, + [ts_external_token__open_block] = true, }, [96] = { - [ts_external_token__open_block] = true, + [ts_external_token__trigger_error] = true, }, [97] = { [ts_external_token__open_block_dont_interrupt_paragraph] = true, @@ -27568,83 +27575,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__last_token_punctuation] = ACTIONS(1), }, [1] = { - [sym_document] = STATE(2489), + [sym_document] = STATE(2493), [sym__block] = STATE(57), [sym_thematic_break] = STATE(57), [sym_atx_heading] = STATE(57), [sym_setext_heading] = STATE(57), [sym_indented_code_block] = STATE(57), - [sym__indented_chunk] = STATE(285), + [sym__indented_chunk] = STATE(307), [sym_fenced_code_block] = STATE(57), [sym_html_block] = STATE(57), - [sym__html_block_1] = STATE(407), - [sym__html_block_2] = STATE(407), - [sym__html_block_3] = STATE(407), - [sym__html_block_4] = STATE(407), - [sym__html_block_5] = STATE(407), - [sym__html_block_6] = STATE(407), - [sym__html_block_7] = STATE(407), + [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_link_reference_definition] = STATE(57), - [sym_paragraph] = STATE(342), - [sym__soft_line_break] = STATE(899), + [sym_paragraph] = STATE(337), + [sym__soft_line_break] = STATE(825), [sym__blank_line] = STATE(57), [sym_block_quote] = STATE(57), [sym_list] = STATE(57), - [sym__list_plus] = STATE(399), - [sym__list_minus] = STATE(399), - [sym__list_star] = STATE(399), - [sym__list_dot] = STATE(399), - [sym__list_parenthesis] = STATE(399), + [sym__list_plus] = STATE(382), + [sym__list_minus] = STATE(382), + [sym__list_star] = STATE(382), + [sym__list_dot] = STATE(382), + [sym__list_parenthesis] = STATE(382), [sym_list_marker_plus] = STATE(39), [sym_list_marker_minus] = STATE(40), [sym_list_marker_star] = STATE(41), [sym_list_marker_dot] = STATE(42), [sym_list_marker_parenthesis] = STATE(43), - [sym__list_item_plus] = STATE(299), - [sym__list_item_minus] = STATE(301), - [sym__list_item_star] = STATE(302), - [sym__list_item_dot] = STATE(307), - [sym__list_item_parenthesis] = STATE(303), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), - [sym_link_label] = STATE(2478), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym__list_item_plus] = STATE(288), + [sym__list_item_minus] = STATE(280), + [sym__list_item_star] = STATE(278), + [sym__list_item_dot] = STATE(308), + [sym__list_item_parenthesis] = STATE(283), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), + [sym_link_label] = STATE(2488), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(454), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [aux_sym__ignore_matching_tokens] = STATE(28), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(171), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [aux_sym__ignore_matching_tokens] = STATE(37), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(190), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), [aux_sym_document_repeat1] = STATE(57), - [aux_sym__list_plus_repeat1] = STATE(299), - [aux_sym__list_minus_repeat1] = STATE(301), - [aux_sym__list_star_repeat1] = STATE(302), - [aux_sym__list_dot_repeat1] = STATE(307), - [aux_sym__list_parenthesis_repeat1] = STATE(303), + [aux_sym__list_plus_repeat1] = STATE(288), + [aux_sym__list_minus_repeat1] = STATE(280), + [aux_sym__list_star_repeat1] = STATE(278), + [aux_sym__list_dot_repeat1] = STATE(308), + [aux_sym__list_parenthesis_repeat1] = STATE(283), [ts_builtin_sym_end] = ACTIONS(3), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), @@ -27729,82 +27736,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__last_token_whitespace] = ACTIONS(43), }, [2] = { - [sym__block] = STATE(65), - [sym_thematic_break] = STATE(65), - [sym_atx_heading] = STATE(65), - [sym_setext_heading] = STATE(65), - [sym_indented_code_block] = STATE(65), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(65), - [sym_html_block] = STATE(65), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(65), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(65), - [sym_block_quote] = STATE(65), - [sym_list] = STATE(65), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(47), + [sym_thematic_break] = STATE(47), + [sym_atx_heading] = STATE(47), + [sym_setext_heading] = STATE(47), + [sym_indented_code_block] = STATE(47), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(47), + [sym_html_block] = STATE(47), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(47), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(364), + [sym_block_quote] = STATE(47), + [sym_list] = STATE(47), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__list_item_content] = STATE(2499), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [aux_sym__ignore_matching_tokens] = STATE(25), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(65), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [aux_sym__ignore_matching_tokens] = STATE(13), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(47), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -27858,18 +27866,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_close] = ACTIONS(93), - [sym__block_continuation] = ACTIONS(95), - [sym__block_quote_continuation] = ACTIONS(95), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_continuation] = ACTIONS(93), + [sym__block_quote_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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -27880,92 +27887,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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), - [sym__last_token_whitespace] = ACTIONS(95), + [sym__last_token_whitespace] = ACTIONS(93), }, [3] = { - [sym__block] = STATE(56), - [sym_thematic_break] = STATE(56), - [sym_atx_heading] = STATE(56), - [sym_setext_heading] = STATE(56), - [sym_indented_code_block] = STATE(56), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(56), - [sym_html_block] = STATE(56), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(56), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(370), - [sym_block_quote] = STATE(56), - [sym_list] = STATE(56), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(47), + [sym_thematic_break] = STATE(47), + [sym_atx_heading] = STATE(47), + [sym_setext_heading] = STATE(47), + [sym_indented_code_block] = STATE(47), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(47), + [sym_html_block] = STATE(47), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(47), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(364), + [sym_block_quote] = STATE(47), + [sym_list] = STATE(47), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__list_item_content] = STATE(2373), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__list_item_content] = STATE(2435), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [aux_sym__ignore_matching_tokens] = STATE(202), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(56), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [aux_sym__ignore_matching_tokens] = STATE(201), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(47), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -28019,17 +28026,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(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_continuation] = ACTIONS(109), + [sym__block_quote_continuation] = 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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -28040,92 +28047,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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), - [sym__last_token_whitespace] = ACTIONS(111), + [sym__last_token_whitespace] = ACTIONS(109), }, [4] = { - [sym__block] = STATE(56), - [sym_thematic_break] = STATE(56), - [sym_atx_heading] = STATE(56), - [sym_setext_heading] = STATE(56), - [sym_indented_code_block] = STATE(56), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(56), - [sym_html_block] = STATE(56), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(56), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(370), - [sym_block_quote] = STATE(56), - [sym_list] = STATE(56), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(47), + [sym_thematic_break] = STATE(47), + [sym_atx_heading] = STATE(47), + [sym_setext_heading] = STATE(47), + [sym_indented_code_block] = STATE(47), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(47), + [sym_html_block] = STATE(47), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(47), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(364), + [sym_block_quote] = STATE(47), + [sym_list] = STATE(47), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__list_item_content] = STATE(2516), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__list_item_content] = STATE(2442), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [aux_sym__ignore_matching_tokens] = STATE(202), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(56), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [aux_sym__ignore_matching_tokens] = STATE(201), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(47), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -28179,17 +28186,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(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_continuation] = ACTIONS(109), + [sym__block_quote_continuation] = 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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -28200,92 +28207,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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), - [sym__last_token_whitespace] = ACTIONS(111), + [sym__last_token_whitespace] = ACTIONS(109), }, [5] = { - [sym__block] = STATE(56), - [sym_thematic_break] = STATE(56), - [sym_atx_heading] = STATE(56), - [sym_setext_heading] = STATE(56), - [sym_indented_code_block] = STATE(56), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(56), - [sym_html_block] = STATE(56), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(56), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(370), - [sym_block_quote] = STATE(56), - [sym_list] = STATE(56), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(47), + [sym_thematic_break] = STATE(47), + [sym_atx_heading] = STATE(47), + [sym_setext_heading] = STATE(47), + [sym_indented_code_block] = STATE(47), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(47), + [sym_html_block] = STATE(47), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(47), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(364), + [sym_block_quote] = STATE(47), + [sym_list] = STATE(47), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__list_item_content] = STATE(2379), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__list_item_content] = STATE(2434), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [aux_sym__ignore_matching_tokens] = STATE(202), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(56), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [aux_sym__ignore_matching_tokens] = STATE(201), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(47), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -28339,17 +28346,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(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_continuation] = ACTIONS(109), + [sym__block_quote_continuation] = 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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -28360,92 +28367,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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), - [sym__last_token_whitespace] = ACTIONS(111), + [sym__last_token_whitespace] = ACTIONS(109), }, [6] = { - [sym__block] = STATE(56), - [sym_thematic_break] = STATE(56), - [sym_atx_heading] = STATE(56), - [sym_setext_heading] = STATE(56), - [sym_indented_code_block] = STATE(56), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(56), - [sym_html_block] = STATE(56), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(56), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(370), - [sym_block_quote] = STATE(56), - [sym_list] = STATE(56), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(49), + [sym_thematic_break] = STATE(49), + [sym_atx_heading] = STATE(49), + [sym_setext_heading] = STATE(49), + [sym_indented_code_block] = STATE(49), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(49), + [sym_html_block] = STATE(49), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(49), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(49), + [sym_block_quote] = STATE(49), + [sym_list] = STATE(49), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__list_item_content] = STATE(2518), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [aux_sym__ignore_matching_tokens] = STATE(202), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(56), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [aux_sym__ignore_matching_tokens] = STATE(160), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(49), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -28499,17 +28505,18 @@ 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(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_close] = ACTIONS(111), + [sym__block_continuation] = ACTIONS(113), + [sym__block_quote_continuation] = 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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -28520,92 +28527,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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), - [sym__last_token_whitespace] = ACTIONS(111), + [sym__last_token_whitespace] = ACTIONS(113), }, [7] = { - [sym__block] = STATE(56), - [sym_thematic_break] = STATE(56), - [sym_atx_heading] = STATE(56), - [sym_setext_heading] = STATE(56), - [sym_indented_code_block] = STATE(56), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(56), - [sym_html_block] = STATE(56), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(56), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(370), - [sym_block_quote] = STATE(56), - [sym_list] = STATE(56), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(47), + [sym_thematic_break] = STATE(47), + [sym_atx_heading] = STATE(47), + [sym_setext_heading] = STATE(47), + [sym_indented_code_block] = STATE(47), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(47), + [sym_html_block] = STATE(47), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(47), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(364), + [sym_block_quote] = STATE(47), + [sym_list] = STATE(47), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__list_item_content] = STATE(2383), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__list_item_content] = STATE(2445), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [aux_sym__ignore_matching_tokens] = STATE(202), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(56), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [aux_sym__ignore_matching_tokens] = STATE(201), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(47), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -28659,17 +28666,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(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_continuation] = ACTIONS(109), + [sym__block_quote_continuation] = 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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -28680,92 +28687,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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), - [sym__last_token_whitespace] = ACTIONS(111), + [sym__last_token_whitespace] = ACTIONS(109), }, [8] = { - [sym__block] = STATE(56), - [sym_thematic_break] = STATE(56), - [sym_atx_heading] = STATE(56), - [sym_setext_heading] = STATE(56), - [sym_indented_code_block] = STATE(56), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(56), - [sym_html_block] = STATE(56), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(56), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(370), - [sym_block_quote] = STATE(56), - [sym_list] = STATE(56), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(47), + [sym_thematic_break] = STATE(47), + [sym_atx_heading] = STATE(47), + [sym_setext_heading] = STATE(47), + [sym_indented_code_block] = STATE(47), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(47), + [sym_html_block] = STATE(47), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(47), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(364), + [sym_block_quote] = STATE(47), + [sym_list] = STATE(47), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__list_item_content] = STATE(2455), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__list_item_content] = STATE(2446), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [aux_sym__ignore_matching_tokens] = STATE(202), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(56), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [aux_sym__ignore_matching_tokens] = STATE(201), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(47), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -28819,17 +28826,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(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_continuation] = ACTIONS(109), + [sym__block_quote_continuation] = 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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -28840,92 +28847,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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), - [sym__last_token_whitespace] = ACTIONS(111), + [sym__last_token_whitespace] = ACTIONS(109), }, [9] = { - [sym__block] = STATE(56), - [sym_thematic_break] = STATE(56), - [sym_atx_heading] = STATE(56), - [sym_setext_heading] = STATE(56), - [sym_indented_code_block] = STATE(56), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(56), - [sym_html_block] = STATE(56), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(56), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(370), - [sym_block_quote] = STATE(56), - [sym_list] = STATE(56), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(65), + [sym_thematic_break] = STATE(65), + [sym_atx_heading] = STATE(65), + [sym_setext_heading] = STATE(65), + [sym_indented_code_block] = STATE(65), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(65), + [sym_html_block] = STATE(65), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(65), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(65), + [sym_block_quote] = STATE(65), + [sym_list] = STATE(65), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__list_item_content] = STATE(2385), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [aux_sym__ignore_matching_tokens] = STATE(202), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(56), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [aux_sym__ignore_matching_tokens] = STATE(29), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(65), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -28979,17 +28985,18 @@ 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(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_close] = ACTIONS(115), + [sym__block_continuation] = ACTIONS(117), + [sym__block_quote_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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -29000,92 +29007,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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), - [sym__last_token_whitespace] = ACTIONS(111), + [sym__last_token_whitespace] = ACTIONS(117), }, [10] = { - [sym__block] = STATE(56), - [sym_thematic_break] = STATE(56), - [sym_atx_heading] = STATE(56), - [sym_setext_heading] = STATE(56), - [sym_indented_code_block] = STATE(56), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(56), - [sym_html_block] = STATE(56), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(56), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(370), - [sym_block_quote] = STATE(56), - [sym_list] = STATE(56), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(50), + [sym_thematic_break] = STATE(50), + [sym_atx_heading] = STATE(50), + [sym_setext_heading] = STATE(50), + [sym_indented_code_block] = STATE(50), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(50), + [sym_html_block] = STATE(50), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(50), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(50), + [sym_block_quote] = STATE(50), + [sym_list] = STATE(50), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__list_item_content] = STATE(2484), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [aux_sym__ignore_matching_tokens] = STATE(202), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(56), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [aux_sym__ignore_matching_tokens] = STATE(11), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(50), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -29139,17 +29145,18 @@ 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(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_close] = ACTIONS(119), + [sym__block_continuation] = ACTIONS(121), + [sym__block_quote_continuation] = ACTIONS(121), + [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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -29160,92 +29167,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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), - [sym__last_token_whitespace] = ACTIONS(111), + [sym__last_token_whitespace] = ACTIONS(121), }, [11] = { - [sym__block] = STATE(56), - [sym_thematic_break] = STATE(56), - [sym_atx_heading] = STATE(56), - [sym_setext_heading] = STATE(56), - [sym_indented_code_block] = STATE(56), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(56), - [sym_html_block] = STATE(56), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(56), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(370), - [sym_block_quote] = STATE(56), - [sym_list] = STATE(56), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(51), + [sym_thematic_break] = STATE(51), + [sym_atx_heading] = STATE(51), + [sym_setext_heading] = STATE(51), + [sym_indented_code_block] = STATE(51), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(51), + [sym_html_block] = STATE(51), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(51), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(51), + [sym_block_quote] = STATE(51), + [sym_list] = STATE(51), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__list_item_content] = STATE(2470), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [aux_sym__ignore_matching_tokens] = STATE(202), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(56), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [aux_sym__ignore_matching_tokens] = STATE(160), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(51), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -29299,17 +29305,18 @@ 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(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_close] = ACTIONS(123), + [sym__block_continuation] = ACTIONS(113), + [sym__block_quote_continuation] = 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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -29320,92 +29327,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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), - [sym__last_token_whitespace] = ACTIONS(111), + [sym__last_token_whitespace] = ACTIONS(113), }, [12] = { - [sym__block] = STATE(56), - [sym_thematic_break] = STATE(56), - [sym_atx_heading] = STATE(56), - [sym_setext_heading] = STATE(56), - [sym_indented_code_block] = STATE(56), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(56), - [sym_html_block] = STATE(56), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(56), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(370), - [sym_block_quote] = STATE(56), - [sym_list] = STATE(56), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(47), + [sym_thematic_break] = STATE(47), + [sym_atx_heading] = STATE(47), + [sym_setext_heading] = STATE(47), + [sym_indented_code_block] = STATE(47), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(47), + [sym_html_block] = STATE(47), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(47), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(364), + [sym_block_quote] = STATE(47), + [sym_list] = STATE(47), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__list_item_content] = STATE(2428), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__list_item_content] = STATE(2443), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [aux_sym__ignore_matching_tokens] = STATE(44), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(56), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [aux_sym__ignore_matching_tokens] = STATE(201), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(47), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -29459,17 +29466,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(113), - [sym__block_quote_continuation] = ACTIONS(113), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_continuation] = ACTIONS(109), + [sym__block_quote_continuation] = 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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -29480,92 +29487,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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), - [sym__last_token_whitespace] = ACTIONS(113), + [sym__last_token_whitespace] = ACTIONS(109), }, [13] = { - [sym__block] = STATE(56), - [sym_thematic_break] = STATE(56), - [sym_atx_heading] = STATE(56), - [sym_setext_heading] = STATE(56), - [sym_indented_code_block] = STATE(56), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(56), - [sym_html_block] = STATE(56), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(56), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(370), - [sym_block_quote] = STATE(56), - [sym_list] = STATE(56), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(47), + [sym_thematic_break] = STATE(47), + [sym_atx_heading] = STATE(47), + [sym_setext_heading] = STATE(47), + [sym_indented_code_block] = STATE(47), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(47), + [sym_html_block] = STATE(47), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(47), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(364), + [sym_block_quote] = STATE(47), + [sym_list] = STATE(47), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__list_item_content] = STATE(2429), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__list_item_content] = STATE(2331), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [aux_sym__ignore_matching_tokens] = STATE(3), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(56), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [aux_sym__ignore_matching_tokens] = STATE(201), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(47), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -29619,17 +29626,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(115), - [sym__block_quote_continuation] = ACTIONS(115), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_continuation] = ACTIONS(109), + [sym__block_quote_continuation] = 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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -29640,92 +29647,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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), - [sym__last_token_whitespace] = ACTIONS(115), + [sym__last_token_whitespace] = ACTIONS(109), }, [14] = { - [sym__block] = STATE(56), - [sym_thematic_break] = STATE(56), - [sym_atx_heading] = STATE(56), - [sym_setext_heading] = STATE(56), - [sym_indented_code_block] = STATE(56), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(56), - [sym_html_block] = STATE(56), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(56), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(370), - [sym_block_quote] = STATE(56), - [sym_list] = STATE(56), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(47), + [sym_thematic_break] = STATE(47), + [sym_atx_heading] = STATE(47), + [sym_setext_heading] = STATE(47), + [sym_indented_code_block] = STATE(47), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(47), + [sym_html_block] = STATE(47), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(47), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(364), + [sym_block_quote] = STATE(47), + [sym_list] = STATE(47), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__list_item_content] = STATE(2431), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__list_item_content] = STATE(2460), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [aux_sym__ignore_matching_tokens] = STATE(5), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(56), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [aux_sym__ignore_matching_tokens] = STATE(201), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(47), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -29779,17 +29786,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(117), - [sym__block_quote_continuation] = ACTIONS(117), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_continuation] = ACTIONS(109), + [sym__block_quote_continuation] = 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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -29800,92 +29807,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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), - [sym__last_token_whitespace] = ACTIONS(117), + [sym__last_token_whitespace] = ACTIONS(109), }, [15] = { - [sym__block] = STATE(56), - [sym_thematic_break] = STATE(56), - [sym_atx_heading] = STATE(56), - [sym_setext_heading] = STATE(56), - [sym_indented_code_block] = STATE(56), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(56), - [sym_html_block] = STATE(56), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(56), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(370), - [sym_block_quote] = STATE(56), - [sym_list] = STATE(56), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(47), + [sym_thematic_break] = STATE(47), + [sym_atx_heading] = STATE(47), + [sym_setext_heading] = STATE(47), + [sym_indented_code_block] = STATE(47), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(47), + [sym_html_block] = STATE(47), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(47), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(364), + [sym_block_quote] = STATE(47), + [sym_list] = STATE(47), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__list_item_content] = STATE(2433), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__list_item_content] = STATE(2385), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [aux_sym__ignore_matching_tokens] = STATE(7), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(56), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [aux_sym__ignore_matching_tokens] = STATE(17), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(47), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -29939,17 +29946,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(119), - [sym__block_quote_continuation] = ACTIONS(119), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_continuation] = ACTIONS(125), + [sym__block_quote_continuation] = ACTIONS(125), + [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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -29960,13 +29967,13 @@ 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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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), - [sym__last_token_whitespace] = ACTIONS(119), + [sym__last_token_whitespace] = ACTIONS(125), }, [16] = { [sym__block] = STATE(56), @@ -29974,78 +29981,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_atx_heading] = STATE(56), [sym_setext_heading] = STATE(56), [sym_indented_code_block] = STATE(56), - [sym__indented_chunk] = STATE(324), + [sym__indented_chunk] = STATE(285), [sym_fenced_code_block] = STATE(56), [sym_html_block] = STATE(56), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), [sym_link_reference_definition] = STATE(56), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(370), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(56), [sym_block_quote] = STATE(56), [sym_list] = STATE(56), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__list_item_content] = STATE(2434), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [aux_sym__ignore_matching_tokens] = STATE(9), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [aux_sym__ignore_matching_tokens] = STATE(160), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), [aux_sym_document_repeat1] = STATE(56), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -30099,17 +30105,18 @@ 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(121), - [sym__block_quote_continuation] = ACTIONS(121), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_close] = ACTIONS(127), + [sym__block_continuation] = ACTIONS(113), + [sym__block_quote_continuation] = 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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -30120,91 +30127,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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), - [sym__last_token_whitespace] = ACTIONS(121), + [sym__last_token_whitespace] = ACTIONS(113), }, [17] = { - [sym__block] = STATE(60), - [sym_thematic_break] = STATE(60), - [sym_atx_heading] = STATE(60), - [sym_setext_heading] = STATE(60), - [sym_indented_code_block] = STATE(60), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(60), - [sym_html_block] = STATE(60), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(60), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(60), - [sym_block_quote] = STATE(60), - [sym_list] = STATE(60), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(47), + [sym_thematic_break] = STATE(47), + [sym_atx_heading] = STATE(47), + [sym_setext_heading] = STATE(47), + [sym_indented_code_block] = STATE(47), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(47), + [sym_html_block] = STATE(47), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(47), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(364), + [sym_block_quote] = STATE(47), + [sym_list] = STATE(47), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__list_item_content] = STATE(2471), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [aux_sym__ignore_matching_tokens] = STATE(275), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(60), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [aux_sym__ignore_matching_tokens] = STATE(201), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(47), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -30258,18 +30266,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_close] = ACTIONS(123), - [sym__block_continuation] = ACTIONS(125), - [sym__block_quote_continuation] = ACTIONS(125), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_continuation] = ACTIONS(109), + [sym__block_quote_continuation] = 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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -30280,91 +30287,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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), - [sym__last_token_whitespace] = ACTIONS(125), + [sym__last_token_whitespace] = ACTIONS(109), }, [18] = { - [sym__block] = STATE(63), - [sym_thematic_break] = STATE(63), - [sym_atx_heading] = STATE(63), - [sym_setext_heading] = STATE(63), - [sym_indented_code_block] = STATE(63), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(63), - [sym_html_block] = STATE(63), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(63), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(63), - [sym_block_quote] = STATE(63), - [sym_list] = STATE(63), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(47), + [sym_thematic_break] = STATE(47), + [sym_atx_heading] = STATE(47), + [sym_setext_heading] = STATE(47), + [sym_indented_code_block] = STATE(47), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(47), + [sym_html_block] = STATE(47), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(47), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(364), + [sym_block_quote] = STATE(47), + [sym_list] = STATE(47), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__list_item_content] = STATE(2472), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [aux_sym__ignore_matching_tokens] = STATE(17), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(63), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [aux_sym__ignore_matching_tokens] = STATE(201), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(47), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -30418,18 +30426,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_close] = ACTIONS(127), - [sym__block_continuation] = ACTIONS(129), - [sym__block_quote_continuation] = ACTIONS(129), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_continuation] = ACTIONS(109), + [sym__block_quote_continuation] = 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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -30440,91 +30447,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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), - [sym__last_token_whitespace] = ACTIONS(129), + [sym__last_token_whitespace] = ACTIONS(109), }, [19] = { - [sym__block] = STATE(64), - [sym_thematic_break] = STATE(64), - [sym_atx_heading] = STATE(64), - [sym_setext_heading] = STATE(64), - [sym_indented_code_block] = STATE(64), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(64), - [sym_html_block] = STATE(64), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(64), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(64), - [sym_block_quote] = STATE(64), - [sym_list] = STATE(64), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(47), + [sym_thematic_break] = STATE(47), + [sym_atx_heading] = STATE(47), + [sym_setext_heading] = STATE(47), + [sym_indented_code_block] = STATE(47), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(47), + [sym_html_block] = STATE(47), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(47), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(364), + [sym_block_quote] = STATE(47), + [sym_list] = STATE(47), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__list_item_content] = STATE(2494), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [aux_sym__ignore_matching_tokens] = STATE(275), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(64), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [aux_sym__ignore_matching_tokens] = STATE(12), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(47), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -30578,18 +30586,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_close] = ACTIONS(131), - [sym__block_continuation] = ACTIONS(125), - [sym__block_quote_continuation] = ACTIONS(125), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_continuation] = ACTIONS(129), + [sym__block_quote_continuation] = ACTIONS(129), + [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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -30600,91 +30607,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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), - [sym__last_token_whitespace] = ACTIONS(125), + [sym__last_token_whitespace] = ACTIONS(129), }, [20] = { - [sym__block] = STATE(66), - [sym_thematic_break] = STATE(66), - [sym_atx_heading] = STATE(66), - [sym_setext_heading] = STATE(66), - [sym_indented_code_block] = STATE(66), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(66), - [sym_html_block] = STATE(66), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(66), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(66), - [sym_block_quote] = STATE(66), - [sym_list] = STATE(66), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(67), + [sym_thematic_break] = STATE(67), + [sym_atx_heading] = STATE(67), + [sym_setext_heading] = STATE(67), + [sym_indented_code_block] = STATE(67), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(67), + [sym_html_block] = STATE(67), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(67), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(67), + [sym_block_quote] = STATE(67), + [sym_list] = STATE(67), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [aux_sym__ignore_matching_tokens] = STATE(19), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(66), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [aux_sym__ignore_matching_tokens] = STATE(21), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(67), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -30738,18 +30745,18 @@ 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_close] = ACTIONS(133), - [sym__block_continuation] = ACTIONS(135), - [sym__block_quote_continuation] = ACTIONS(135), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_close] = ACTIONS(131), + [sym__block_continuation] = ACTIONS(133), + [sym__block_quote_continuation] = 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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -30760,91 +30767,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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), - [sym__last_token_whitespace] = ACTIONS(135), + [sym__last_token_whitespace] = ACTIONS(133), }, [21] = { - [sym__block] = STATE(46), - [sym_thematic_break] = STATE(46), - [sym_atx_heading] = STATE(46), - [sym_setext_heading] = STATE(46), - [sym_indented_code_block] = STATE(46), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(46), - [sym_html_block] = STATE(46), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(46), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(46), - [sym_block_quote] = STATE(46), - [sym_list] = STATE(46), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(68), + [sym_thematic_break] = STATE(68), + [sym_atx_heading] = STATE(68), + [sym_setext_heading] = STATE(68), + [sym_indented_code_block] = STATE(68), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(68), + [sym_html_block] = STATE(68), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(68), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(68), + [sym_block_quote] = STATE(68), + [sym_list] = STATE(68), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [aux_sym__ignore_matching_tokens] = STATE(275), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(46), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [aux_sym__ignore_matching_tokens] = STATE(160), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(68), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -30898,18 +30905,18 @@ 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_close] = ACTIONS(137), - [sym__block_continuation] = ACTIONS(125), - [sym__block_quote_continuation] = ACTIONS(125), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_close] = ACTIONS(135), + [sym__block_continuation] = ACTIONS(113), + [sym__block_quote_continuation] = 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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -30920,91 +30927,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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), - [sym__last_token_whitespace] = ACTIONS(125), + [sym__last_token_whitespace] = ACTIONS(113), }, [22] = { - [sym__block] = STATE(71), - [sym_thematic_break] = STATE(71), - [sym_atx_heading] = STATE(71), - [sym_setext_heading] = STATE(71), - [sym_indented_code_block] = STATE(71), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(71), - [sym_html_block] = STATE(71), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(71), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(71), - [sym_block_quote] = STATE(71), - [sym_list] = STATE(71), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(48), + [sym_thematic_break] = STATE(48), + [sym_atx_heading] = STATE(48), + [sym_setext_heading] = STATE(48), + [sym_indented_code_block] = STATE(48), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(48), + [sym_html_block] = STATE(48), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(48), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(48), + [sym_block_quote] = STATE(48), + [sym_list] = STATE(48), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [aux_sym__ignore_matching_tokens] = STATE(21), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(71), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [aux_sym__ignore_matching_tokens] = STATE(6), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(48), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -31058,18 +31065,18 @@ 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_close] = ACTIONS(139), - [sym__block_continuation] = ACTIONS(141), - [sym__block_quote_continuation] = ACTIONS(141), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_close] = ACTIONS(137), + [sym__block_continuation] = ACTIONS(139), + [sym__block_quote_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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -31080,91 +31087,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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), - [sym__last_token_whitespace] = ACTIONS(141), + [sym__last_token_whitespace] = ACTIONS(139), }, [23] = { - [sym__block] = STATE(69), - [sym_thematic_break] = STATE(69), - [sym_atx_heading] = STATE(69), - [sym_setext_heading] = STATE(69), - [sym_indented_code_block] = STATE(69), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(69), - [sym_html_block] = STATE(69), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(69), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(69), - [sym_block_quote] = STATE(69), - [sym_list] = STATE(69), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(47), + [sym_thematic_break] = STATE(47), + [sym_atx_heading] = STATE(47), + [sym_setext_heading] = STATE(47), + [sym_indented_code_block] = STATE(47), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(47), + [sym_html_block] = STATE(47), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(47), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(364), + [sym_block_quote] = STATE(47), + [sym_list] = STATE(47), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__list_item_content] = STATE(2501), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [aux_sym__ignore_matching_tokens] = STATE(275), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(69), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [aux_sym__ignore_matching_tokens] = STATE(14), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(47), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -31218,18 +31226,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_close] = ACTIONS(143), - [sym__block_continuation] = ACTIONS(125), - [sym__block_quote_continuation] = ACTIONS(125), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_continuation] = ACTIONS(141), + [sym__block_quote_continuation] = ACTIONS(141), + [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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -31240,91 +31247,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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), - [sym__last_token_whitespace] = ACTIONS(125), + [sym__last_token_whitespace] = ACTIONS(141), }, [24] = { - [sym__block] = STATE(68), - [sym_thematic_break] = STATE(68), - [sym_atx_heading] = STATE(68), - [sym_setext_heading] = STATE(68), - [sym_indented_code_block] = STATE(68), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(68), - [sym_html_block] = STATE(68), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(68), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(68), - [sym_block_quote] = STATE(68), - [sym_list] = STATE(68), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(55), + [sym_thematic_break] = STATE(55), + [sym_atx_heading] = STATE(55), + [sym_setext_heading] = STATE(55), + [sym_indented_code_block] = STATE(55), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(55), + [sym_html_block] = STATE(55), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(55), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(55), + [sym_block_quote] = STATE(55), + [sym_list] = STATE(55), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [aux_sym__ignore_matching_tokens] = STATE(23), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(68), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [aux_sym__ignore_matching_tokens] = STATE(16), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(55), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -31378,18 +31385,18 @@ 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_close] = ACTIONS(145), - [sym__block_continuation] = ACTIONS(147), - [sym__block_quote_continuation] = ACTIONS(147), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_close] = ACTIONS(143), + [sym__block_continuation] = ACTIONS(145), + [sym__block_quote_continuation] = 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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -31400,91 +31407,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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), - [sym__last_token_whitespace] = ACTIONS(147), + [sym__last_token_whitespace] = ACTIONS(145), }, [25] = { - [sym__block] = STATE(58), - [sym_thematic_break] = STATE(58), - [sym_atx_heading] = STATE(58), - [sym_setext_heading] = STATE(58), - [sym_indented_code_block] = STATE(58), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(58), - [sym_html_block] = STATE(58), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(58), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(58), - [sym_block_quote] = STATE(58), - [sym_list] = STATE(58), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(47), + [sym_thematic_break] = STATE(47), + [sym_atx_heading] = STATE(47), + [sym_setext_heading] = STATE(47), + [sym_indented_code_block] = STATE(47), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(47), + [sym_html_block] = STATE(47), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(47), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(364), + [sym_block_quote] = STATE(47), + [sym_list] = STATE(47), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__list_item_content] = STATE(2362), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [aux_sym__ignore_matching_tokens] = STATE(275), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(58), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [aux_sym__ignore_matching_tokens] = STATE(18), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(47), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -31538,18 +31546,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_close] = ACTIONS(149), - [sym__block_continuation] = ACTIONS(125), - [sym__block_quote_continuation] = ACTIONS(125), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_continuation] = ACTIONS(147), + [sym__block_quote_continuation] = 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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -31560,91 +31567,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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), - [sym__last_token_whitespace] = ACTIONS(125), + [sym__last_token_whitespace] = ACTIONS(147), }, [26] = { - [sym__block] = STATE(62), - [sym_thematic_break] = STATE(62), - [sym_atx_heading] = STATE(62), - [sym_setext_heading] = STATE(62), - [sym_indented_code_block] = STATE(62), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(62), - [sym_html_block] = STATE(62), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(62), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(62), - [sym_block_quote] = STATE(62), - [sym_list] = STATE(62), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(64), + [sym_thematic_break] = STATE(64), + [sym_atx_heading] = STATE(64), + [sym_setext_heading] = STATE(64), + [sym_indented_code_block] = STATE(64), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(64), + [sym_html_block] = STATE(64), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(64), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(64), + [sym_block_quote] = STATE(64), + [sym_list] = STATE(64), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [aux_sym__ignore_matching_tokens] = STATE(275), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(62), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [aux_sym__ignore_matching_tokens] = STATE(30), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(64), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -31698,18 +31705,18 @@ 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_close] = ACTIONS(151), - [sym__block_continuation] = ACTIONS(125), - [sym__block_quote_continuation] = ACTIONS(125), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_close] = ACTIONS(149), + [sym__block_continuation] = ACTIONS(151), + [sym__block_quote_continuation] = 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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -31720,91 +31727,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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), - [sym__last_token_whitespace] = ACTIONS(125), + [sym__last_token_whitespace] = ACTIONS(151), }, [27] = { - [sym__block] = STATE(61), - [sym_thematic_break] = STATE(61), - [sym_atx_heading] = STATE(61), - [sym_setext_heading] = STATE(61), - [sym_indented_code_block] = STATE(61), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(61), - [sym_html_block] = STATE(61), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(61), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(61), - [sym_block_quote] = STATE(61), - [sym_list] = STATE(61), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(69), + [sym_thematic_break] = STATE(69), + [sym_atx_heading] = STATE(69), + [sym_setext_heading] = STATE(69), + [sym_indented_code_block] = STATE(69), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(69), + [sym_html_block] = STATE(69), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(69), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(69), + [sym_block_quote] = STATE(69), + [sym_list] = STATE(69), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [aux_sym__ignore_matching_tokens] = STATE(26), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(61), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [aux_sym__ignore_matching_tokens] = STATE(160), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(69), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -31859,17 +31866,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), [sym__block_close] = ACTIONS(153), - [sym__block_continuation] = ACTIONS(155), - [sym__block_quote_continuation] = ACTIONS(155), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_continuation] = ACTIONS(113), + [sym__block_quote_continuation] = 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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -31880,92 +31887,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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), - [sym__last_token_whitespace] = ACTIONS(155), + [sym__last_token_whitespace] = ACTIONS(113), }, [28] = { - [sym__block] = STATE(67), - [sym_thematic_break] = STATE(67), - [sym_atx_heading] = STATE(67), - [sym_setext_heading] = STATE(67), - [sym_indented_code_block] = STATE(67), + [sym__block] = STATE(71), + [sym_thematic_break] = STATE(71), + [sym_atx_heading] = STATE(71), + [sym_setext_heading] = STATE(71), + [sym_indented_code_block] = STATE(71), [sym__indented_chunk] = STATE(285), - [sym_fenced_code_block] = STATE(67), - [sym_html_block] = STATE(67), - [sym__html_block_1] = STATE(407), - [sym__html_block_2] = STATE(407), - [sym__html_block_3] = STATE(407), - [sym__html_block_4] = STATE(407), - [sym__html_block_5] = STATE(407), - [sym__html_block_6] = STATE(407), - [sym__html_block_7] = STATE(407), - [sym_link_reference_definition] = STATE(67), - [sym_paragraph] = STATE(342), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(67), - [sym_block_quote] = STATE(67), - [sym_list] = STATE(67), - [sym__list_plus] = STATE(399), - [sym__list_minus] = STATE(399), - [sym__list_star] = STATE(399), - [sym__list_dot] = STATE(399), - [sym__list_parenthesis] = STATE(399), - [sym_list_marker_plus] = STATE(39), - [sym_list_marker_minus] = STATE(40), - [sym_list_marker_star] = STATE(41), - [sym_list_marker_dot] = STATE(42), - [sym_list_marker_parenthesis] = STATE(43), - [sym__list_item_plus] = STATE(299), - [sym__list_item_minus] = STATE(301), - [sym__list_item_star] = STATE(302), - [sym__list_item_dot] = STATE(307), - [sym__list_item_parenthesis] = STATE(303), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), - [sym_link_label] = STATE(2478), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), - [sym__whitespace] = STATE(454), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [aux_sym__ignore_matching_tokens] = STATE(202), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(171), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(67), - [aux_sym__list_plus_repeat1] = STATE(299), - [aux_sym__list_minus_repeat1] = STATE(301), - [aux_sym__list_star_repeat1] = STATE(302), - [aux_sym__list_dot_repeat1] = STATE(307), - [aux_sym__list_parenthesis_repeat1] = STATE(303), - [ts_builtin_sym_end] = ACTIONS(157), + [sym_fenced_code_block] = STATE(71), + [sym_html_block] = STATE(71), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(71), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(71), + [sym_block_quote] = STATE(71), + [sym_list] = STATE(71), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), + [sym_list_marker_minus] = STATE(15), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), + [sym_link_label] = STATE(2529), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), + [sym__whitespace] = STATE(455), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [aux_sym__ignore_matching_tokens] = STATE(27), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(71), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -31998,17 +32004,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), [anon_sym_TILDE] = ACTIONS(7), - [aux_sym__html_block_1_token1] = ACTIONS(17), - [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), + [aux_sym__html_block_1_token1] = ACTIONS(75), + [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_entity_reference] = ACTIONS(35), [sym_numeric_character_reference] = ACTIONS(35), @@ -32019,17 +32025,18 @@ 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(111), - [sym__block_quote_continuation] = ACTIONS(111), - [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__thematic_break] = ACTIONS(51), + [sym__block_close] = ACTIONS(155), + [sym__block_continuation] = ACTIONS(157), + [sym__block_quote_continuation] = 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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -32040,91 +32047,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(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), - [sym__last_token_whitespace] = ACTIONS(111), + [sym__last_token_whitespace] = ACTIONS(157), }, [29] = { - [sym__block] = STATE(53), - [sym_thematic_break] = STATE(53), - [sym_atx_heading] = STATE(53), - [sym_setext_heading] = STATE(53), - [sym_indented_code_block] = STATE(53), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(53), - [sym_html_block] = STATE(53), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(53), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(53), - [sym_block_quote] = STATE(53), - [sym_list] = STATE(53), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(62), + [sym_thematic_break] = STATE(62), + [sym_atx_heading] = STATE(62), + [sym_setext_heading] = STATE(62), + [sym_indented_code_block] = STATE(62), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(62), + [sym_html_block] = STATE(62), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(62), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(62), + [sym_block_quote] = STATE(62), + [sym_list] = STATE(62), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [aux_sym__ignore_matching_tokens] = STATE(30), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(53), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [aux_sym__ignore_matching_tokens] = STATE(160), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(62), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -32179,17 +32186,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), [sym__block_close] = ACTIONS(159), - [sym__block_continuation] = ACTIONS(161), - [sym__block_quote_continuation] = ACTIONS(161), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_continuation] = ACTIONS(113), + [sym__block_quote_continuation] = 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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -32200,91 +32207,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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), - [sym__last_token_whitespace] = ACTIONS(161), + [sym__last_token_whitespace] = ACTIONS(113), }, [30] = { - [sym__block] = STATE(59), - [sym_thematic_break] = STATE(59), - [sym_atx_heading] = STATE(59), - [sym_setext_heading] = STATE(59), - [sym_indented_code_block] = STATE(59), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(59), - [sym_html_block] = STATE(59), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(59), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(59), - [sym_block_quote] = STATE(59), - [sym_list] = STATE(59), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(63), + [sym_thematic_break] = STATE(63), + [sym_atx_heading] = STATE(63), + [sym_setext_heading] = STATE(63), + [sym_indented_code_block] = STATE(63), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(63), + [sym_html_block] = STATE(63), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(63), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(63), + [sym_block_quote] = STATE(63), + [sym_list] = STATE(63), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [aux_sym__ignore_matching_tokens] = STATE(275), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(59), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [aux_sym__ignore_matching_tokens] = STATE(160), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(63), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -32338,18 +32345,18 @@ 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_close] = ACTIONS(163), - [sym__block_continuation] = ACTIONS(125), - [sym__block_quote_continuation] = ACTIONS(125), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_close] = ACTIONS(161), + [sym__block_continuation] = ACTIONS(113), + [sym__block_quote_continuation] = 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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -32360,91 +32367,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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), - [sym__last_token_whitespace] = ACTIONS(125), + [sym__last_token_whitespace] = ACTIONS(113), }, [31] = { - [sym__block] = STATE(55), - [sym_thematic_break] = STATE(55), - [sym_atx_heading] = STATE(55), - [sym_setext_heading] = STATE(55), - [sym_indented_code_block] = STATE(55), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(55), - [sym_html_block] = STATE(55), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(55), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(55), - [sym_block_quote] = STATE(55), - [sym_list] = STATE(55), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(70), + [sym_thematic_break] = STATE(70), + [sym_atx_heading] = STATE(70), + [sym_setext_heading] = STATE(70), + [sym_indented_code_block] = STATE(70), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(70), + [sym_html_block] = STATE(70), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(70), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(70), + [sym_block_quote] = STATE(70), + [sym_list] = STATE(70), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [aux_sym__ignore_matching_tokens] = STATE(275), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(55), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [aux_sym__ignore_matching_tokens] = STATE(160), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(70), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -32498,18 +32505,18 @@ 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_close] = ACTIONS(165), - [sym__block_continuation] = ACTIONS(125), - [sym__block_quote_continuation] = ACTIONS(125), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_close] = ACTIONS(163), + [sym__block_continuation] = ACTIONS(113), + [sym__block_quote_continuation] = 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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -32520,91 +32527,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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), - [sym__last_token_whitespace] = ACTIONS(125), + [sym__last_token_whitespace] = ACTIONS(113), }, [32] = { - [sym__block] = STATE(54), - [sym_thematic_break] = STATE(54), - [sym_atx_heading] = STATE(54), - [sym_setext_heading] = STATE(54), - [sym_indented_code_block] = STATE(54), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(54), - [sym_html_block] = STATE(54), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(54), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(54), - [sym_block_quote] = STATE(54), - [sym_list] = STATE(54), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(66), + [sym_thematic_break] = STATE(66), + [sym_atx_heading] = STATE(66), + [sym_setext_heading] = STATE(66), + [sym_indented_code_block] = STATE(66), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(66), + [sym_html_block] = STATE(66), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(66), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(66), + [sym_block_quote] = STATE(66), + [sym_list] = STATE(66), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), [aux_sym__ignore_matching_tokens] = STATE(31), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(54), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(66), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -32658,18 +32665,18 @@ 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_close] = ACTIONS(167), - [sym__block_continuation] = ACTIONS(169), - [sym__block_quote_continuation] = ACTIONS(169), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_close] = ACTIONS(165), + [sym__block_continuation] = ACTIONS(167), + [sym__block_quote_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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -32680,91 +32687,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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), - [sym__last_token_whitespace] = ACTIONS(169), + [sym__last_token_whitespace] = ACTIONS(167), }, [33] = { - [sym__block] = STATE(47), - [sym_thematic_break] = STATE(47), - [sym_atx_heading] = STATE(47), - [sym_setext_heading] = STATE(47), - [sym_indented_code_block] = STATE(47), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(47), - [sym_html_block] = STATE(47), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(47), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(47), - [sym_block_quote] = STATE(47), - [sym_list] = STATE(47), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(59), + [sym_thematic_break] = STATE(59), + [sym_atx_heading] = STATE(59), + [sym_setext_heading] = STATE(59), + [sym_indented_code_block] = STATE(59), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(59), + [sym_html_block] = STATE(59), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(59), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(59), + [sym_block_quote] = STATE(59), + [sym_list] = STATE(59), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), [aux_sym__ignore_matching_tokens] = STATE(34), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(47), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(59), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -32818,18 +32825,18 @@ 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_close] = ACTIONS(171), - [sym__block_continuation] = ACTIONS(173), - [sym__block_quote_continuation] = ACTIONS(173), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_close] = ACTIONS(169), + [sym__block_continuation] = ACTIONS(171), + [sym__block_quote_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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -32840,91 +32847,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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), - [sym__last_token_whitespace] = ACTIONS(173), + [sym__last_token_whitespace] = ACTIONS(171), }, [34] = { - [sym__block] = STATE(48), - [sym_thematic_break] = STATE(48), - [sym_atx_heading] = STATE(48), - [sym_setext_heading] = STATE(48), - [sym_indented_code_block] = STATE(48), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(48), - [sym_html_block] = STATE(48), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(48), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(48), - [sym_block_quote] = STATE(48), - [sym_list] = STATE(48), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(54), + [sym_thematic_break] = STATE(54), + [sym_atx_heading] = STATE(54), + [sym_setext_heading] = STATE(54), + [sym_indented_code_block] = STATE(54), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(54), + [sym_html_block] = STATE(54), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(54), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(54), + [sym_block_quote] = STATE(54), + [sym_list] = STATE(54), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [aux_sym__ignore_matching_tokens] = STATE(275), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(48), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [aux_sym__ignore_matching_tokens] = STATE(160), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(54), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -32978,18 +32985,18 @@ 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_close] = ACTIONS(175), - [sym__block_continuation] = ACTIONS(125), - [sym__block_quote_continuation] = ACTIONS(125), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_close] = ACTIONS(173), + [sym__block_continuation] = ACTIONS(113), + [sym__block_quote_continuation] = 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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -33000,91 +33007,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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), - [sym__last_token_whitespace] = ACTIONS(125), + [sym__last_token_whitespace] = ACTIONS(113), }, [35] = { - [sym__block] = STATE(45), - [sym_thematic_break] = STATE(45), - [sym_atx_heading] = STATE(45), - [sym_setext_heading] = STATE(45), - [sym_indented_code_block] = STATE(45), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(45), - [sym_html_block] = STATE(45), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(45), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(45), - [sym_block_quote] = STATE(45), - [sym_list] = STATE(45), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(60), + [sym_thematic_break] = STATE(60), + [sym_atx_heading] = STATE(60), + [sym_setext_heading] = STATE(60), + [sym_indented_code_block] = STATE(60), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(60), + [sym_html_block] = STATE(60), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(60), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(60), + [sym_block_quote] = STATE(60), + [sym_list] = STATE(60), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), [aux_sym__ignore_matching_tokens] = STATE(36), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(45), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(60), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -33138,18 +33145,18 @@ 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_close] = ACTIONS(177), - [sym__block_continuation] = ACTIONS(179), - [sym__block_quote_continuation] = ACTIONS(179), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_close] = ACTIONS(175), + [sym__block_continuation] = ACTIONS(177), + [sym__block_quote_continuation] = ACTIONS(177), + [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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -33160,91 +33167,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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), - [sym__last_token_whitespace] = ACTIONS(179), + [sym__last_token_whitespace] = ACTIONS(177), }, [36] = { - [sym__block] = STATE(51), - [sym_thematic_break] = STATE(51), - [sym_atx_heading] = STATE(51), - [sym_setext_heading] = STATE(51), - [sym_indented_code_block] = STATE(51), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(51), - [sym_html_block] = STATE(51), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(51), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(51), - [sym_block_quote] = STATE(51), - [sym_list] = STATE(51), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(61), + [sym_thematic_break] = STATE(61), + [sym_atx_heading] = STATE(61), + [sym_setext_heading] = STATE(61), + [sym_indented_code_block] = STATE(61), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(61), + [sym_html_block] = STATE(61), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(61), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(61), + [sym_block_quote] = STATE(61), + [sym_list] = STATE(61), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [aux_sym__ignore_matching_tokens] = STATE(275), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(51), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [aux_sym__ignore_matching_tokens] = STATE(160), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(61), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -33298,18 +33305,18 @@ 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_close] = ACTIONS(181), - [sym__block_continuation] = ACTIONS(125), - [sym__block_quote_continuation] = ACTIONS(125), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_close] = ACTIONS(179), + [sym__block_continuation] = ACTIONS(113), + [sym__block_quote_continuation] = 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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -33320,91 +33327,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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), - [sym__last_token_whitespace] = ACTIONS(125), + [sym__last_token_whitespace] = ACTIONS(113), }, [37] = { - [sym__block] = STATE(49), - [sym_thematic_break] = STATE(49), - [sym_atx_heading] = STATE(49), - [sym_setext_heading] = STATE(49), - [sym_indented_code_block] = STATE(49), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(49), - [sym_html_block] = STATE(49), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(49), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(49), - [sym_block_quote] = STATE(49), - [sym_list] = STATE(49), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), - [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), - [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), - [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [aux_sym__ignore_matching_tokens] = STATE(38), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(49), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__block] = STATE(58), + [sym_thematic_break] = STATE(58), + [sym_atx_heading] = STATE(58), + [sym_setext_heading] = STATE(58), + [sym_indented_code_block] = STATE(58), + [sym__indented_chunk] = STATE(307), + [sym_fenced_code_block] = STATE(58), + [sym_html_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_link_reference_definition] = STATE(58), + [sym_paragraph] = STATE(337), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(58), + [sym_block_quote] = STATE(58), + [sym_list] = STATE(58), + [sym__list_plus] = STATE(382), + [sym__list_minus] = STATE(382), + [sym__list_star] = STATE(382), + [sym__list_dot] = STATE(382), + [sym__list_parenthesis] = STATE(382), + [sym_list_marker_plus] = STATE(39), + [sym_list_marker_minus] = STATE(40), + [sym_list_marker_star] = STATE(41), + [sym_list_marker_dot] = STATE(42), + [sym_list_marker_parenthesis] = STATE(43), + [sym__list_item_plus] = STATE(288), + [sym__list_item_minus] = STATE(280), + [sym__list_item_star] = STATE(278), + [sym__list_item_dot] = STATE(308), + [sym__list_item_parenthesis] = STATE(283), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), + [sym_link_label] = STATE(2488), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), + [sym__whitespace] = STATE(454), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [aux_sym__ignore_matching_tokens] = STATE(201), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(190), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(58), + [aux_sym__list_plus_repeat1] = STATE(288), + [aux_sym__list_minus_repeat1] = STATE(280), + [aux_sym__list_star_repeat1] = STATE(278), + [aux_sym__list_dot_repeat1] = STATE(308), + [aux_sym__list_parenthesis_repeat1] = STATE(283), + [ts_builtin_sym_end] = ACTIONS(181), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -33437,17 +33445,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), [anon_sym_TILDE] = ACTIONS(7), - [aux_sym__html_block_1_token1] = ACTIONS(75), - [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), + [aux_sym__html_block_1_token1] = ACTIONS(17), + [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_entity_reference] = ACTIONS(35), [sym_numeric_character_reference] = ACTIONS(35), @@ -33458,18 +33466,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_close] = ACTIONS(183), - [sym__block_continuation] = ACTIONS(185), - [sym__block_quote_continuation] = ACTIONS(185), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_continuation] = ACTIONS(109), + [sym__block_quote_continuation] = ACTIONS(109), + [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__thematic_break] = ACTIONS(51), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -33480,91 +33487,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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), - [sym__last_token_whitespace] = ACTIONS(185), + [sym__last_token_whitespace] = ACTIONS(109), }, [38] = { - [sym__block] = STATE(50), - [sym_thematic_break] = STATE(50), - [sym_atx_heading] = STATE(50), - [sym_setext_heading] = STATE(50), - [sym_indented_code_block] = STATE(50), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(50), - [sym_html_block] = STATE(50), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(50), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(50), - [sym_block_quote] = STATE(50), - [sym_list] = STATE(50), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(52), + [sym_thematic_break] = STATE(52), + [sym_atx_heading] = STATE(52), + [sym_setext_heading] = STATE(52), + [sym_indented_code_block] = STATE(52), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(52), + [sym_html_block] = STATE(52), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(52), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(52), + [sym_block_quote] = STATE(52), + [sym_list] = STATE(52), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [aux_sym__ignore_matching_tokens] = STATE(275), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(50), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [aux_sym__ignore_matching_tokens] = STATE(160), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(52), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -33618,18 +33625,18 @@ 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_close] = ACTIONS(187), - [sym__block_continuation] = ACTIONS(125), - [sym__block_quote_continuation] = ACTIONS(125), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_close] = ACTIONS(183), + [sym__block_continuation] = ACTIONS(113), + [sym__block_quote_continuation] = 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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -33640,92 +33647,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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), - [sym__last_token_whitespace] = ACTIONS(125), + [sym__last_token_whitespace] = ACTIONS(113), }, [39] = { - [sym__block] = STATE(56), - [sym_thematic_break] = STATE(56), - [sym_atx_heading] = STATE(56), - [sym_setext_heading] = STATE(56), - [sym_indented_code_block] = STATE(56), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(56), - [sym_html_block] = STATE(56), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(56), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(370), - [sym_block_quote] = STATE(56), - [sym_list] = STATE(56), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(47), + [sym_thematic_break] = STATE(47), + [sym_atx_heading] = STATE(47), + [sym_setext_heading] = STATE(47), + [sym_indented_code_block] = STATE(47), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(47), + [sym_html_block] = STATE(47), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(47), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(364), + [sym_block_quote] = STATE(47), + [sym_list] = STATE(47), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__list_item_content] = STATE(2371), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__list_item_content] = STATE(2386), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [aux_sym__ignore_matching_tokens] = STATE(4), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(56), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [aux_sym__ignore_matching_tokens] = STATE(5), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(47), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -33779,17 +33786,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(189), - [sym__block_quote_continuation] = ACTIONS(189), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_continuation] = ACTIONS(185), + [sym__block_quote_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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -33800,92 +33807,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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), - [sym__last_token_whitespace] = ACTIONS(189), + [sym__last_token_whitespace] = ACTIONS(185), }, [40] = { - [sym__block] = STATE(56), - [sym_thematic_break] = STATE(56), - [sym_atx_heading] = STATE(56), - [sym_setext_heading] = STATE(56), - [sym_indented_code_block] = STATE(56), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(56), - [sym_html_block] = STATE(56), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(56), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(370), - [sym_block_quote] = STATE(56), - [sym_list] = STATE(56), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(47), + [sym_thematic_break] = STATE(47), + [sym_atx_heading] = STATE(47), + [sym_setext_heading] = STATE(47), + [sym_indented_code_block] = STATE(47), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(47), + [sym_html_block] = STATE(47), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(47), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(364), + [sym_block_quote] = STATE(47), + [sym_list] = STATE(47), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__list_item_content] = STATE(2454), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__list_item_content] = STATE(2384), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [aux_sym__ignore_matching_tokens] = STATE(6), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(56), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [aux_sym__ignore_matching_tokens] = STATE(3), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(47), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -33939,17 +33946,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(191), - [sym__block_quote_continuation] = ACTIONS(191), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_continuation] = ACTIONS(187), + [sym__block_quote_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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -33960,92 +33967,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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), - [sym__last_token_whitespace] = ACTIONS(191), + [sym__last_token_whitespace] = ACTIONS(187), }, [41] = { - [sym__block] = STATE(56), - [sym_thematic_break] = STATE(56), - [sym_atx_heading] = STATE(56), - [sym_setext_heading] = STATE(56), - [sym_indented_code_block] = STATE(56), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(56), - [sym_html_block] = STATE(56), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(56), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(370), - [sym_block_quote] = STATE(56), - [sym_list] = STATE(56), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(47), + [sym_thematic_break] = STATE(47), + [sym_atx_heading] = STATE(47), + [sym_setext_heading] = STATE(47), + [sym_indented_code_block] = STATE(47), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(47), + [sym_html_block] = STATE(47), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(47), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(364), + [sym_block_quote] = STATE(47), + [sym_list] = STATE(47), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__list_item_content] = STATE(2333), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__list_item_content] = STATE(2380), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [aux_sym__ignore_matching_tokens] = STATE(8), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(56), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [aux_sym__ignore_matching_tokens] = STATE(4), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(47), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -34099,17 +34106,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(193), - [sym__block_quote_continuation] = ACTIONS(193), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_continuation] = ACTIONS(189), + [sym__block_quote_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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -34120,92 +34127,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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), - [sym__last_token_whitespace] = ACTIONS(193), + [sym__last_token_whitespace] = ACTIONS(189), }, [42] = { - [sym__block] = STATE(56), - [sym_thematic_break] = STATE(56), - [sym_atx_heading] = STATE(56), - [sym_setext_heading] = STATE(56), - [sym_indented_code_block] = STATE(56), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(56), - [sym_html_block] = STATE(56), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(56), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(370), - [sym_block_quote] = STATE(56), - [sym_list] = STATE(56), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(47), + [sym_thematic_break] = STATE(47), + [sym_atx_heading] = STATE(47), + [sym_setext_heading] = STATE(47), + [sym_indented_code_block] = STATE(47), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(47), + [sym_html_block] = STATE(47), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(47), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(364), + [sym_block_quote] = STATE(47), + [sym_list] = STATE(47), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__list_item_content] = STATE(2334), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__list_item_content] = STATE(2379), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [aux_sym__ignore_matching_tokens] = STATE(10), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(56), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [aux_sym__ignore_matching_tokens] = STATE(7), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(47), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -34259,17 +34266,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(195), - [sym__block_quote_continuation] = ACTIONS(195), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_continuation] = ACTIONS(191), + [sym__block_quote_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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -34280,92 +34287,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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), - [sym__last_token_whitespace] = ACTIONS(195), + [sym__last_token_whitespace] = ACTIONS(191), }, [43] = { - [sym__block] = STATE(56), - [sym_thematic_break] = STATE(56), - [sym_atx_heading] = STATE(56), - [sym_setext_heading] = STATE(56), - [sym_indented_code_block] = STATE(56), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(56), - [sym_html_block] = STATE(56), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(56), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(370), - [sym_block_quote] = STATE(56), - [sym_list] = STATE(56), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(47), + [sym_thematic_break] = STATE(47), + [sym_atx_heading] = STATE(47), + [sym_setext_heading] = STATE(47), + [sym_indented_code_block] = STATE(47), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(47), + [sym_html_block] = STATE(47), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(47), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(364), + [sym_block_quote] = STATE(47), + [sym_list] = STATE(47), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__list_item_content] = STATE(2335), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__list_item_content] = STATE(2376), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [aux_sym__ignore_matching_tokens] = STATE(11), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(56), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [aux_sym__ignore_matching_tokens] = STATE(8), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(47), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -34419,17 +34426,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(197), - [sym__block_quote_continuation] = ACTIONS(197), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_continuation] = ACTIONS(193), + [sym__block_quote_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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -34440,92 +34447,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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), - [sym__last_token_whitespace] = ACTIONS(197), + [sym__last_token_whitespace] = ACTIONS(193), }, [44] = { - [sym__block] = STATE(56), - [sym_thematic_break] = STATE(56), - [sym_atx_heading] = STATE(56), - [sym_setext_heading] = STATE(56), - [sym_indented_code_block] = STATE(56), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(56), - [sym_html_block] = STATE(56), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(56), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(370), - [sym_block_quote] = STATE(56), - [sym_list] = STATE(56), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(45), + [sym_thematic_break] = STATE(45), + [sym_atx_heading] = STATE(45), + [sym_setext_heading] = STATE(45), + [sym_indented_code_block] = STATE(45), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(45), + [sym_html_block] = STATE(45), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(45), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(45), + [sym_block_quote] = STATE(45), + [sym_list] = STATE(45), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__list_item_content] = STATE(2372), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [aux_sym__ignore_matching_tokens] = STATE(202), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(56), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [aux_sym__ignore_matching_tokens] = STATE(38), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(45), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -34579,17 +34585,18 @@ 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(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_close] = ACTIONS(195), + [sym__block_continuation] = ACTIONS(197), + [sym__block_quote_continuation] = ACTIONS(197), + [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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -34600,90 +34607,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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), - [sym__last_token_whitespace] = ACTIONS(111), + [sym__last_token_whitespace] = ACTIONS(197), }, [45] = { - [sym__block] = STATE(52), - [sym_thematic_break] = STATE(52), - [sym_atx_heading] = STATE(52), - [sym_setext_heading] = STATE(52), - [sym_indented_code_block] = STATE(52), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(52), - [sym_html_block] = STATE(52), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(52), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(52), - [sym_block_quote] = STATE(52), - [sym_list] = STATE(52), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(53), + [sym_thematic_break] = STATE(53), + [sym_atx_heading] = STATE(53), + [sym_setext_heading] = STATE(53), + [sym_indented_code_block] = STATE(53), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(53), + [sym_html_block] = STATE(53), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(53), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(53), + [sym_block_quote] = STATE(53), + [sym_list] = STATE(53), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(52), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(53), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -34737,16 +34744,16 @@ 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_close] = ACTIONS(181), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_close] = ACTIONS(183), + [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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -34757,245 +34764,245 @@ 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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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), }, [46] = { - [sym__block] = STATE(52), - [sym_thematic_break] = STATE(52), - [sym_atx_heading] = STATE(52), - [sym_setext_heading] = STATE(52), - [sym_indented_code_block] = STATE(52), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(52), - [sym_html_block] = STATE(52), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(52), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(52), - [sym_block_quote] = STATE(52), - [sym_list] = STATE(52), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), - [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), - [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), - [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(52), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(7), - [anon_sym_DOLLAR] = ACTIONS(7), - [anon_sym_PERCENT] = ACTIONS(7), - [anon_sym_AMP] = ACTIONS(9), - [anon_sym_SQUOTE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(7), - [anon_sym_RPAREN] = ACTIONS(7), - [anon_sym_STAR] = ACTIONS(7), - [anon_sym_PLUS] = ACTIONS(7), - [anon_sym_COMMA] = ACTIONS(7), - [anon_sym_DASH] = ACTIONS(7), - [anon_sym_DOT] = ACTIONS(7), - [anon_sym_SLASH] = ACTIONS(7), - [anon_sym_COLON] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(7), - [anon_sym_LT] = ACTIONS(11), - [anon_sym_EQ] = ACTIONS(7), - [anon_sym_GT] = ACTIONS(7), - [anon_sym_QMARK] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_BSLASH] = ACTIONS(15), - [anon_sym_RBRACK] = ACTIONS(7), - [anon_sym_CARET] = ACTIONS(7), - [anon_sym__] = ACTIONS(7), - [anon_sym_BQUOTE] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_PIPE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(7), - [anon_sym_TILDE] = ACTIONS(7), - [aux_sym__html_block_1_token1] = ACTIONS(75), - [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_entity_reference] = ACTIONS(35), - [sym_numeric_character_reference] = ACTIONS(35), - [sym_uri_autolink] = ACTIONS(35), - [sym_email_autolink] = ACTIONS(35), - [sym__whitespace_ge_2] = ACTIONS(37), - [aux_sym__whitespace_token1] = ACTIONS(39), - [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(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), - [sym__list_marker_minus] = ACTIONS(53), - [sym__list_marker_plus] = ACTIONS(55), - [sym__list_marker_star] = ACTIONS(57), - [sym__list_marker_parenthesis] = ACTIONS(59), - [sym__list_marker_dot] = ACTIONS(61), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(53), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(55), - [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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), - [sym__code_span_start] = ACTIONS(69), - [sym__emphasis_open_star] = ACTIONS(71), - [sym__emphasis_open_underscore] = ACTIONS(73), + [sym__block] = STATE(46), + [sym_thematic_break] = STATE(46), + [sym_atx_heading] = STATE(46), + [sym_setext_heading] = STATE(46), + [sym_indented_code_block] = STATE(46), + [sym__indented_chunk] = STATE(307), + [sym_fenced_code_block] = STATE(46), + [sym_html_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_link_reference_definition] = STATE(46), + [sym_paragraph] = STATE(337), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(46), + [sym_block_quote] = STATE(46), + [sym_list] = STATE(46), + [sym__list_plus] = STATE(382), + [sym__list_minus] = STATE(382), + [sym__list_star] = STATE(382), + [sym__list_dot] = STATE(382), + [sym__list_parenthesis] = STATE(382), + [sym_list_marker_plus] = STATE(39), + [sym_list_marker_minus] = STATE(40), + [sym_list_marker_star] = STATE(41), + [sym_list_marker_dot] = STATE(42), + [sym_list_marker_parenthesis] = STATE(43), + [sym__list_item_plus] = STATE(288), + [sym__list_item_minus] = STATE(280), + [sym__list_item_star] = STATE(278), + [sym__list_item_dot] = STATE(308), + [sym__list_item_parenthesis] = STATE(283), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), + [sym_link_label] = STATE(2488), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), + [sym__whitespace] = STATE(454), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(190), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(46), + [aux_sym__list_plus_repeat1] = STATE(288), + [aux_sym__list_minus_repeat1] = STATE(280), + [aux_sym__list_star_repeat1] = STATE(278), + [aux_sym__list_dot_repeat1] = STATE(308), + [aux_sym__list_parenthesis_repeat1] = STATE(283), + [ts_builtin_sym_end] = ACTIONS(199), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_DQUOTE] = ACTIONS(204), + [anon_sym_POUND] = ACTIONS(204), + [anon_sym_DOLLAR] = ACTIONS(204), + [anon_sym_PERCENT] = ACTIONS(204), + [anon_sym_AMP] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(204), + [anon_sym_LPAREN] = ACTIONS(204), + [anon_sym_RPAREN] = ACTIONS(204), + [anon_sym_STAR] = ACTIONS(204), + [anon_sym_PLUS] = ACTIONS(204), + [anon_sym_COMMA] = ACTIONS(204), + [anon_sym_DASH] = ACTIONS(204), + [anon_sym_DOT] = ACTIONS(204), + [anon_sym_SLASH] = ACTIONS(204), + [anon_sym_COLON] = ACTIONS(204), + [anon_sym_SEMI] = ACTIONS(204), + [anon_sym_LT] = ACTIONS(210), + [anon_sym_EQ] = ACTIONS(204), + [anon_sym_GT] = ACTIONS(204), + [anon_sym_QMARK] = ACTIONS(204), + [anon_sym_AT] = ACTIONS(204), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_BSLASH] = ACTIONS(216), + [anon_sym_RBRACK] = ACTIONS(204), + [anon_sym_CARET] = ACTIONS(204), + [anon_sym__] = ACTIONS(204), + [anon_sym_BQUOTE] = ACTIONS(204), + [anon_sym_LBRACE] = ACTIONS(204), + [anon_sym_PIPE] = ACTIONS(204), + [anon_sym_RBRACE] = ACTIONS(204), + [anon_sym_TILDE] = ACTIONS(204), + [aux_sym__html_block_1_token1] = ACTIONS(219), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(222), + [anon_sym_LT_QMARK] = ACTIONS(225), + [aux_sym__html_block_4_token1] = ACTIONS(228), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(231), + [aux_sym__html_block_6_token1] = ACTIONS(234), + [aux_sym__html_block_6_token2] = ACTIONS(237), + [sym__open_tag_html_block] = ACTIONS(240), + [sym__open_tag_html_block_newline] = ACTIONS(243), + [sym__closing_tag_html_block] = ACTIONS(240), + [sym__closing_tag_html_block_newline] = ACTIONS(243), + [sym_backslash_escape] = ACTIONS(246), + [sym_entity_reference] = ACTIONS(246), + [sym_numeric_character_reference] = ACTIONS(246), + [sym_uri_autolink] = ACTIONS(246), + [sym_email_autolink] = ACTIONS(246), + [sym__whitespace_ge_2] = ACTIONS(249), + [aux_sym__whitespace_token1] = ACTIONS(252), + [sym__word_no_digit] = ACTIONS(246), + [sym__digits] = ACTIONS(246), + [aux_sym__newline_token1] = ACTIONS(255), + [sym__block_quote_start] = ACTIONS(258), + [sym__indented_chunk_start] = ACTIONS(261), + [sym_atx_h1_marker] = ACTIONS(264), + [sym_atx_h2_marker] = ACTIONS(264), + [sym_atx_h3_marker] = ACTIONS(264), + [sym_atx_h4_marker] = ACTIONS(264), + [sym_atx_h5_marker] = ACTIONS(264), + [sym_atx_h6_marker] = ACTIONS(264), + [sym__thematic_break] = ACTIONS(267), + [sym__list_marker_minus] = ACTIONS(270), + [sym__list_marker_plus] = ACTIONS(273), + [sym__list_marker_star] = ACTIONS(276), + [sym__list_marker_parenthesis] = ACTIONS(279), + [sym__list_marker_dot] = ACTIONS(282), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(270), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(273), + [sym__list_marker_star_dont_interrupt] = ACTIONS(276), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(279), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(282), + [sym__fenced_code_block_start_backtick] = ACTIONS(285), + [sym__fenced_code_block_start_tilde] = ACTIONS(288), + [sym__blank_line_start] = ACTIONS(291), + [sym__code_span_start] = ACTIONS(294), + [sym__emphasis_open_star] = ACTIONS(297), + [sym__emphasis_open_underscore] = ACTIONS(300), }, [47] = { - [sym__block] = STATE(52), - [sym_thematic_break] = STATE(52), - [sym_atx_heading] = STATE(52), - [sym_setext_heading] = STATE(52), - [sym_indented_code_block] = STATE(52), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(52), - [sym_html_block] = STATE(52), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(52), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(52), - [sym_block_quote] = STATE(52), - [sym_list] = STATE(52), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(53), + [sym_thematic_break] = STATE(53), + [sym_atx_heading] = STATE(53), + [sym_setext_heading] = STATE(53), + [sym_indented_code_block] = STATE(53), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(53), + [sym_html_block] = STATE(53), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(53), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(53), + [sym_block_quote] = STATE(53), + [sym_list] = STATE(53), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(52), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(53), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -35049,16 +35056,16 @@ 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_close] = ACTIONS(175), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_close] = ACTIONS(303), + [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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -35069,89 +35076,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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), }, [48] = { - [sym__block] = STATE(52), - [sym_thematic_break] = STATE(52), - [sym_atx_heading] = STATE(52), - [sym_setext_heading] = STATE(52), - [sym_indented_code_block] = STATE(52), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(52), - [sym_html_block] = STATE(52), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(52), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(52), - [sym_block_quote] = STATE(52), - [sym_list] = STATE(52), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(53), + [sym_thematic_break] = STATE(53), + [sym_atx_heading] = STATE(53), + [sym_setext_heading] = STATE(53), + [sym_indented_code_block] = STATE(53), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(53), + [sym_html_block] = STATE(53), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(53), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(53), + [sym_block_quote] = STATE(53), + [sym_list] = STATE(53), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(52), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(53), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -35205,16 +35212,16 @@ 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_close] = ACTIONS(201), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_close] = 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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -35225,89 +35232,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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(52), - [sym_thematic_break] = STATE(52), - [sym_atx_heading] = STATE(52), - [sym_setext_heading] = STATE(52), - [sym_indented_code_block] = STATE(52), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(52), - [sym_html_block] = STATE(52), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(52), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(52), - [sym_block_quote] = STATE(52), - [sym_list] = STATE(52), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(53), + [sym_thematic_break] = STATE(53), + [sym_atx_heading] = STATE(53), + [sym_setext_heading] = STATE(53), + [sym_indented_code_block] = STATE(53), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(53), + [sym_html_block] = STATE(53), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(53), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(53), + [sym_block_quote] = STATE(53), + [sym_list] = STATE(53), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(52), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(53), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -35361,16 +35368,16 @@ 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_close] = ACTIONS(187), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_close] = ACTIONS(305), + [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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -35381,89 +35388,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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(52), - [sym_thematic_break] = STATE(52), - [sym_atx_heading] = STATE(52), - [sym_setext_heading] = STATE(52), - [sym_indented_code_block] = STATE(52), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(52), - [sym_html_block] = STATE(52), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(52), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(52), - [sym_block_quote] = STATE(52), - [sym_list] = STATE(52), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(53), + [sym_thematic_break] = STATE(53), + [sym_atx_heading] = STATE(53), + [sym_setext_heading] = STATE(53), + [sym_indented_code_block] = STATE(53), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(53), + [sym_html_block] = STATE(53), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(53), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(53), + [sym_block_quote] = STATE(53), + [sym_list] = STATE(53), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(52), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(53), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -35517,16 +35524,16 @@ 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_close] = ACTIONS(203), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_close] = 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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -35537,89 +35544,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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(52), - [sym_thematic_break] = STATE(52), - [sym_atx_heading] = STATE(52), - [sym_setext_heading] = STATE(52), - [sym_indented_code_block] = STATE(52), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(52), - [sym_html_block] = STATE(52), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(52), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(52), - [sym_block_quote] = STATE(52), - [sym_list] = STATE(52), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(53), + [sym_thematic_break] = STATE(53), + [sym_atx_heading] = STATE(53), + [sym_setext_heading] = STATE(53), + [sym_indented_code_block] = STATE(53), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(53), + [sym_html_block] = STATE(53), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(53), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(53), + [sym_block_quote] = STATE(53), + [sym_list] = STATE(53), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(52), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(53), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -35673,16 +35680,16 @@ 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_close] = ACTIONS(205), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_close] = ACTIONS(307), + [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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -35693,245 +35700,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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(52), - [sym_thematic_break] = STATE(52), - [sym_atx_heading] = STATE(52), - [sym_setext_heading] = STATE(52), - [sym_indented_code_block] = STATE(52), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(52), - [sym_html_block] = STATE(52), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(52), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(52), - [sym_block_quote] = STATE(52), - [sym_list] = STATE(52), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), - [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), - [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), - [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(52), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), - [anon_sym_BANG] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(210), - [anon_sym_POUND] = ACTIONS(210), - [anon_sym_DOLLAR] = ACTIONS(210), - [anon_sym_PERCENT] = ACTIONS(210), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_SQUOTE] = ACTIONS(210), - [anon_sym_LPAREN] = ACTIONS(210), - [anon_sym_RPAREN] = ACTIONS(210), - [anon_sym_STAR] = ACTIONS(210), - [anon_sym_PLUS] = ACTIONS(210), - [anon_sym_COMMA] = ACTIONS(210), - [anon_sym_DASH] = ACTIONS(210), - [anon_sym_DOT] = ACTIONS(210), - [anon_sym_SLASH] = ACTIONS(210), - [anon_sym_COLON] = ACTIONS(210), - [anon_sym_SEMI] = ACTIONS(210), - [anon_sym_LT] = ACTIONS(216), - [anon_sym_EQ] = ACTIONS(210), - [anon_sym_GT] = ACTIONS(210), - [anon_sym_QMARK] = ACTIONS(210), - [anon_sym_AT] = ACTIONS(210), - [anon_sym_LBRACK] = ACTIONS(219), - [anon_sym_BSLASH] = ACTIONS(222), - [anon_sym_RBRACK] = ACTIONS(210), - [anon_sym_CARET] = ACTIONS(210), - [anon_sym__] = ACTIONS(210), - [anon_sym_BQUOTE] = ACTIONS(210), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_PIPE] = ACTIONS(210), - [anon_sym_RBRACE] = ACTIONS(210), - [anon_sym_TILDE] = ACTIONS(210), - [aux_sym__html_block_1_token1] = ACTIONS(225), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(228), - [anon_sym_LT_QMARK] = ACTIONS(231), - [aux_sym__html_block_4_token1] = ACTIONS(234), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(237), - [aux_sym__html_block_6_token1] = ACTIONS(240), - [aux_sym__html_block_6_token2] = ACTIONS(243), - [sym__open_tag_html_block] = ACTIONS(246), - [sym__open_tag_html_block_newline] = ACTIONS(249), - [sym__closing_tag_html_block] = ACTIONS(246), - [sym__closing_tag_html_block_newline] = ACTIONS(249), - [sym_backslash_escape] = ACTIONS(252), - [sym_entity_reference] = ACTIONS(252), - [sym_numeric_character_reference] = ACTIONS(252), - [sym_uri_autolink] = ACTIONS(252), - [sym_email_autolink] = ACTIONS(252), - [sym__whitespace_ge_2] = ACTIONS(255), - [aux_sym__whitespace_token1] = ACTIONS(258), - [sym__word_no_digit] = ACTIONS(252), - [sym__digits] = ACTIONS(252), - [aux_sym__newline_token1] = ACTIONS(261), - [sym__block_close] = ACTIONS(264), - [sym__block_quote_start] = ACTIONS(266), - [sym__indented_chunk_start] = ACTIONS(269), - [sym_atx_h1_marker] = ACTIONS(272), - [sym_atx_h2_marker] = ACTIONS(272), - [sym_atx_h3_marker] = ACTIONS(272), - [sym_atx_h4_marker] = ACTIONS(272), - [sym_atx_h5_marker] = ACTIONS(272), - [sym_atx_h6_marker] = ACTIONS(272), - [sym__thematic_break] = ACTIONS(275), - [sym__list_marker_minus] = ACTIONS(278), - [sym__list_marker_plus] = ACTIONS(281), - [sym__list_marker_star] = ACTIONS(284), - [sym__list_marker_parenthesis] = ACTIONS(287), - [sym__list_marker_dot] = ACTIONS(290), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(278), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(281), - [sym__list_marker_star_dont_interrupt] = ACTIONS(284), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(287), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(290), - [sym__fenced_code_block_start_backtick] = ACTIONS(293), - [sym__fenced_code_block_start_tilde] = ACTIONS(296), - [sym__blank_line_start] = ACTIONS(299), - [sym__code_span_start] = ACTIONS(302), - [sym__emphasis_open_star] = ACTIONS(305), - [sym__emphasis_open_underscore] = ACTIONS(308), - }, - [53] = { - [sym__block] = STATE(52), - [sym_thematic_break] = STATE(52), - [sym_atx_heading] = STATE(52), - [sym_setext_heading] = STATE(52), - [sym_indented_code_block] = STATE(52), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(52), - [sym_html_block] = STATE(52), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(52), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(52), - [sym_block_quote] = STATE(52), - [sym_list] = STATE(52), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(53), + [sym_thematic_break] = STATE(53), + [sym_atx_heading] = STATE(53), + [sym_setext_heading] = STATE(53), + [sym_indented_code_block] = STATE(53), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(53), + [sym_html_block] = STATE(53), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(53), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(53), + [sym_block_quote] = STATE(53), + [sym_list] = STATE(53), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(52), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(53), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -35985,16 +35836,16 @@ 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_close] = ACTIONS(163), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_close] = ACTIONS(309), + [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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -36005,89 +35856,245 @@ 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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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(53), + [sym_thematic_break] = STATE(53), + [sym_atx_heading] = STATE(53), + [sym_setext_heading] = STATE(53), + [sym_indented_code_block] = STATE(53), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(53), + [sym_html_block] = STATE(53), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(53), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(53), + [sym_block_quote] = STATE(53), + [sym_list] = STATE(53), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), + [sym_list_marker_minus] = STATE(15), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), + [sym_link_label] = STATE(2529), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), + [sym__whitespace] = STATE(455), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(53), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_DQUOTE] = ACTIONS(204), + [anon_sym_POUND] = ACTIONS(204), + [anon_sym_DOLLAR] = ACTIONS(204), + [anon_sym_PERCENT] = ACTIONS(204), + [anon_sym_AMP] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(204), + [anon_sym_LPAREN] = ACTIONS(204), + [anon_sym_RPAREN] = ACTIONS(204), + [anon_sym_STAR] = ACTIONS(204), + [anon_sym_PLUS] = ACTIONS(204), + [anon_sym_COMMA] = ACTIONS(204), + [anon_sym_DASH] = ACTIONS(204), + [anon_sym_DOT] = ACTIONS(204), + [anon_sym_SLASH] = ACTIONS(204), + [anon_sym_COLON] = ACTIONS(204), + [anon_sym_SEMI] = ACTIONS(204), + [anon_sym_LT] = ACTIONS(210), + [anon_sym_EQ] = ACTIONS(204), + [anon_sym_GT] = ACTIONS(204), + [anon_sym_QMARK] = ACTIONS(204), + [anon_sym_AT] = ACTIONS(204), + [anon_sym_LBRACK] = ACTIONS(213), + [anon_sym_BSLASH] = ACTIONS(216), + [anon_sym_RBRACK] = ACTIONS(204), + [anon_sym_CARET] = ACTIONS(204), + [anon_sym__] = ACTIONS(204), + [anon_sym_BQUOTE] = ACTIONS(204), + [anon_sym_LBRACE] = ACTIONS(204), + [anon_sym_PIPE] = ACTIONS(204), + [anon_sym_RBRACE] = ACTIONS(204), + [anon_sym_TILDE] = ACTIONS(204), + [aux_sym__html_block_1_token1] = ACTIONS(311), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(314), + [anon_sym_LT_QMARK] = ACTIONS(317), + [aux_sym__html_block_4_token1] = ACTIONS(320), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(323), + [aux_sym__html_block_6_token1] = ACTIONS(326), + [aux_sym__html_block_6_token2] = ACTIONS(329), + [sym__open_tag_html_block] = ACTIONS(332), + [sym__open_tag_html_block_newline] = ACTIONS(335), + [sym__closing_tag_html_block] = ACTIONS(332), + [sym__closing_tag_html_block_newline] = ACTIONS(335), + [sym_backslash_escape] = ACTIONS(246), + [sym_entity_reference] = ACTIONS(246), + [sym_numeric_character_reference] = ACTIONS(246), + [sym_uri_autolink] = ACTIONS(246), + [sym_email_autolink] = ACTIONS(246), + [sym__whitespace_ge_2] = ACTIONS(249), + [aux_sym__whitespace_token1] = ACTIONS(252), + [sym__word_no_digit] = ACTIONS(246), + [sym__digits] = ACTIONS(246), + [aux_sym__newline_token1] = ACTIONS(255), + [sym__block_close] = ACTIONS(199), + [sym__block_quote_start] = ACTIONS(338), + [sym__indented_chunk_start] = ACTIONS(341), + [sym_atx_h1_marker] = ACTIONS(344), + [sym_atx_h2_marker] = ACTIONS(344), + [sym_atx_h3_marker] = ACTIONS(344), + [sym_atx_h4_marker] = ACTIONS(344), + [sym_atx_h5_marker] = ACTIONS(344), + [sym_atx_h6_marker] = ACTIONS(344), + [sym__thematic_break] = ACTIONS(347), + [sym__list_marker_minus] = ACTIONS(270), + [sym__list_marker_plus] = ACTIONS(273), + [sym__list_marker_star] = ACTIONS(276), + [sym__list_marker_parenthesis] = ACTIONS(279), + [sym__list_marker_dot] = ACTIONS(282), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(270), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(273), + [sym__list_marker_star_dont_interrupt] = ACTIONS(276), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(279), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(282), + [sym__fenced_code_block_start_backtick] = ACTIONS(350), + [sym__fenced_code_block_start_tilde] = ACTIONS(353), + [sym__blank_line_start] = ACTIONS(356), + [sym__code_span_start] = ACTIONS(294), + [sym__emphasis_open_star] = ACTIONS(297), + [sym__emphasis_open_underscore] = ACTIONS(300), + }, [54] = { - [sym__block] = STATE(52), - [sym_thematic_break] = STATE(52), - [sym_atx_heading] = STATE(52), - [sym_setext_heading] = STATE(52), - [sym_indented_code_block] = STATE(52), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(52), - [sym_html_block] = STATE(52), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(52), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(52), - [sym_block_quote] = STATE(52), - [sym_list] = STATE(52), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(53), + [sym_thematic_break] = STATE(53), + [sym_atx_heading] = STATE(53), + [sym_setext_heading] = STATE(53), + [sym_indented_code_block] = STATE(53), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(53), + [sym_html_block] = STATE(53), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(53), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(53), + [sym_block_quote] = STATE(53), + [sym_list] = STATE(53), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(52), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(53), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -36141,16 +36148,16 @@ 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_close] = ACTIONS(165), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_close] = ACTIONS(359), + [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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -36161,89 +36168,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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(52), - [sym_thematic_break] = STATE(52), - [sym_atx_heading] = STATE(52), - [sym_setext_heading] = STATE(52), - [sym_indented_code_block] = STATE(52), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(52), - [sym_html_block] = STATE(52), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(52), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(52), - [sym_block_quote] = STATE(52), - [sym_list] = STATE(52), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(53), + [sym_thematic_break] = STATE(53), + [sym_atx_heading] = STATE(53), + [sym_setext_heading] = STATE(53), + [sym_indented_code_block] = STATE(53), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(53), + [sym_html_block] = STATE(53), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(53), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(53), + [sym_block_quote] = STATE(53), + [sym_list] = STATE(53), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(52), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(53), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -36297,16 +36304,16 @@ 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_close] = ACTIONS(311), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_close] = 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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -36317,89 +36324,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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(52), - [sym_thematic_break] = STATE(52), - [sym_atx_heading] = STATE(52), - [sym_setext_heading] = STATE(52), - [sym_indented_code_block] = STATE(52), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(52), - [sym_html_block] = STATE(52), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(52), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(52), - [sym_block_quote] = STATE(52), - [sym_list] = STATE(52), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(53), + [sym_thematic_break] = STATE(53), + [sym_atx_heading] = STATE(53), + [sym_setext_heading] = STATE(53), + [sym_indented_code_block] = STATE(53), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(53), + [sym_html_block] = STATE(53), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(53), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(53), + [sym_block_quote] = STATE(53), + [sym_list] = STATE(53), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(52), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(53), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -36453,16 +36460,16 @@ 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_close] = ACTIONS(313), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_close] = ACTIONS(361), + [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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -36473,90 +36480,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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), }, [57] = { - [sym__block] = STATE(70), - [sym_thematic_break] = STATE(70), - [sym_atx_heading] = STATE(70), - [sym_setext_heading] = STATE(70), - [sym_indented_code_block] = STATE(70), - [sym__indented_chunk] = STATE(285), - [sym_fenced_code_block] = STATE(70), - [sym_html_block] = STATE(70), - [sym__html_block_1] = STATE(407), - [sym__html_block_2] = STATE(407), - [sym__html_block_3] = STATE(407), - [sym__html_block_4] = STATE(407), - [sym__html_block_5] = STATE(407), - [sym__html_block_6] = STATE(407), - [sym__html_block_7] = STATE(407), - [sym_link_reference_definition] = STATE(70), - [sym_paragraph] = STATE(342), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(70), - [sym_block_quote] = STATE(70), - [sym_list] = STATE(70), - [sym__list_plus] = STATE(399), - [sym__list_minus] = STATE(399), - [sym__list_star] = STATE(399), - [sym__list_dot] = STATE(399), - [sym__list_parenthesis] = STATE(399), + [sym__block] = STATE(46), + [sym_thematic_break] = STATE(46), + [sym_atx_heading] = STATE(46), + [sym_setext_heading] = STATE(46), + [sym_indented_code_block] = STATE(46), + [sym__indented_chunk] = STATE(307), + [sym_fenced_code_block] = STATE(46), + [sym_html_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_link_reference_definition] = STATE(46), + [sym_paragraph] = STATE(337), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(46), + [sym_block_quote] = STATE(46), + [sym_list] = STATE(46), + [sym__list_plus] = STATE(382), + [sym__list_minus] = STATE(382), + [sym__list_star] = STATE(382), + [sym__list_dot] = STATE(382), + [sym__list_parenthesis] = STATE(382), [sym_list_marker_plus] = STATE(39), [sym_list_marker_minus] = STATE(40), [sym_list_marker_star] = STATE(41), [sym_list_marker_dot] = STATE(42), [sym_list_marker_parenthesis] = STATE(43), - [sym__list_item_plus] = STATE(299), - [sym__list_item_minus] = STATE(301), - [sym__list_item_star] = STATE(302), - [sym__list_item_dot] = STATE(307), - [sym__list_item_parenthesis] = STATE(303), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), - [sym_link_label] = STATE(2478), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym__list_item_plus] = STATE(288), + [sym__list_item_minus] = STATE(280), + [sym__list_item_star] = STATE(278), + [sym__list_item_dot] = STATE(308), + [sym__list_item_parenthesis] = STATE(283), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), + [sym_link_label] = STATE(2488), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(454), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(171), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(70), - [aux_sym__list_plus_repeat1] = STATE(299), - [aux_sym__list_minus_repeat1] = STATE(301), - [aux_sym__list_star_repeat1] = STATE(302), - [aux_sym__list_dot_repeat1] = STATE(307), - [aux_sym__list_parenthesis_repeat1] = STATE(303), - [ts_builtin_sym_end] = ACTIONS(157), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(190), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(46), + [aux_sym__list_plus_repeat1] = STATE(288), + [aux_sym__list_minus_repeat1] = STATE(280), + [aux_sym__list_star_repeat1] = STATE(278), + [aux_sym__list_dot_repeat1] = STATE(308), + [aux_sym__list_parenthesis_repeat1] = STATE(283), + [ts_builtin_sym_end] = ACTIONS(181), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -36637,81 +36644,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_underscore] = ACTIONS(73), }, [58] = { - [sym__block] = STATE(52), - [sym_thematic_break] = STATE(52), - [sym_atx_heading] = STATE(52), - [sym_setext_heading] = STATE(52), - [sym_indented_code_block] = STATE(52), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(52), - [sym_html_block] = STATE(52), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(52), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(52), - [sym_block_quote] = STATE(52), - [sym_list] = STATE(52), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), - [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), - [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), - [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(52), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__block] = STATE(46), + [sym_thematic_break] = STATE(46), + [sym_atx_heading] = STATE(46), + [sym_setext_heading] = STATE(46), + [sym_indented_code_block] = STATE(46), + [sym__indented_chunk] = STATE(307), + [sym_fenced_code_block] = STATE(46), + [sym_html_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_link_reference_definition] = STATE(46), + [sym_paragraph] = STATE(337), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(46), + [sym_block_quote] = STATE(46), + [sym_list] = STATE(46), + [sym__list_plus] = STATE(382), + [sym__list_minus] = STATE(382), + [sym__list_star] = STATE(382), + [sym__list_dot] = STATE(382), + [sym__list_parenthesis] = STATE(382), + [sym_list_marker_plus] = STATE(39), + [sym_list_marker_minus] = STATE(40), + [sym_list_marker_star] = STATE(41), + [sym_list_marker_dot] = STATE(42), + [sym_list_marker_parenthesis] = STATE(43), + [sym__list_item_plus] = STATE(288), + [sym__list_item_minus] = STATE(280), + [sym__list_item_star] = STATE(278), + [sym__list_item_dot] = STATE(308), + [sym__list_item_parenthesis] = STATE(283), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), + [sym_link_label] = STATE(2488), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), + [sym__whitespace] = STATE(454), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(190), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(46), + [aux_sym__list_plus_repeat1] = STATE(288), + [aux_sym__list_minus_repeat1] = STATE(280), + [aux_sym__list_star_repeat1] = STATE(278), + [aux_sym__list_dot_repeat1] = STATE(308), + [aux_sym__list_parenthesis_repeat1] = STATE(283), + [ts_builtin_sym_end] = ACTIONS(363), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -36744,17 +36752,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), [anon_sym_TILDE] = ACTIONS(7), - [aux_sym__html_block_1_token1] = ACTIONS(75), - [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), + [aux_sym__html_block_1_token1] = ACTIONS(17), + [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_entity_reference] = ACTIONS(35), [sym_numeric_character_reference] = ACTIONS(35), @@ -36765,16 +36773,15 @@ 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_close] = ACTIONS(315), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [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__thematic_break] = ACTIONS(51), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -36785,89 +36792,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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), }, [59] = { - [sym__block] = STATE(52), - [sym_thematic_break] = STATE(52), - [sym_atx_heading] = STATE(52), - [sym_setext_heading] = STATE(52), - [sym_indented_code_block] = STATE(52), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(52), - [sym_html_block] = STATE(52), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(52), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(52), - [sym_block_quote] = STATE(52), - [sym_list] = STATE(52), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(53), + [sym_thematic_break] = STATE(53), + [sym_atx_heading] = STATE(53), + [sym_setext_heading] = STATE(53), + [sym_indented_code_block] = STATE(53), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(53), + [sym_html_block] = STATE(53), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(53), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(53), + [sym_block_quote] = STATE(53), + [sym_list] = STATE(53), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(52), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(53), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -36921,16 +36928,16 @@ 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_close] = ACTIONS(317), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_close] = ACTIONS(173), + [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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -36941,89 +36948,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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(52), - [sym_thematic_break] = STATE(52), - [sym_atx_heading] = STATE(52), - [sym_setext_heading] = STATE(52), - [sym_indented_code_block] = STATE(52), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(52), - [sym_html_block] = STATE(52), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(52), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(52), - [sym_block_quote] = STATE(52), - [sym_list] = STATE(52), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(53), + [sym_thematic_break] = STATE(53), + [sym_atx_heading] = STATE(53), + [sym_setext_heading] = STATE(53), + [sym_indented_code_block] = STATE(53), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(53), + [sym_html_block] = STATE(53), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(53), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(53), + [sym_block_quote] = STATE(53), + [sym_list] = STATE(53), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(52), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(53), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -37077,16 +37084,16 @@ 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_close] = ACTIONS(319), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_close] = 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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -37097,89 +37104,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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(52), - [sym_thematic_break] = STATE(52), - [sym_atx_heading] = STATE(52), - [sym_setext_heading] = STATE(52), - [sym_indented_code_block] = STATE(52), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(52), - [sym_html_block] = STATE(52), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(52), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(52), - [sym_block_quote] = STATE(52), - [sym_list] = STATE(52), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(53), + [sym_thematic_break] = STATE(53), + [sym_atx_heading] = STATE(53), + [sym_setext_heading] = STATE(53), + [sym_indented_code_block] = STATE(53), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(53), + [sym_html_block] = STATE(53), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(53), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(53), + [sym_block_quote] = STATE(53), + [sym_list] = STATE(53), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(52), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(53), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -37233,16 +37240,16 @@ 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_close] = ACTIONS(151), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_close] = ACTIONS(365), + [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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -37253,89 +37260,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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(52), - [sym_thematic_break] = STATE(52), - [sym_atx_heading] = STATE(52), - [sym_setext_heading] = STATE(52), - [sym_indented_code_block] = STATE(52), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(52), - [sym_html_block] = STATE(52), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(52), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(52), - [sym_block_quote] = STATE(52), - [sym_list] = STATE(52), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(53), + [sym_thematic_break] = STATE(53), + [sym_atx_heading] = STATE(53), + [sym_setext_heading] = STATE(53), + [sym_indented_code_block] = STATE(53), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(53), + [sym_html_block] = STATE(53), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(53), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(53), + [sym_block_quote] = STATE(53), + [sym_list] = STATE(53), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(52), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(53), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -37389,16 +37396,16 @@ 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_close] = ACTIONS(321), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_close] = ACTIONS(367), + [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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -37409,89 +37416,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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(52), - [sym_thematic_break] = STATE(52), - [sym_atx_heading] = STATE(52), - [sym_setext_heading] = STATE(52), - [sym_indented_code_block] = STATE(52), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(52), - [sym_html_block] = STATE(52), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(52), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(52), - [sym_block_quote] = STATE(52), - [sym_list] = STATE(52), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(53), + [sym_thematic_break] = STATE(53), + [sym_atx_heading] = STATE(53), + [sym_setext_heading] = STATE(53), + [sym_indented_code_block] = STATE(53), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(53), + [sym_html_block] = STATE(53), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(53), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(53), + [sym_block_quote] = STATE(53), + [sym_list] = STATE(53), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(52), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(53), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -37545,16 +37552,16 @@ 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_close] = ACTIONS(123), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_close] = ACTIONS(369), + [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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -37565,89 +37572,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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(52), - [sym_thematic_break] = STATE(52), - [sym_atx_heading] = STATE(52), - [sym_setext_heading] = STATE(52), - [sym_indented_code_block] = STATE(52), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(52), - [sym_html_block] = STATE(52), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(52), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(52), - [sym_block_quote] = STATE(52), - [sym_list] = STATE(52), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(53), + [sym_thematic_break] = STATE(53), + [sym_atx_heading] = STATE(53), + [sym_setext_heading] = STATE(53), + [sym_indented_code_block] = STATE(53), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(53), + [sym_html_block] = STATE(53), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(53), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(53), + [sym_block_quote] = STATE(53), + [sym_list] = STATE(53), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(52), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(53), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -37701,16 +37708,16 @@ 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_close] = ACTIONS(323), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_close] = 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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -37721,89 +37728,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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(52), - [sym_thematic_break] = STATE(52), - [sym_atx_heading] = STATE(52), - [sym_setext_heading] = STATE(52), - [sym_indented_code_block] = STATE(52), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(52), - [sym_html_block] = STATE(52), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(52), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(52), - [sym_block_quote] = STATE(52), - [sym_list] = STATE(52), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(53), + [sym_thematic_break] = STATE(53), + [sym_atx_heading] = STATE(53), + [sym_setext_heading] = STATE(53), + [sym_indented_code_block] = STATE(53), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(53), + [sym_html_block] = STATE(53), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(53), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(53), + [sym_block_quote] = STATE(53), + [sym_list] = STATE(53), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(52), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(53), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -37857,16 +37864,16 @@ 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_close] = ACTIONS(149), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_close] = ACTIONS(159), + [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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -37877,89 +37884,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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(52), - [sym_thematic_break] = STATE(52), - [sym_atx_heading] = STATE(52), - [sym_setext_heading] = STATE(52), - [sym_indented_code_block] = STATE(52), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(52), - [sym_html_block] = STATE(52), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(52), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(52), - [sym_block_quote] = STATE(52), - [sym_list] = STATE(52), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(53), + [sym_thematic_break] = STATE(53), + [sym_atx_heading] = STATE(53), + [sym_setext_heading] = STATE(53), + [sym_indented_code_block] = STATE(53), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(53), + [sym_html_block] = STATE(53), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(53), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(53), + [sym_block_quote] = STATE(53), + [sym_list] = STATE(53), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(52), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(53), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -38013,16 +38020,16 @@ 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_close] = ACTIONS(131), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -38033,90 +38040,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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(70), - [sym_thematic_break] = STATE(70), - [sym_atx_heading] = STATE(70), - [sym_setext_heading] = STATE(70), - [sym_indented_code_block] = STATE(70), + [sym__block] = STATE(53), + [sym_thematic_break] = STATE(53), + [sym_atx_heading] = STATE(53), + [sym_setext_heading] = STATE(53), + [sym_indented_code_block] = STATE(53), [sym__indented_chunk] = STATE(285), - [sym_fenced_code_block] = STATE(70), - [sym_html_block] = STATE(70), - [sym__html_block_1] = STATE(407), - [sym__html_block_2] = STATE(407), - [sym__html_block_3] = STATE(407), - [sym__html_block_4] = STATE(407), - [sym__html_block_5] = STATE(407), - [sym__html_block_6] = STATE(407), - [sym__html_block_7] = STATE(407), - [sym_link_reference_definition] = STATE(70), - [sym_paragraph] = STATE(342), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(70), - [sym_block_quote] = STATE(70), - [sym_list] = STATE(70), - [sym__list_plus] = STATE(399), - [sym__list_minus] = STATE(399), - [sym__list_star] = STATE(399), - [sym__list_dot] = STATE(399), - [sym__list_parenthesis] = STATE(399), - [sym_list_marker_plus] = STATE(39), - [sym_list_marker_minus] = STATE(40), - [sym_list_marker_star] = STATE(41), - [sym_list_marker_dot] = STATE(42), - [sym_list_marker_parenthesis] = STATE(43), - [sym__list_item_plus] = STATE(299), - [sym__list_item_minus] = STATE(301), - [sym__list_item_star] = STATE(302), - [sym__list_item_dot] = STATE(307), - [sym__list_item_parenthesis] = STATE(303), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), - [sym_link_label] = STATE(2478), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), - [sym__whitespace] = STATE(454), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(171), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(70), - [aux_sym__list_plus_repeat1] = STATE(299), - [aux_sym__list_minus_repeat1] = STATE(301), - [aux_sym__list_star_repeat1] = STATE(302), - [aux_sym__list_dot_repeat1] = STATE(307), - [aux_sym__list_parenthesis_repeat1] = STATE(303), - [ts_builtin_sym_end] = ACTIONS(325), + [sym_fenced_code_block] = STATE(53), + [sym_html_block] = STATE(53), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(53), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(53), + [sym_block_quote] = STATE(53), + [sym_list] = STATE(53), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), + [sym_list_marker_minus] = STATE(15), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), + [sym_link_label] = STATE(2529), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), + [sym__whitespace] = STATE(455), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(53), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -38149,17 +38155,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), [anon_sym_TILDE] = ACTIONS(7), - [aux_sym__html_block_1_token1] = ACTIONS(17), - [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), + [aux_sym__html_block_1_token1] = ACTIONS(75), + [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_entity_reference] = ACTIONS(35), [sym_numeric_character_reference] = ACTIONS(35), @@ -38170,15 +38176,16 @@ 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__thematic_break] = ACTIONS(51), + [sym__block_close] = ACTIONS(135), + [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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -38189,89 +38196,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), }, [68] = { - [sym__block] = STATE(52), - [sym_thematic_break] = STATE(52), - [sym_atx_heading] = STATE(52), - [sym_setext_heading] = STATE(52), - [sym_indented_code_block] = STATE(52), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(52), - [sym_html_block] = STATE(52), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(52), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(52), - [sym_block_quote] = STATE(52), - [sym_list] = STATE(52), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(53), + [sym_thematic_break] = STATE(53), + [sym_atx_heading] = STATE(53), + [sym_setext_heading] = STATE(53), + [sym_indented_code_block] = STATE(53), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(53), + [sym_html_block] = STATE(53), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(53), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(53), + [sym_block_quote] = STATE(53), + [sym_list] = STATE(53), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(52), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(53), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -38325,16 +38332,16 @@ 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_close] = ACTIONS(143), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_close] = ACTIONS(371), + [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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -38345,89 +38352,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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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(52), - [sym_thematic_break] = STATE(52), - [sym_atx_heading] = STATE(52), - [sym_setext_heading] = STATE(52), - [sym_indented_code_block] = STATE(52), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(52), - [sym_html_block] = STATE(52), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(52), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(52), - [sym_block_quote] = STATE(52), - [sym_list] = STATE(52), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(53), + [sym_thematic_break] = STATE(53), + [sym_atx_heading] = STATE(53), + [sym_setext_heading] = STATE(53), + [sym_indented_code_block] = STATE(53), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(53), + [sym_html_block] = STATE(53), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(53), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(53), + [sym_block_quote] = STATE(53), + [sym_list] = STATE(53), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(52), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(53), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -38481,16 +38488,16 @@ 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_close] = ACTIONS(327), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_close] = ACTIONS(373), + [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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -38501,245 +38508,245 @@ 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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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(70), - [sym_thematic_break] = STATE(70), - [sym_atx_heading] = STATE(70), - [sym_setext_heading] = STATE(70), - [sym_indented_code_block] = STATE(70), + [sym__block] = STATE(53), + [sym_thematic_break] = STATE(53), + [sym_atx_heading] = STATE(53), + [sym_setext_heading] = STATE(53), + [sym_indented_code_block] = STATE(53), [sym__indented_chunk] = STATE(285), - [sym_fenced_code_block] = STATE(70), - [sym_html_block] = STATE(70), - [sym__html_block_1] = STATE(407), - [sym__html_block_2] = STATE(407), - [sym__html_block_3] = STATE(407), - [sym__html_block_4] = STATE(407), - [sym__html_block_5] = STATE(407), - [sym__html_block_6] = STATE(407), - [sym__html_block_7] = STATE(407), - [sym_link_reference_definition] = STATE(70), - [sym_paragraph] = STATE(342), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(70), - [sym_block_quote] = STATE(70), - [sym_list] = STATE(70), - [sym__list_plus] = STATE(399), - [sym__list_minus] = STATE(399), - [sym__list_star] = STATE(399), - [sym__list_dot] = STATE(399), - [sym__list_parenthesis] = STATE(399), - [sym_list_marker_plus] = STATE(39), - [sym_list_marker_minus] = STATE(40), - [sym_list_marker_star] = STATE(41), - [sym_list_marker_dot] = STATE(42), - [sym_list_marker_parenthesis] = STATE(43), - [sym__list_item_plus] = STATE(299), - [sym__list_item_minus] = STATE(301), - [sym__list_item_star] = STATE(302), - [sym__list_item_dot] = STATE(307), - [sym__list_item_parenthesis] = STATE(303), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), - [sym_link_label] = STATE(2478), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), - [sym__whitespace] = STATE(454), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(171), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(70), - [aux_sym__list_plus_repeat1] = STATE(299), - [aux_sym__list_minus_repeat1] = STATE(301), - [aux_sym__list_star_repeat1] = STATE(302), - [aux_sym__list_dot_repeat1] = STATE(307), - [aux_sym__list_parenthesis_repeat1] = STATE(303), - [ts_builtin_sym_end] = ACTIONS(264), - [anon_sym_BANG] = ACTIONS(207), - [anon_sym_DQUOTE] = ACTIONS(210), - [anon_sym_POUND] = ACTIONS(210), - [anon_sym_DOLLAR] = ACTIONS(210), - [anon_sym_PERCENT] = ACTIONS(210), - [anon_sym_AMP] = ACTIONS(213), - [anon_sym_SQUOTE] = ACTIONS(210), - [anon_sym_LPAREN] = ACTIONS(210), - [anon_sym_RPAREN] = ACTIONS(210), - [anon_sym_STAR] = ACTIONS(210), - [anon_sym_PLUS] = ACTIONS(210), - [anon_sym_COMMA] = ACTIONS(210), - [anon_sym_DASH] = ACTIONS(210), - [anon_sym_DOT] = ACTIONS(210), - [anon_sym_SLASH] = ACTIONS(210), - [anon_sym_COLON] = ACTIONS(210), - [anon_sym_SEMI] = ACTIONS(210), - [anon_sym_LT] = ACTIONS(216), - [anon_sym_EQ] = ACTIONS(210), - [anon_sym_GT] = ACTIONS(210), - [anon_sym_QMARK] = ACTIONS(210), - [anon_sym_AT] = ACTIONS(210), - [anon_sym_LBRACK] = ACTIONS(219), - [anon_sym_BSLASH] = ACTIONS(222), - [anon_sym_RBRACK] = ACTIONS(210), - [anon_sym_CARET] = ACTIONS(210), - [anon_sym__] = ACTIONS(210), - [anon_sym_BQUOTE] = ACTIONS(210), - [anon_sym_LBRACE] = ACTIONS(210), - [anon_sym_PIPE] = ACTIONS(210), - [anon_sym_RBRACE] = ACTIONS(210), - [anon_sym_TILDE] = ACTIONS(210), - [aux_sym__html_block_1_token1] = ACTIONS(329), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(332), - [anon_sym_LT_QMARK] = ACTIONS(335), - [aux_sym__html_block_4_token1] = ACTIONS(338), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(341), - [aux_sym__html_block_6_token1] = ACTIONS(344), - [aux_sym__html_block_6_token2] = ACTIONS(347), - [sym__open_tag_html_block] = ACTIONS(350), - [sym__open_tag_html_block_newline] = ACTIONS(353), - [sym__closing_tag_html_block] = ACTIONS(350), - [sym__closing_tag_html_block_newline] = ACTIONS(353), - [sym_backslash_escape] = ACTIONS(252), - [sym_entity_reference] = ACTIONS(252), - [sym_numeric_character_reference] = ACTIONS(252), - [sym_uri_autolink] = ACTIONS(252), - [sym_email_autolink] = ACTIONS(252), - [sym__whitespace_ge_2] = ACTIONS(255), - [aux_sym__whitespace_token1] = ACTIONS(258), - [sym__word_no_digit] = ACTIONS(252), - [sym__digits] = ACTIONS(252), - [aux_sym__newline_token1] = ACTIONS(261), - [sym__block_quote_start] = ACTIONS(356), - [sym__indented_chunk_start] = ACTIONS(359), - [sym_atx_h1_marker] = ACTIONS(362), - [sym_atx_h2_marker] = ACTIONS(362), - [sym_atx_h3_marker] = ACTIONS(362), - [sym_atx_h4_marker] = ACTIONS(362), - [sym_atx_h5_marker] = ACTIONS(362), - [sym_atx_h6_marker] = ACTIONS(362), - [sym__thematic_break] = ACTIONS(365), - [sym__list_marker_minus] = ACTIONS(278), - [sym__list_marker_plus] = ACTIONS(281), - [sym__list_marker_star] = ACTIONS(284), - [sym__list_marker_parenthesis] = ACTIONS(287), - [sym__list_marker_dot] = ACTIONS(290), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(278), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(281), - [sym__list_marker_star_dont_interrupt] = ACTIONS(284), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(287), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(290), - [sym__fenced_code_block_start_backtick] = ACTIONS(368), - [sym__fenced_code_block_start_tilde] = ACTIONS(371), - [sym__blank_line_start] = ACTIONS(374), - [sym__code_span_start] = ACTIONS(302), - [sym__emphasis_open_star] = ACTIONS(305), - [sym__emphasis_open_underscore] = ACTIONS(308), + [sym_fenced_code_block] = STATE(53), + [sym_html_block] = STATE(53), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(53), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(53), + [sym_block_quote] = STATE(53), + [sym_list] = STATE(53), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), + [sym_list_marker_minus] = STATE(15), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), + [sym_link_label] = STATE(2529), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), + [sym__whitespace] = STATE(455), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(53), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), + [anon_sym_BANG] = ACTIONS(5), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(9), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(11), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_BSLASH] = ACTIONS(15), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [aux_sym__html_block_1_token1] = ACTIONS(75), + [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_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym__whitespace_ge_2] = ACTIONS(37), + [aux_sym__whitespace_token1] = ACTIONS(39), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), + [aux_sym__newline_token1] = ACTIONS(41), + [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__thematic_break] = ACTIONS(101), + [sym__list_marker_minus] = ACTIONS(53), + [sym__list_marker_plus] = ACTIONS(55), + [sym__list_marker_star] = ACTIONS(57), + [sym__list_marker_parenthesis] = ACTIONS(59), + [sym__list_marker_dot] = ACTIONS(61), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(53), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(55), + [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(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(52), - [sym_thematic_break] = STATE(52), - [sym_atx_heading] = STATE(52), - [sym_setext_heading] = STATE(52), - [sym_indented_code_block] = STATE(52), - [sym__indented_chunk] = STATE(324), - [sym_fenced_code_block] = STATE(52), - [sym_html_block] = STATE(52), - [sym__html_block_1] = STATE(413), - [sym__html_block_2] = STATE(413), - [sym__html_block_3] = STATE(413), - [sym__html_block_4] = STATE(413), - [sym__html_block_5] = STATE(413), - [sym__html_block_6] = STATE(413), - [sym__html_block_7] = STATE(413), - [sym_link_reference_definition] = STATE(52), - [sym_paragraph] = STATE(333), - [sym__soft_line_break] = STATE(899), - [sym__blank_line] = STATE(52), - [sym_block_quote] = STATE(52), - [sym_list] = STATE(52), - [sym__list_plus] = STATE(410), - [sym__list_minus] = STATE(410), - [sym__list_star] = STATE(410), - [sym__list_dot] = STATE(410), - [sym__list_parenthesis] = STATE(410), - [sym_list_marker_plus] = STATE(16), + [sym__block] = STATE(53), + [sym_thematic_break] = STATE(53), + [sym_atx_heading] = STATE(53), + [sym_setext_heading] = STATE(53), + [sym_indented_code_block] = STATE(53), + [sym__indented_chunk] = STATE(285), + [sym_fenced_code_block] = STATE(53), + [sym_html_block] = STATE(53), + [sym__html_block_1] = STATE(417), + [sym__html_block_2] = STATE(417), + [sym__html_block_3] = STATE(417), + [sym__html_block_4] = STATE(417), + [sym__html_block_5] = STATE(417), + [sym__html_block_6] = STATE(417), + [sym__html_block_7] = STATE(417), + [sym_link_reference_definition] = STATE(53), + [sym_paragraph] = STATE(355), + [sym__soft_line_break] = STATE(825), + [sym__blank_line] = STATE(53), + [sym_block_quote] = STATE(53), + [sym_list] = STATE(53), + [sym__list_plus] = STATE(383), + [sym__list_minus] = STATE(383), + [sym__list_star] = STATE(383), + [sym__list_dot] = STATE(383), + [sym__list_parenthesis] = STATE(383), + [sym_list_marker_plus] = STATE(25), [sym_list_marker_minus] = STATE(15), - [sym_list_marker_star] = STATE(14), - [sym_list_marker_dot] = STATE(13), - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_plus] = STATE(319), - [sym__list_item_minus] = STATE(318), - [sym__list_item_star] = STATE(317), - [sym__list_item_dot] = STATE(316), - [sym__list_item_parenthesis] = STATE(313), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), + [sym_list_marker_star] = STATE(23), + [sym_list_marker_dot] = STATE(2), + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_plus] = STATE(291), + [sym__list_item_minus] = STATE(297), + [sym__list_item_star] = STATE(321), + [sym__list_item_dot] = STATE(325), + [sym__list_item_parenthesis] = STATE(326), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), [sym_link_label] = STATE(2529), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), [sym__whitespace] = STATE(455), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(206), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [aux_sym_document_repeat1] = STATE(52), - [aux_sym__list_plus_repeat1] = STATE(319), - [aux_sym__list_minus_repeat1] = STATE(318), - [aux_sym__list_star_repeat1] = STATE(317), - [aux_sym__list_dot_repeat1] = STATE(316), - [aux_sym__list_parenthesis_repeat1] = STATE(313), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(199), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [aux_sym_document_repeat1] = STATE(53), + [aux_sym__list_plus_repeat1] = STATE(291), + [aux_sym__list_minus_repeat1] = STATE(297), + [aux_sym__list_star_repeat1] = STATE(321), + [aux_sym__list_dot_repeat1] = STATE(325), + [aux_sym__list_parenthesis_repeat1] = STATE(326), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -38793,16 +38800,16 @@ 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_close] = ACTIONS(137), - [sym__block_quote_start] = ACTIONS(97), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(101), - [sym_atx_h2_marker] = ACTIONS(101), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(101), - [sym_atx_h5_marker] = ACTIONS(101), - [sym_atx_h6_marker] = ACTIONS(101), - [sym__thematic_break] = ACTIONS(103), + [sym__block_close] = ACTIONS(153), + [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__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -38813,15 +38820,15 @@ 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(105), - [sym__fenced_code_block_start_tilde] = ACTIONS(107), - [sym__blank_line_start] = ACTIONS(109), + [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(74), + [aux_sym__ignore_matching_tokens] = STATE(75), [anon_sym_BANG] = ACTIONS(377), [anon_sym_DQUOTE] = ACTIONS(377), [anon_sym_POUND] = ACTIONS(377), @@ -38911,7 +38918,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__last_token_whitespace] = ACTIONS(383), }, [73] = { - [aux_sym__ignore_matching_tokens] = STATE(79), + [aux_sym__ignore_matching_tokens] = STATE(78), [ts_builtin_sym_end] = ACTIONS(377), [anon_sym_BANG] = ACTIONS(377), [anon_sym_DQUOTE] = ACTIONS(377), @@ -39001,7 +39008,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__last_token_whitespace] = ACTIONS(387), }, [74] = { - [aux_sym__ignore_matching_tokens] = STATE(76), + [aux_sym__ignore_matching_tokens] = STATE(79), [anon_sym_BANG] = ACTIONS(389), [anon_sym_DQUOTE] = ACTIONS(389), [anon_sym_POUND] = ACTIONS(389), @@ -39090,7 +39097,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__last_token_whitespace] = ACTIONS(393), }, [75] = { - [aux_sym__ignore_matching_tokens] = STATE(81), + [aux_sym__ignore_matching_tokens] = STATE(77), [anon_sym_BANG] = ACTIONS(389), [anon_sym_DQUOTE] = ACTIONS(389), [anon_sym_POUND] = ACTIONS(389), @@ -39179,7 +39186,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__last_token_whitespace] = ACTIONS(395), }, [76] = { - [aux_sym__ignore_matching_tokens] = STATE(76), + [aux_sym__ignore_matching_tokens] = STATE(81), + [ts_builtin_sym_end] = ACTIONS(397), [anon_sym_BANG] = ACTIONS(397), [anon_sym_DQUOTE] = ACTIONS(397), [anon_sym_POUND] = ACTIONS(397), @@ -39233,7 +39241,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__word_no_digit] = ACTIONS(397), [sym__digits] = ACTIONS(397), [aux_sym__newline_token1] = ACTIONS(397), - [sym__block_close] = ACTIONS(397), [sym__block_continuation] = ACTIONS(401), [sym__block_quote_continuation] = ACTIONS(401), [sym__block_quote_start] = ACTIONS(397), @@ -39269,184 +39276,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [77] = { [aux_sym__ignore_matching_tokens] = STATE(77), - [ts_builtin_sym_end] = ACTIONS(397), - [anon_sym_BANG] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(397), - [anon_sym_POUND] = ACTIONS(397), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_PERCENT] = ACTIONS(397), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(397), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_RPAREN] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_DOT] = ACTIONS(397), - [anon_sym_SLASH] = ACTIONS(397), - [anon_sym_COLON] = ACTIONS(397), - [anon_sym_SEMI] = ACTIONS(397), - [anon_sym_LT] = ACTIONS(399), - [anon_sym_EQ] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(397), - [anon_sym_QMARK] = ACTIONS(397), - [anon_sym_AT] = ACTIONS(397), - [anon_sym_LBRACK] = ACTIONS(397), - [anon_sym_BSLASH] = ACTIONS(399), - [anon_sym_RBRACK] = ACTIONS(397), - [anon_sym_CARET] = ACTIONS(397), - [anon_sym__] = ACTIONS(397), - [anon_sym_BQUOTE] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_PIPE] = ACTIONS(397), - [anon_sym_RBRACE] = ACTIONS(397), - [anon_sym_TILDE] = ACTIONS(397), - [aux_sym__html_block_1_token1] = ACTIONS(397), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(399), - [anon_sym_LT_QMARK] = ACTIONS(399), - [aux_sym__html_block_4_token1] = ACTIONS(399), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(397), - [aux_sym__html_block_6_token1] = ACTIONS(399), - [aux_sym__html_block_6_token2] = ACTIONS(397), - [sym__open_tag_html_block] = ACTIONS(397), - [sym__open_tag_html_block_newline] = ACTIONS(397), - [sym__closing_tag_html_block] = ACTIONS(397), - [sym__closing_tag_html_block_newline] = ACTIONS(397), - [sym_backslash_escape] = ACTIONS(397), - [sym_entity_reference] = ACTIONS(397), - [sym_numeric_character_reference] = ACTIONS(397), - [sym_uri_autolink] = ACTIONS(397), - [sym_email_autolink] = ACTIONS(397), - [sym__whitespace_ge_2] = ACTIONS(397), - [aux_sym__whitespace_token1] = ACTIONS(399), - [sym__word_no_digit] = ACTIONS(397), - [sym__digits] = ACTIONS(397), - [aux_sym__newline_token1] = ACTIONS(397), - [sym__block_continuation] = ACTIONS(404), - [sym__block_quote_continuation] = ACTIONS(404), - [sym__block_quote_start] = ACTIONS(397), - [sym__indented_chunk_start] = ACTIONS(397), - [sym_atx_h1_marker] = ACTIONS(397), - [sym_atx_h2_marker] = ACTIONS(397), - [sym_atx_h3_marker] = ACTIONS(397), - [sym_atx_h4_marker] = ACTIONS(397), - [sym_atx_h5_marker] = ACTIONS(397), - [sym_atx_h6_marker] = ACTIONS(397), - [sym_setext_h1_underline] = ACTIONS(397), - [sym_setext_h2_underline] = ACTIONS(397), - [sym__thematic_break] = ACTIONS(397), - [sym__list_marker_minus] = ACTIONS(397), - [sym__list_marker_plus] = ACTIONS(397), - [sym__list_marker_star] = ACTIONS(397), - [sym__list_marker_parenthesis] = ACTIONS(397), - [sym__list_marker_dot] = ACTIONS(397), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(397), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(397), - [sym__list_marker_star_dont_interrupt] = ACTIONS(397), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(397), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(397), - [sym__fenced_code_block_start_backtick] = ACTIONS(397), - [sym__fenced_code_block_start_tilde] = ACTIONS(397), - [sym__blank_line_start] = ACTIONS(397), - [sym__split_token] = ACTIONS(397), - [sym__soft_line_break_marker] = ACTIONS(397), - [sym__code_span_start] = ACTIONS(397), - [sym__emphasis_open_star] = ACTIONS(397), - [sym__emphasis_open_underscore] = ACTIONS(397), - [sym__last_token_whitespace] = ACTIONS(404), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_DQUOTE] = ACTIONS(403), + [anon_sym_POUND] = ACTIONS(403), + [anon_sym_DOLLAR] = ACTIONS(403), + [anon_sym_PERCENT] = ACTIONS(403), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_SQUOTE] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(403), + [anon_sym_RPAREN] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_PLUS] = ACTIONS(403), + [anon_sym_COMMA] = ACTIONS(403), + [anon_sym_DASH] = ACTIONS(403), + [anon_sym_DOT] = ACTIONS(403), + [anon_sym_SLASH] = ACTIONS(403), + [anon_sym_COLON] = ACTIONS(403), + [anon_sym_SEMI] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(403), + [anon_sym_GT] = ACTIONS(403), + [anon_sym_QMARK] = ACTIONS(403), + [anon_sym_AT] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_BSLASH] = ACTIONS(405), + [anon_sym_RBRACK] = ACTIONS(403), + [anon_sym_CARET] = ACTIONS(403), + [anon_sym__] = ACTIONS(403), + [anon_sym_BQUOTE] = ACTIONS(403), + [anon_sym_LBRACE] = ACTIONS(403), + [anon_sym_PIPE] = ACTIONS(403), + [anon_sym_RBRACE] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [aux_sym__html_block_1_token1] = ACTIONS(403), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(405), + [anon_sym_LT_QMARK] = ACTIONS(405), + [aux_sym__html_block_4_token1] = ACTIONS(405), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(403), + [aux_sym__html_block_6_token1] = ACTIONS(405), + [aux_sym__html_block_6_token2] = ACTIONS(403), + [sym__open_tag_html_block] = ACTIONS(403), + [sym__open_tag_html_block_newline] = ACTIONS(403), + [sym__closing_tag_html_block] = ACTIONS(403), + [sym__closing_tag_html_block_newline] = ACTIONS(403), + [sym_backslash_escape] = ACTIONS(403), + [sym_entity_reference] = ACTIONS(403), + [sym_numeric_character_reference] = ACTIONS(403), + [sym_uri_autolink] = ACTIONS(403), + [sym_email_autolink] = ACTIONS(403), + [sym__whitespace_ge_2] = ACTIONS(403), + [aux_sym__whitespace_token1] = ACTIONS(405), + [sym__word_no_digit] = ACTIONS(403), + [sym__digits] = ACTIONS(403), + [aux_sym__newline_token1] = ACTIONS(403), + [sym__block_close] = ACTIONS(403), + [sym__block_continuation] = ACTIONS(407), + [sym__block_quote_continuation] = ACTIONS(407), + [sym__block_quote_start] = ACTIONS(403), + [sym__indented_chunk_start] = ACTIONS(403), + [sym_atx_h1_marker] = ACTIONS(403), + [sym_atx_h2_marker] = ACTIONS(403), + [sym_atx_h3_marker] = ACTIONS(403), + [sym_atx_h4_marker] = ACTIONS(403), + [sym_atx_h5_marker] = ACTIONS(403), + [sym_atx_h6_marker] = ACTIONS(403), + [sym_setext_h1_underline] = ACTIONS(403), + [sym_setext_h2_underline] = ACTIONS(403), + [sym__thematic_break] = ACTIONS(403), + [sym__list_marker_minus] = ACTIONS(403), + [sym__list_marker_plus] = ACTIONS(403), + [sym__list_marker_star] = ACTIONS(403), + [sym__list_marker_parenthesis] = ACTIONS(403), + [sym__list_marker_dot] = ACTIONS(403), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(403), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(403), + [sym__list_marker_star_dont_interrupt] = ACTIONS(403), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(403), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(403), + [sym__fenced_code_block_start_backtick] = ACTIONS(403), + [sym__fenced_code_block_start_tilde] = ACTIONS(403), + [sym__blank_line_start] = ACTIONS(403), + [sym__split_token] = ACTIONS(403), + [sym__soft_line_break_marker] = ACTIONS(403), + [sym__code_span_start] = ACTIONS(403), + [sym__emphasis_open_star] = ACTIONS(403), + [sym__emphasis_open_underscore] = ACTIONS(403), + [sym__last_token_whitespace] = ACTIONS(407), }, [78] = { - [aux_sym__ignore_matching_tokens] = STATE(77), - [ts_builtin_sym_end] = ACTIONS(407), - [anon_sym_BANG] = ACTIONS(407), - [anon_sym_DQUOTE] = ACTIONS(407), - [anon_sym_POUND] = ACTIONS(407), - [anon_sym_DOLLAR] = ACTIONS(407), - [anon_sym_PERCENT] = ACTIONS(407), - [anon_sym_AMP] = ACTIONS(409), - [anon_sym_SQUOTE] = ACTIONS(407), - [anon_sym_LPAREN] = ACTIONS(407), - [anon_sym_RPAREN] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(407), - [anon_sym_COMMA] = ACTIONS(407), - [anon_sym_DASH] = ACTIONS(407), - [anon_sym_DOT] = ACTIONS(407), - [anon_sym_SLASH] = ACTIONS(407), - [anon_sym_COLON] = ACTIONS(407), - [anon_sym_SEMI] = ACTIONS(407), - [anon_sym_LT] = ACTIONS(409), - [anon_sym_EQ] = ACTIONS(407), - [anon_sym_GT] = ACTIONS(407), - [anon_sym_QMARK] = ACTIONS(407), - [anon_sym_AT] = ACTIONS(407), - [anon_sym_LBRACK] = ACTIONS(407), - [anon_sym_BSLASH] = ACTIONS(409), - [anon_sym_RBRACK] = ACTIONS(407), - [anon_sym_CARET] = ACTIONS(407), - [anon_sym__] = ACTIONS(407), - [anon_sym_BQUOTE] = ACTIONS(407), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_PIPE] = ACTIONS(407), - [anon_sym_RBRACE] = ACTIONS(407), - [anon_sym_TILDE] = ACTIONS(407), - [aux_sym__html_block_1_token1] = ACTIONS(407), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(409), - [anon_sym_LT_QMARK] = ACTIONS(409), - [aux_sym__html_block_4_token1] = ACTIONS(409), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(407), - [aux_sym__html_block_6_token1] = ACTIONS(409), - [aux_sym__html_block_6_token2] = ACTIONS(407), - [sym__open_tag_html_block] = ACTIONS(407), - [sym__open_tag_html_block_newline] = ACTIONS(407), - [sym__closing_tag_html_block] = ACTIONS(407), - [sym__closing_tag_html_block_newline] = ACTIONS(407), - [sym_backslash_escape] = ACTIONS(407), - [sym_entity_reference] = ACTIONS(407), - [sym_numeric_character_reference] = ACTIONS(407), - [sym_uri_autolink] = ACTIONS(407), - [sym_email_autolink] = ACTIONS(407), - [sym__whitespace_ge_2] = ACTIONS(407), - [aux_sym__whitespace_token1] = ACTIONS(409), - [sym__word_no_digit] = ACTIONS(407), - [sym__digits] = ACTIONS(407), - [aux_sym__newline_token1] = ACTIONS(407), - [sym__block_continuation] = ACTIONS(411), - [sym__block_quote_continuation] = ACTIONS(411), - [sym__block_quote_start] = ACTIONS(407), - [sym__indented_chunk_start] = ACTIONS(407), - [sym_atx_h1_marker] = ACTIONS(407), - [sym_atx_h2_marker] = ACTIONS(407), - [sym_atx_h3_marker] = ACTIONS(407), - [sym_atx_h4_marker] = ACTIONS(407), - [sym_atx_h5_marker] = ACTIONS(407), - [sym_atx_h6_marker] = ACTIONS(407), - [sym_setext_h1_underline] = ACTIONS(407), - [sym_setext_h2_underline] = ACTIONS(407), - [sym__thematic_break] = ACTIONS(407), - [sym__list_marker_minus] = ACTIONS(407), - [sym__list_marker_plus] = ACTIONS(407), - [sym__list_marker_star] = ACTIONS(407), - [sym__list_marker_parenthesis] = ACTIONS(407), - [sym__list_marker_dot] = ACTIONS(407), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(407), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(407), - [sym__list_marker_star_dont_interrupt] = ACTIONS(407), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(407), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(407), - [sym__fenced_code_block_start_backtick] = ACTIONS(407), - [sym__fenced_code_block_start_tilde] = ACTIONS(407), - [sym__blank_line_start] = ACTIONS(407), - [sym__split_token] = ACTIONS(407), - [sym__soft_line_break_marker] = ACTIONS(407), - [sym__code_span_start] = ACTIONS(407), - [sym__emphasis_open_star] = ACTIONS(407), - [sym__emphasis_open_underscore] = ACTIONS(407), - [sym__last_token_whitespace] = ACTIONS(411), - }, - [79] = { - [aux_sym__ignore_matching_tokens] = STATE(77), + [aux_sym__ignore_matching_tokens] = STATE(81), [ts_builtin_sym_end] = ACTIONS(389), [anon_sym_BANG] = ACTIONS(389), [anon_sym_DQUOTE] = ACTIONS(389), @@ -39501,8 +39419,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__word_no_digit] = ACTIONS(389), [sym__digits] = ACTIONS(389), [aux_sym__newline_token1] = ACTIONS(389), - [sym__block_continuation] = ACTIONS(411), - [sym__block_quote_continuation] = ACTIONS(411), + [sym__block_continuation] = ACTIONS(401), + [sym__block_quote_continuation] = ACTIONS(401), [sym__block_quote_start] = ACTIONS(389), [sym__indented_chunk_start] = ACTIONS(389), [sym_atx_h1_marker] = ACTIONS(389), @@ -39532,10 +39450,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(389), [sym__emphasis_open_star] = ACTIONS(389), [sym__emphasis_open_underscore] = ACTIONS(389), - [sym__last_token_whitespace] = ACTIONS(411), + [sym__last_token_whitespace] = ACTIONS(401), + }, + [79] = { + [aux_sym__ignore_matching_tokens] = STATE(77), + [anon_sym_BANG] = ACTIONS(397), + [anon_sym_DQUOTE] = ACTIONS(397), + [anon_sym_POUND] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_PERCENT] = ACTIONS(397), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_SQUOTE] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_RPAREN] = ACTIONS(397), + [anon_sym_STAR] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_COMMA] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(397), + [anon_sym_SLASH] = ACTIONS(397), + [anon_sym_COLON] = ACTIONS(397), + [anon_sym_SEMI] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_EQ] = ACTIONS(397), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(397), + [anon_sym_BSLASH] = ACTIONS(399), + [anon_sym_RBRACK] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(397), + [anon_sym__] = ACTIONS(397), + [anon_sym_BQUOTE] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_RBRACE] = ACTIONS(397), + [anon_sym_TILDE] = ACTIONS(397), + [aux_sym__html_block_1_token1] = ACTIONS(397), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(399), + [anon_sym_LT_QMARK] = ACTIONS(399), + [aux_sym__html_block_4_token1] = ACTIONS(399), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(397), + [aux_sym__html_block_6_token1] = ACTIONS(399), + [aux_sym__html_block_6_token2] = ACTIONS(397), + [sym__open_tag_html_block] = ACTIONS(397), + [sym__open_tag_html_block_newline] = ACTIONS(397), + [sym__closing_tag_html_block] = ACTIONS(397), + [sym__closing_tag_html_block_newline] = ACTIONS(397), + [sym_backslash_escape] = ACTIONS(397), + [sym_entity_reference] = ACTIONS(397), + [sym_numeric_character_reference] = ACTIONS(397), + [sym_uri_autolink] = ACTIONS(397), + [sym_email_autolink] = ACTIONS(397), + [sym__whitespace_ge_2] = ACTIONS(397), + [aux_sym__whitespace_token1] = ACTIONS(399), + [sym__word_no_digit] = ACTIONS(397), + [sym__digits] = ACTIONS(397), + [aux_sym__newline_token1] = ACTIONS(397), + [sym__block_close] = ACTIONS(397), + [sym__block_continuation] = ACTIONS(395), + [sym__block_quote_continuation] = ACTIONS(395), + [sym__block_quote_start] = ACTIONS(397), + [sym__indented_chunk_start] = ACTIONS(397), + [sym_atx_h1_marker] = ACTIONS(397), + [sym_atx_h2_marker] = ACTIONS(397), + [sym_atx_h3_marker] = ACTIONS(397), + [sym_atx_h4_marker] = ACTIONS(397), + [sym_atx_h5_marker] = ACTIONS(397), + [sym_atx_h6_marker] = ACTIONS(397), + [sym_setext_h1_underline] = ACTIONS(397), + [sym_setext_h2_underline] = ACTIONS(397), + [sym__thematic_break] = ACTIONS(397), + [sym__list_marker_minus] = ACTIONS(397), + [sym__list_marker_plus] = ACTIONS(397), + [sym__list_marker_star] = ACTIONS(397), + [sym__list_marker_parenthesis] = ACTIONS(397), + [sym__list_marker_dot] = ACTIONS(397), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(397), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(397), + [sym__list_marker_star_dont_interrupt] = ACTIONS(397), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(397), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(397), + [sym__fenced_code_block_start_backtick] = ACTIONS(397), + [sym__fenced_code_block_start_tilde] = ACTIONS(397), + [sym__blank_line_start] = ACTIONS(397), + [sym__split_token] = ACTIONS(397), + [sym__soft_line_break_marker] = ACTIONS(397), + [sym__code_span_start] = ACTIONS(397), + [sym__emphasis_open_star] = ACTIONS(397), + [sym__emphasis_open_underscore] = ACTIONS(397), + [sym__last_token_whitespace] = ACTIONS(395), }, [80] = { - [aux_sym__ignore_matching_tokens] = STATE(78), + [aux_sym__ignore_matching_tokens] = STATE(76), [ts_builtin_sym_end] = ACTIONS(389), [anon_sym_BANG] = ACTIONS(389), [anon_sym_DQUOTE] = ACTIONS(389), @@ -39590,8 +39597,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__word_no_digit] = ACTIONS(389), [sym__digits] = ACTIONS(389), [aux_sym__newline_token1] = ACTIONS(389), - [sym__block_continuation] = ACTIONS(413), - [sym__block_quote_continuation] = ACTIONS(413), + [sym__block_continuation] = ACTIONS(410), + [sym__block_quote_continuation] = ACTIONS(410), [sym__block_quote_start] = ACTIONS(389), [sym__indented_chunk_start] = ACTIONS(389), [sym_atx_h1_marker] = ACTIONS(389), @@ -39621,110 +39628,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(389), [sym__emphasis_open_star] = ACTIONS(389), [sym__emphasis_open_underscore] = ACTIONS(389), - [sym__last_token_whitespace] = ACTIONS(413), + [sym__last_token_whitespace] = ACTIONS(410), }, [81] = { - [aux_sym__ignore_matching_tokens] = STATE(76), - [anon_sym_BANG] = ACTIONS(407), - [anon_sym_DQUOTE] = ACTIONS(407), - [anon_sym_POUND] = ACTIONS(407), - [anon_sym_DOLLAR] = ACTIONS(407), - [anon_sym_PERCENT] = ACTIONS(407), - [anon_sym_AMP] = ACTIONS(409), - [anon_sym_SQUOTE] = ACTIONS(407), - [anon_sym_LPAREN] = ACTIONS(407), - [anon_sym_RPAREN] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(407), - [anon_sym_COMMA] = ACTIONS(407), - [anon_sym_DASH] = ACTIONS(407), - [anon_sym_DOT] = ACTIONS(407), - [anon_sym_SLASH] = ACTIONS(407), - [anon_sym_COLON] = ACTIONS(407), - [anon_sym_SEMI] = ACTIONS(407), - [anon_sym_LT] = ACTIONS(409), - [anon_sym_EQ] = ACTIONS(407), - [anon_sym_GT] = ACTIONS(407), - [anon_sym_QMARK] = ACTIONS(407), - [anon_sym_AT] = ACTIONS(407), - [anon_sym_LBRACK] = ACTIONS(407), - [anon_sym_BSLASH] = ACTIONS(409), - [anon_sym_RBRACK] = ACTIONS(407), - [anon_sym_CARET] = ACTIONS(407), - [anon_sym__] = ACTIONS(407), - [anon_sym_BQUOTE] = ACTIONS(407), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_PIPE] = ACTIONS(407), - [anon_sym_RBRACE] = ACTIONS(407), - [anon_sym_TILDE] = ACTIONS(407), - [aux_sym__html_block_1_token1] = ACTIONS(407), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(409), - [anon_sym_LT_QMARK] = ACTIONS(409), - [aux_sym__html_block_4_token1] = ACTIONS(409), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(407), - [aux_sym__html_block_6_token1] = ACTIONS(409), - [aux_sym__html_block_6_token2] = ACTIONS(407), - [sym__open_tag_html_block] = ACTIONS(407), - [sym__open_tag_html_block_newline] = ACTIONS(407), - [sym__closing_tag_html_block] = ACTIONS(407), - [sym__closing_tag_html_block_newline] = ACTIONS(407), - [sym_backslash_escape] = ACTIONS(407), - [sym_entity_reference] = ACTIONS(407), - [sym_numeric_character_reference] = ACTIONS(407), - [sym_uri_autolink] = ACTIONS(407), - [sym_email_autolink] = ACTIONS(407), - [sym__whitespace_ge_2] = ACTIONS(407), - [aux_sym__whitespace_token1] = ACTIONS(409), - [sym__word_no_digit] = ACTIONS(407), - [sym__digits] = ACTIONS(407), - [aux_sym__newline_token1] = ACTIONS(407), - [sym__block_close] = ACTIONS(407), - [sym__block_continuation] = ACTIONS(393), - [sym__block_quote_continuation] = ACTIONS(393), - [sym__block_quote_start] = ACTIONS(407), - [sym__indented_chunk_start] = ACTIONS(407), - [sym_atx_h1_marker] = ACTIONS(407), - [sym_atx_h2_marker] = ACTIONS(407), - [sym_atx_h3_marker] = ACTIONS(407), - [sym_atx_h4_marker] = ACTIONS(407), - [sym_atx_h5_marker] = ACTIONS(407), - [sym_atx_h6_marker] = ACTIONS(407), - [sym_setext_h1_underline] = ACTIONS(407), - [sym_setext_h2_underline] = ACTIONS(407), - [sym__thematic_break] = ACTIONS(407), - [sym__list_marker_minus] = ACTIONS(407), - [sym__list_marker_plus] = ACTIONS(407), - [sym__list_marker_star] = ACTIONS(407), - [sym__list_marker_parenthesis] = ACTIONS(407), - [sym__list_marker_dot] = ACTIONS(407), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(407), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(407), - [sym__list_marker_star_dont_interrupt] = ACTIONS(407), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(407), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(407), - [sym__fenced_code_block_start_backtick] = ACTIONS(407), - [sym__fenced_code_block_start_tilde] = ACTIONS(407), - [sym__blank_line_start] = ACTIONS(407), - [sym__split_token] = ACTIONS(407), - [sym__soft_line_break_marker] = ACTIONS(407), - [sym__code_span_start] = ACTIONS(407), - [sym__emphasis_open_star] = ACTIONS(407), - [sym__emphasis_open_underscore] = ACTIONS(407), - [sym__last_token_whitespace] = ACTIONS(393), + [aux_sym__ignore_matching_tokens] = STATE(81), + [ts_builtin_sym_end] = ACTIONS(403), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_DQUOTE] = ACTIONS(403), + [anon_sym_POUND] = ACTIONS(403), + [anon_sym_DOLLAR] = ACTIONS(403), + [anon_sym_PERCENT] = ACTIONS(403), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_SQUOTE] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(403), + [anon_sym_RPAREN] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_PLUS] = ACTIONS(403), + [anon_sym_COMMA] = ACTIONS(403), + [anon_sym_DASH] = ACTIONS(403), + [anon_sym_DOT] = ACTIONS(403), + [anon_sym_SLASH] = ACTIONS(403), + [anon_sym_COLON] = ACTIONS(403), + [anon_sym_SEMI] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(403), + [anon_sym_GT] = ACTIONS(403), + [anon_sym_QMARK] = ACTIONS(403), + [anon_sym_AT] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_BSLASH] = ACTIONS(405), + [anon_sym_RBRACK] = ACTIONS(403), + [anon_sym_CARET] = ACTIONS(403), + [anon_sym__] = ACTIONS(403), + [anon_sym_BQUOTE] = ACTIONS(403), + [anon_sym_LBRACE] = ACTIONS(403), + [anon_sym_PIPE] = ACTIONS(403), + [anon_sym_RBRACE] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [aux_sym__html_block_1_token1] = ACTIONS(403), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(405), + [anon_sym_LT_QMARK] = ACTIONS(405), + [aux_sym__html_block_4_token1] = ACTIONS(405), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(403), + [aux_sym__html_block_6_token1] = ACTIONS(405), + [aux_sym__html_block_6_token2] = ACTIONS(403), + [sym__open_tag_html_block] = ACTIONS(403), + [sym__open_tag_html_block_newline] = ACTIONS(403), + [sym__closing_tag_html_block] = ACTIONS(403), + [sym__closing_tag_html_block_newline] = ACTIONS(403), + [sym_backslash_escape] = ACTIONS(403), + [sym_entity_reference] = ACTIONS(403), + [sym_numeric_character_reference] = ACTIONS(403), + [sym_uri_autolink] = ACTIONS(403), + [sym_email_autolink] = ACTIONS(403), + [sym__whitespace_ge_2] = ACTIONS(403), + [aux_sym__whitespace_token1] = ACTIONS(405), + [sym__word_no_digit] = ACTIONS(403), + [sym__digits] = ACTIONS(403), + [aux_sym__newline_token1] = ACTIONS(403), + [sym__block_continuation] = ACTIONS(412), + [sym__block_quote_continuation] = ACTIONS(412), + [sym__block_quote_start] = ACTIONS(403), + [sym__indented_chunk_start] = ACTIONS(403), + [sym_atx_h1_marker] = ACTIONS(403), + [sym_atx_h2_marker] = ACTIONS(403), + [sym_atx_h3_marker] = ACTIONS(403), + [sym_atx_h4_marker] = ACTIONS(403), + [sym_atx_h5_marker] = ACTIONS(403), + [sym_atx_h6_marker] = ACTIONS(403), + [sym_setext_h1_underline] = ACTIONS(403), + [sym_setext_h2_underline] = ACTIONS(403), + [sym__thematic_break] = ACTIONS(403), + [sym__list_marker_minus] = ACTIONS(403), + [sym__list_marker_plus] = ACTIONS(403), + [sym__list_marker_star] = ACTIONS(403), + [sym__list_marker_parenthesis] = ACTIONS(403), + [sym__list_marker_dot] = ACTIONS(403), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(403), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(403), + [sym__list_marker_star_dont_interrupt] = ACTIONS(403), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(403), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(403), + [sym__fenced_code_block_start_backtick] = ACTIONS(403), + [sym__fenced_code_block_start_tilde] = ACTIONS(403), + [sym__blank_line_start] = ACTIONS(403), + [sym__split_token] = ACTIONS(403), + [sym__soft_line_break_marker] = ACTIONS(403), + [sym__code_span_start] = ACTIONS(403), + [sym__emphasis_open_star] = ACTIONS(403), + [sym__emphasis_open_underscore] = ACTIONS(403), + [sym__last_token_whitespace] = ACTIONS(412), }, [82] = { - [sym__block_interrupt_paragraph] = STATE(773), - [sym_thematic_break] = STATE(773), - [sym_atx_heading] = STATE(773), - [sym_fenced_code_block] = STATE(773), - [sym__html_block_1] = STATE(773), - [sym__html_block_2] = STATE(773), - [sym__html_block_3] = STATE(773), - [sym__html_block_4] = STATE(773), - [sym__html_block_5] = STATE(773), - [sym__html_block_6] = STATE(773), - [sym__blank_line] = STATE(773), - [sym_block_quote] = STATE(773), + [sym__block_interrupt_paragraph] = STATE(768), + [sym_thematic_break] = STATE(768), + [sym_atx_heading] = STATE(768), + [sym_fenced_code_block] = STATE(768), + [sym__html_block_1] = STATE(768), + [sym__html_block_2] = STATE(768), + [sym__html_block_3] = STATE(768), + [sym__html_block_4] = STATE(768), + [sym__html_block_5] = STATE(768), + [sym__html_block_6] = STATE(768), + [sym__blank_line] = STATE(768), + [sym_block_quote] = STATE(768), [anon_sym_BANG] = ACTIONS(415), [anon_sym_DQUOTE] = ACTIONS(415), [anon_sym_POUND] = ACTIONS(415), @@ -39797,11 +39804,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(415), [sym__emphasis_open_star] = ACTIONS(415), [sym__emphasis_open_underscore] = ACTIONS(415), - [sym__emphasis_close_star] = ACTIONS(415), + [sym__emphasis_close_underscore] = ACTIONS(415), }, [83] = { - [aux_sym__ignore_matching_tokens] = STATE(92), - [ts_builtin_sym_end] = ACTIONS(377), + [aux_sym__soft_line_break_repeat1] = STATE(2136), + [aux_sym__paragraph_end_newline_repeat1] = STATE(113), + [anon_sym_BANG] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(449), + [anon_sym_POUND] = ACTIONS(449), + [anon_sym_DOLLAR] = ACTIONS(449), + [anon_sym_PERCENT] = ACTIONS(449), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_SQUOTE] = ACTIONS(449), + [anon_sym_LPAREN] = ACTIONS(449), + [anon_sym_RPAREN] = ACTIONS(449), + [anon_sym_STAR] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_COMMA] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(449), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_SLASH] = ACTIONS(449), + [anon_sym_COLON] = ACTIONS(449), + [anon_sym_SEMI] = ACTIONS(449), + [anon_sym_LT] = ACTIONS(451), + [anon_sym_EQ] = ACTIONS(449), + [anon_sym_GT] = ACTIONS(449), + [anon_sym_QMARK] = ACTIONS(449), + [anon_sym_AT] = ACTIONS(449), + [anon_sym_LBRACK] = ACTIONS(449), + [anon_sym_BSLASH] = ACTIONS(451), + [anon_sym_RBRACK] = ACTIONS(449), + [anon_sym_CARET] = ACTIONS(449), + [anon_sym__] = ACTIONS(449), + [anon_sym_BQUOTE] = ACTIONS(449), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_PIPE] = ACTIONS(449), + [anon_sym_RBRACE] = ACTIONS(449), + [anon_sym_TILDE] = ACTIONS(449), + [aux_sym__html_block_1_token1] = ACTIONS(449), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(451), + [anon_sym_LT_QMARK] = ACTIONS(451), + [aux_sym__html_block_4_token1] = ACTIONS(451), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(449), + [aux_sym__html_block_6_token1] = ACTIONS(451), + [aux_sym__html_block_6_token2] = ACTIONS(449), + [sym__open_tag_html_block] = ACTIONS(449), + [sym__open_tag_html_block_newline] = ACTIONS(449), + [sym__closing_tag_html_block] = ACTIONS(449), + [sym__closing_tag_html_block_newline] = ACTIONS(449), + [sym_backslash_escape] = ACTIONS(449), + [sym_entity_reference] = ACTIONS(449), + [sym_numeric_character_reference] = ACTIONS(449), + [sym_uri_autolink] = ACTIONS(449), + [sym_email_autolink] = ACTIONS(449), + [sym__whitespace_ge_2] = ACTIONS(449), + [aux_sym__whitespace_token1] = ACTIONS(451), + [sym__word_no_digit] = ACTIONS(449), + [sym__digits] = ACTIONS(449), + [aux_sym__newline_token1] = ACTIONS(449), + [sym__block_close] = ACTIONS(449), + [sym__block_quote_start] = ACTIONS(449), + [sym__indented_chunk_start] = ACTIONS(449), + [sym_atx_h1_marker] = ACTIONS(449), + [sym_atx_h2_marker] = ACTIONS(449), + [sym_atx_h3_marker] = ACTIONS(449), + [sym_atx_h4_marker] = ACTIONS(449), + [sym_atx_h5_marker] = ACTIONS(449), + [sym_atx_h6_marker] = ACTIONS(449), + [sym_setext_h1_underline] = ACTIONS(449), + [sym_setext_h2_underline] = ACTIONS(449), + [sym__thematic_break] = ACTIONS(449), + [sym__list_marker_minus] = ACTIONS(449), + [sym__list_marker_plus] = ACTIONS(449), + [sym__list_marker_star] = ACTIONS(449), + [sym__list_marker_parenthesis] = ACTIONS(449), + [sym__list_marker_dot] = ACTIONS(449), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(449), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(449), + [sym__list_marker_star_dont_interrupt] = ACTIONS(449), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(449), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(449), + [sym__fenced_code_block_start_backtick] = ACTIONS(449), + [sym__fenced_code_block_start_tilde] = ACTIONS(449), + [sym__blank_line_start] = ACTIONS(449), + [sym__split_token] = ACTIONS(453), + [sym__soft_line_break_marker] = ACTIONS(455), + [sym__code_span_start] = ACTIONS(449), + [sym__emphasis_open_star] = ACTIONS(449), + [sym__emphasis_open_underscore] = ACTIONS(449), + }, + [84] = { + [aux_sym__ignore_matching_tokens] = STATE(97), [anon_sym_BANG] = ACTIONS(377), [anon_sym_DQUOTE] = ACTIONS(377), [anon_sym_POUND] = ACTIONS(377), @@ -39855,9 +39948,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__word_no_digit] = ACTIONS(377), [sym__digits] = ACTIONS(377), [aux_sym__newline_token1] = ACTIONS(377), - [sym__line_ending] = ACTIONS(449), - [sym__block_continuation] = ACTIONS(451), - [sym__block_quote_continuation] = ACTIONS(451), + [sym__line_ending] = ACTIONS(457), + [sym__block_close] = ACTIONS(377), + [sym__block_continuation] = ACTIONS(459), + [sym__block_quote_continuation] = ACTIONS(459), [sym__block_quote_start] = ACTIONS(377), [sym__indented_chunk_start] = ACTIONS(377), [sym_atx_h1_marker] = ACTIONS(377), @@ -39884,97 +39978,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(377), [sym__emphasis_open_star] = ACTIONS(377), [sym__emphasis_open_underscore] = ACTIONS(377), - [sym__last_token_whitespace] = ACTIONS(451), - }, - [84] = { - [aux_sym__soft_line_break_repeat1] = STATE(2130), - [aux_sym__paragraph_end_newline_repeat1] = STATE(223), - [ts_builtin_sym_end] = ACTIONS(453), - [anon_sym_BANG] = ACTIONS(453), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_POUND] = ACTIONS(453), - [anon_sym_DOLLAR] = ACTIONS(453), - [anon_sym_PERCENT] = ACTIONS(453), - [anon_sym_AMP] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(453), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_RPAREN] = ACTIONS(453), - [anon_sym_STAR] = ACTIONS(453), - [anon_sym_PLUS] = ACTIONS(453), - [anon_sym_COMMA] = ACTIONS(453), - [anon_sym_DASH] = ACTIONS(453), - [anon_sym_DOT] = ACTIONS(453), - [anon_sym_SLASH] = ACTIONS(453), - [anon_sym_COLON] = ACTIONS(453), - [anon_sym_SEMI] = ACTIONS(453), - [anon_sym_LT] = ACTIONS(455), - [anon_sym_EQ] = ACTIONS(453), - [anon_sym_GT] = ACTIONS(453), - [anon_sym_QMARK] = ACTIONS(453), - [anon_sym_AT] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(453), - [anon_sym_BSLASH] = ACTIONS(455), - [anon_sym_RBRACK] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(453), - [anon_sym__] = ACTIONS(453), - [anon_sym_BQUOTE] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(453), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(453), - [anon_sym_TILDE] = ACTIONS(453), - [aux_sym__html_block_1_token1] = ACTIONS(453), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(455), - [anon_sym_LT_QMARK] = ACTIONS(455), - [aux_sym__html_block_4_token1] = ACTIONS(455), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(453), - [aux_sym__html_block_6_token1] = ACTIONS(455), - [aux_sym__html_block_6_token2] = ACTIONS(453), - [sym__open_tag_html_block] = ACTIONS(453), - [sym__open_tag_html_block_newline] = ACTIONS(453), - [sym__closing_tag_html_block] = ACTIONS(453), - [sym__closing_tag_html_block_newline] = ACTIONS(453), - [sym_backslash_escape] = ACTIONS(453), - [sym_entity_reference] = ACTIONS(453), - [sym_numeric_character_reference] = ACTIONS(453), - [sym_uri_autolink] = ACTIONS(453), - [sym_email_autolink] = ACTIONS(453), - [sym__whitespace_ge_2] = ACTIONS(453), - [aux_sym__whitespace_token1] = ACTIONS(455), - [sym__word_no_digit] = ACTIONS(453), - [sym__digits] = ACTIONS(453), - [aux_sym__newline_token1] = ACTIONS(453), - [sym__block_quote_start] = ACTIONS(453), - [sym__indented_chunk_start] = ACTIONS(453), - [sym_atx_h1_marker] = ACTIONS(453), - [sym_atx_h2_marker] = ACTIONS(453), - [sym_atx_h3_marker] = ACTIONS(453), - [sym_atx_h4_marker] = ACTIONS(453), - [sym_atx_h5_marker] = ACTIONS(453), - [sym_atx_h6_marker] = ACTIONS(453), - [sym_setext_h1_underline] = ACTIONS(453), - [sym_setext_h2_underline] = ACTIONS(453), - [sym__thematic_break] = ACTIONS(453), - [sym__list_marker_minus] = ACTIONS(453), - [sym__list_marker_plus] = ACTIONS(453), - [sym__list_marker_star] = ACTIONS(453), - [sym__list_marker_parenthesis] = ACTIONS(453), - [sym__list_marker_dot] = ACTIONS(453), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(453), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(453), - [sym__list_marker_star_dont_interrupt] = ACTIONS(453), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(453), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(453), - [sym__fenced_code_block_start_backtick] = ACTIONS(453), - [sym__fenced_code_block_start_tilde] = ACTIONS(453), - [sym__blank_line_start] = ACTIONS(453), - [sym__split_token] = ACTIONS(457), - [sym__soft_line_break_marker] = ACTIONS(459), - [sym__code_span_start] = ACTIONS(453), - [sym__emphasis_open_star] = ACTIONS(453), - [sym__emphasis_open_underscore] = ACTIONS(453), + [sym__last_token_whitespace] = ACTIONS(459), }, [85] = { - [aux_sym__ignore_matching_tokens] = STATE(98), + [aux_sym__ignore_matching_tokens] = STATE(100), + [ts_builtin_sym_end] = ACTIONS(377), [anon_sym_BANG] = ACTIONS(377), [anon_sym_DQUOTE] = ACTIONS(377), [anon_sym_POUND] = ACTIONS(377), @@ -40029,7 +40037,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__digits] = ACTIONS(377), [aux_sym__newline_token1] = ACTIONS(377), [sym__line_ending] = ACTIONS(461), - [sym__block_close] = ACTIONS(377), [sym__block_continuation] = ACTIONS(463), [sym__block_quote_continuation] = ACTIONS(463), [sym__block_quote_start] = ACTIONS(377), @@ -40061,105 +40068,192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__last_token_whitespace] = ACTIONS(463), }, [86] = { - [aux_sym__soft_line_break_repeat1] = STATE(2130), - [aux_sym__paragraph_end_newline_repeat1] = STATE(227), - [anon_sym_BANG] = ACTIONS(453), - [anon_sym_DQUOTE] = ACTIONS(453), - [anon_sym_POUND] = ACTIONS(453), - [anon_sym_DOLLAR] = ACTIONS(453), - [anon_sym_PERCENT] = ACTIONS(453), - [anon_sym_AMP] = ACTIONS(455), - [anon_sym_SQUOTE] = ACTIONS(453), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_RPAREN] = ACTIONS(453), - [anon_sym_STAR] = ACTIONS(453), - [anon_sym_PLUS] = ACTIONS(453), - [anon_sym_COMMA] = ACTIONS(453), - [anon_sym_DASH] = ACTIONS(453), - [anon_sym_DOT] = ACTIONS(453), - [anon_sym_SLASH] = ACTIONS(453), - [anon_sym_COLON] = ACTIONS(453), - [anon_sym_SEMI] = ACTIONS(453), - [anon_sym_LT] = ACTIONS(455), - [anon_sym_EQ] = ACTIONS(453), - [anon_sym_GT] = ACTIONS(453), - [anon_sym_QMARK] = ACTIONS(453), - [anon_sym_AT] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(453), - [anon_sym_BSLASH] = ACTIONS(455), - [anon_sym_RBRACK] = ACTIONS(453), - [anon_sym_CARET] = ACTIONS(453), - [anon_sym__] = ACTIONS(453), - [anon_sym_BQUOTE] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(453), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(453), - [anon_sym_TILDE] = ACTIONS(453), - [aux_sym__html_block_1_token1] = ACTIONS(453), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(455), - [anon_sym_LT_QMARK] = ACTIONS(455), - [aux_sym__html_block_4_token1] = ACTIONS(455), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(453), - [aux_sym__html_block_6_token1] = ACTIONS(455), - [aux_sym__html_block_6_token2] = ACTIONS(453), - [sym__open_tag_html_block] = ACTIONS(453), - [sym__open_tag_html_block_newline] = ACTIONS(453), - [sym__closing_tag_html_block] = ACTIONS(453), - [sym__closing_tag_html_block_newline] = ACTIONS(453), - [sym_backslash_escape] = ACTIONS(453), - [sym_entity_reference] = ACTIONS(453), - [sym_numeric_character_reference] = ACTIONS(453), - [sym_uri_autolink] = ACTIONS(453), - [sym_email_autolink] = ACTIONS(453), - [sym__whitespace_ge_2] = ACTIONS(453), - [aux_sym__whitespace_token1] = ACTIONS(455), - [sym__word_no_digit] = ACTIONS(453), - [sym__digits] = ACTIONS(453), - [aux_sym__newline_token1] = ACTIONS(453), - [sym__block_close] = ACTIONS(453), - [sym__block_quote_start] = ACTIONS(453), - [sym__indented_chunk_start] = ACTIONS(453), - [sym_atx_h1_marker] = ACTIONS(453), - [sym_atx_h2_marker] = ACTIONS(453), - [sym_atx_h3_marker] = ACTIONS(453), - [sym_atx_h4_marker] = ACTIONS(453), - [sym_atx_h5_marker] = ACTIONS(453), - [sym_atx_h6_marker] = ACTIONS(453), - [sym_setext_h1_underline] = ACTIONS(453), - [sym_setext_h2_underline] = ACTIONS(453), - [sym__thematic_break] = ACTIONS(453), - [sym__list_marker_minus] = ACTIONS(453), - [sym__list_marker_plus] = ACTIONS(453), - [sym__list_marker_star] = ACTIONS(453), - [sym__list_marker_parenthesis] = ACTIONS(453), - [sym__list_marker_dot] = ACTIONS(453), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(453), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(453), - [sym__list_marker_star_dont_interrupt] = ACTIONS(453), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(453), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(453), - [sym__fenced_code_block_start_backtick] = ACTIONS(453), - [sym__fenced_code_block_start_tilde] = ACTIONS(453), - [sym__blank_line_start] = ACTIONS(453), - [sym__split_token] = ACTIONS(465), - [sym__soft_line_break_marker] = ACTIONS(459), - [sym__code_span_start] = ACTIONS(453), - [sym__emphasis_open_star] = ACTIONS(453), - [sym__emphasis_open_underscore] = ACTIONS(453), + [sym__block_interrupt_paragraph] = STATE(796), + [sym_thematic_break] = STATE(796), + [sym_atx_heading] = STATE(796), + [sym_fenced_code_block] = STATE(796), + [sym__html_block_1] = STATE(796), + [sym__html_block_2] = STATE(796), + [sym__html_block_3] = STATE(796), + [sym__html_block_4] = STATE(796), + [sym__html_block_5] = STATE(796), + [sym__html_block_6] = STATE(796), + [sym__blank_line] = STATE(796), + [sym_block_quote] = STATE(796), + [anon_sym_BANG] = ACTIONS(465), + [anon_sym_DQUOTE] = ACTIONS(465), + [anon_sym_POUND] = ACTIONS(465), + [anon_sym_DOLLAR] = ACTIONS(465), + [anon_sym_PERCENT] = ACTIONS(465), + [anon_sym_AMP] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(465), + [anon_sym_STAR] = ACTIONS(465), + [anon_sym_PLUS] = ACTIONS(465), + [anon_sym_COMMA] = ACTIONS(465), + [anon_sym_DASH] = ACTIONS(465), + [anon_sym_DOT] = ACTIONS(465), + [anon_sym_SLASH] = ACTIONS(465), + [anon_sym_COLON] = ACTIONS(465), + [anon_sym_SEMI] = ACTIONS(465), + [anon_sym_LT] = ACTIONS(467), + [anon_sym_EQ] = ACTIONS(465), + [anon_sym_GT] = ACTIONS(465), + [anon_sym_QMARK] = ACTIONS(465), + [anon_sym_AT] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_BSLASH] = ACTIONS(467), + [anon_sym_RBRACK] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(465), + [anon_sym__] = ACTIONS(465), + [anon_sym_BQUOTE] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(465), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_RBRACE] = ACTIONS(465), + [anon_sym_TILDE] = ACTIONS(465), + [aux_sym__html_block_1_token1] = ACTIONS(469), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(471), + [anon_sym_LT_QMARK] = ACTIONS(473), + [aux_sym__html_block_4_token1] = ACTIONS(475), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(477), + [aux_sym__html_block_6_token1] = ACTIONS(479), + [aux_sym__html_block_6_token2] = ACTIONS(481), + [sym_backslash_escape] = ACTIONS(465), + [sym_entity_reference] = ACTIONS(465), + [sym_numeric_character_reference] = ACTIONS(465), + [sym_uri_autolink] = ACTIONS(465), + [sym_email_autolink] = ACTIONS(465), + [sym__whitespace_ge_2] = ACTIONS(465), + [aux_sym__whitespace_token1] = ACTIONS(467), + [sym__word_no_digit] = ACTIONS(465), + [sym__digits] = ACTIONS(465), + [aux_sym__newline_token1] = ACTIONS(465), + [sym__block_quote_start] = ACTIONS(483), + [sym_atx_h1_marker] = ACTIONS(485), + [sym_atx_h2_marker] = ACTIONS(485), + [sym_atx_h3_marker] = ACTIONS(485), + [sym_atx_h4_marker] = ACTIONS(485), + [sym_atx_h5_marker] = ACTIONS(485), + [sym_atx_h6_marker] = ACTIONS(485), + [sym_setext_h1_underline] = ACTIONS(487), + [sym_setext_h2_underline] = ACTIONS(487), + [sym__thematic_break] = ACTIONS(489), + [sym__list_marker_minus] = ACTIONS(487), + [sym__list_marker_plus] = ACTIONS(487), + [sym__list_marker_star] = ACTIONS(487), + [sym__list_marker_parenthesis] = ACTIONS(487), + [sym__list_marker_dot] = ACTIONS(487), + [sym__fenced_code_block_start_backtick] = ACTIONS(491), + [sym__fenced_code_block_start_tilde] = ACTIONS(493), + [sym__blank_line_start] = ACTIONS(495), + [sym__split_token] = ACTIONS(447), + [sym__soft_line_break_marker] = ACTIONS(447), + [sym__code_span_start] = ACTIONS(465), + [sym__emphasis_open_star] = ACTIONS(465), + [sym__emphasis_open_underscore] = ACTIONS(465), + [sym__emphasis_close_star] = ACTIONS(465), }, [87] = { - [sym__block_interrupt_paragraph] = STATE(764), - [sym_thematic_break] = STATE(764), - [sym_atx_heading] = STATE(764), - [sym_fenced_code_block] = STATE(764), - [sym__html_block_1] = STATE(764), - [sym__html_block_2] = STATE(764), - [sym__html_block_3] = STATE(764), - [sym__html_block_4] = STATE(764), - [sym__html_block_5] = STATE(764), - [sym__html_block_6] = STATE(764), - [sym__blank_line] = STATE(764), - [sym_block_quote] = STATE(764), + [sym__block_interrupt_paragraph] = STATE(770), + [sym_thematic_break] = STATE(770), + [sym_atx_heading] = STATE(770), + [sym_fenced_code_block] = STATE(770), + [sym__html_block_1] = STATE(770), + [sym__html_block_2] = STATE(770), + [sym__html_block_3] = STATE(770), + [sym__html_block_4] = STATE(770), + [sym__html_block_5] = STATE(770), + [sym__html_block_6] = STATE(770), + [sym__blank_line] = STATE(770), + [sym_block_quote] = STATE(770), + [anon_sym_BANG] = ACTIONS(465), + [anon_sym_DQUOTE] = ACTIONS(465), + [anon_sym_POUND] = ACTIONS(465), + [anon_sym_DOLLAR] = ACTIONS(465), + [anon_sym_PERCENT] = ACTIONS(465), + [anon_sym_AMP] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(465), + [anon_sym_STAR] = ACTIONS(465), + [anon_sym_PLUS] = ACTIONS(465), + [anon_sym_COMMA] = ACTIONS(465), + [anon_sym_DASH] = ACTIONS(465), + [anon_sym_DOT] = ACTIONS(465), + [anon_sym_SLASH] = ACTIONS(465), + [anon_sym_COLON] = ACTIONS(465), + [anon_sym_SEMI] = ACTIONS(465), + [anon_sym_LT] = ACTIONS(467), + [anon_sym_EQ] = ACTIONS(465), + [anon_sym_GT] = ACTIONS(465), + [anon_sym_QMARK] = ACTIONS(465), + [anon_sym_AT] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_BSLASH] = ACTIONS(467), + [anon_sym_RBRACK] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(465), + [anon_sym__] = ACTIONS(465), + [anon_sym_BQUOTE] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(465), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_RBRACE] = ACTIONS(465), + [anon_sym_TILDE] = ACTIONS(465), + [aux_sym__html_block_1_token1] = ACTIONS(419), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(421), + [anon_sym_LT_QMARK] = ACTIONS(423), + [aux_sym__html_block_4_token1] = ACTIONS(425), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(427), + [aux_sym__html_block_6_token1] = ACTIONS(429), + [aux_sym__html_block_6_token2] = ACTIONS(431), + [sym_backslash_escape] = ACTIONS(465), + [sym_entity_reference] = ACTIONS(465), + [sym_numeric_character_reference] = ACTIONS(465), + [sym_uri_autolink] = ACTIONS(465), + [sym_email_autolink] = ACTIONS(465), + [sym__whitespace_ge_2] = ACTIONS(465), + [aux_sym__whitespace_token1] = ACTIONS(467), + [sym__word_no_digit] = ACTIONS(465), + [sym__digits] = ACTIONS(465), + [aux_sym__newline_token1] = ACTIONS(465), + [sym__block_quote_start] = ACTIONS(433), + [sym_atx_h1_marker] = ACTIONS(435), + [sym_atx_h2_marker] = ACTIONS(435), + [sym_atx_h3_marker] = ACTIONS(435), + [sym_atx_h4_marker] = ACTIONS(435), + [sym_atx_h5_marker] = ACTIONS(435), + [sym_atx_h6_marker] = ACTIONS(435), + [sym_setext_h1_underline] = ACTIONS(497), + [sym_setext_h2_underline] = ACTIONS(497), + [sym__thematic_break] = ACTIONS(439), + [sym__list_marker_minus] = ACTIONS(497), + [sym__list_marker_plus] = ACTIONS(497), + [sym__list_marker_star] = ACTIONS(497), + [sym__list_marker_parenthesis] = ACTIONS(497), + [sym__list_marker_dot] = ACTIONS(497), + [sym__fenced_code_block_start_backtick] = ACTIONS(441), + [sym__fenced_code_block_start_tilde] = ACTIONS(443), + [sym__blank_line_start] = ACTIONS(445), + [sym__split_token] = ACTIONS(447), + [sym__soft_line_break_marker] = ACTIONS(447), + [sym__code_span_start] = ACTIONS(465), + [sym__emphasis_open_star] = ACTIONS(465), + [sym__emphasis_open_underscore] = ACTIONS(465), + [sym__emphasis_close_underscore] = ACTIONS(465), + }, + [88] = { + [sym__block_interrupt_paragraph] = STATE(689), + [sym_thematic_break] = STATE(689), + [sym_atx_heading] = STATE(689), + [sym_fenced_code_block] = STATE(689), + [sym__html_block_1] = STATE(689), + [sym__html_block_2] = STATE(689), + [sym__html_block_3] = STATE(689), + [sym__html_block_4] = STATE(689), + [sym__html_block_5] = STATE(689), + [sym__html_block_6] = STATE(689), + [sym__blank_line] = STATE(689), + [sym_block_quote] = STATE(689), [anon_sym_BANG] = ACTIONS(415), [anon_sym_DQUOTE] = ACTIONS(415), [anon_sym_POUND] = ACTIONS(415), @@ -40192,13 +40286,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(415), [anon_sym_RBRACE] = ACTIONS(415), [anon_sym_TILDE] = ACTIONS(415), - [aux_sym__html_block_1_token1] = ACTIONS(467), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(469), - [anon_sym_LT_QMARK] = ACTIONS(471), - [aux_sym__html_block_4_token1] = ACTIONS(473), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(475), - [aux_sym__html_block_6_token1] = ACTIONS(477), - [aux_sym__html_block_6_token2] = ACTIONS(479), + [aux_sym__html_block_1_token1] = ACTIONS(469), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(471), + [anon_sym_LT_QMARK] = ACTIONS(473), + [aux_sym__html_block_4_token1] = ACTIONS(475), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(477), + [aux_sym__html_block_6_token1] = ACTIONS(479), + [aux_sym__html_block_6_token2] = ACTIONS(481), [sym_backslash_escape] = ACTIONS(415), [sym_entity_reference] = ACTIONS(415), [sym_numeric_character_reference] = ACTIONS(415), @@ -40209,207 +40303,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__word_no_digit] = ACTIONS(415), [sym__digits] = ACTIONS(415), [aux_sym__newline_token1] = ACTIONS(415), - [sym__block_quote_start] = ACTIONS(481), - [sym_atx_h1_marker] = ACTIONS(483), - [sym_atx_h2_marker] = ACTIONS(483), - [sym_atx_h3_marker] = ACTIONS(483), - [sym_atx_h4_marker] = ACTIONS(483), - [sym_atx_h5_marker] = ACTIONS(483), - [sym_atx_h6_marker] = ACTIONS(483), - [sym_setext_h1_underline] = ACTIONS(485), - [sym_setext_h2_underline] = ACTIONS(485), - [sym__thematic_break] = ACTIONS(487), - [sym__list_marker_minus] = ACTIONS(485), - [sym__list_marker_plus] = ACTIONS(485), - [sym__list_marker_star] = ACTIONS(485), - [sym__list_marker_parenthesis] = ACTIONS(485), - [sym__list_marker_dot] = ACTIONS(485), - [sym__fenced_code_block_start_backtick] = ACTIONS(489), - [sym__fenced_code_block_start_tilde] = ACTIONS(491), - [sym__blank_line_start] = ACTIONS(493), - [sym__split_token] = ACTIONS(447), - [sym__soft_line_break_marker] = ACTIONS(447), - [sym__code_span_start] = ACTIONS(415), - [sym__emphasis_open_star] = ACTIONS(415), - [sym__emphasis_open_underscore] = ACTIONS(415), - [sym__emphasis_close_underscore] = ACTIONS(415), - }, - [88] = { - [sym__block_interrupt_paragraph] = STATE(699), - [sym_thematic_break] = STATE(699), - [sym_atx_heading] = STATE(699), - [sym_fenced_code_block] = STATE(699), - [sym__html_block_1] = STATE(699), - [sym__html_block_2] = STATE(699), - [sym__html_block_3] = STATE(699), - [sym__html_block_4] = STATE(699), - [sym__html_block_5] = STATE(699), - [sym__html_block_6] = STATE(699), - [sym__blank_line] = STATE(699), - [sym_block_quote] = STATE(699), - [anon_sym_BANG] = ACTIONS(495), - [anon_sym_DQUOTE] = ACTIONS(495), - [anon_sym_POUND] = ACTIONS(495), - [anon_sym_DOLLAR] = ACTIONS(495), - [anon_sym_PERCENT] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(497), - [anon_sym_SQUOTE] = ACTIONS(495), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_RPAREN] = ACTIONS(495), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(495), - [anon_sym_COMMA] = ACTIONS(495), - [anon_sym_DASH] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(495), - [anon_sym_SLASH] = ACTIONS(495), - [anon_sym_COLON] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(495), - [anon_sym_LT] = ACTIONS(497), - [anon_sym_EQ] = ACTIONS(495), - [anon_sym_GT] = ACTIONS(495), - [anon_sym_QMARK] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(495), - [anon_sym_BSLASH] = ACTIONS(497), - [anon_sym_RBRACK] = ACTIONS(495), - [anon_sym_CARET] = ACTIONS(495), - [anon_sym__] = ACTIONS(495), - [anon_sym_BQUOTE] = ACTIONS(495), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_PIPE] = ACTIONS(495), - [anon_sym_RBRACE] = ACTIONS(495), - [anon_sym_TILDE] = ACTIONS(495), - [aux_sym__html_block_1_token1] = ACTIONS(467), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(469), - [anon_sym_LT_QMARK] = ACTIONS(471), - [aux_sym__html_block_4_token1] = ACTIONS(473), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(475), - [aux_sym__html_block_6_token1] = ACTIONS(477), - [aux_sym__html_block_6_token2] = ACTIONS(479), - [sym_backslash_escape] = ACTIONS(495), - [sym_entity_reference] = ACTIONS(495), - [sym_numeric_character_reference] = ACTIONS(495), - [sym_uri_autolink] = ACTIONS(495), - [sym_email_autolink] = ACTIONS(495), - [sym__whitespace_ge_2] = ACTIONS(495), - [aux_sym__whitespace_token1] = ACTIONS(497), - [sym__word_no_digit] = ACTIONS(495), - [sym__digits] = ACTIONS(495), - [aux_sym__newline_token1] = ACTIONS(495), - [sym__block_quote_start] = ACTIONS(481), - [sym_atx_h1_marker] = ACTIONS(483), - [sym_atx_h2_marker] = ACTIONS(483), - [sym_atx_h3_marker] = ACTIONS(483), - [sym_atx_h4_marker] = ACTIONS(483), - [sym_atx_h5_marker] = ACTIONS(483), - [sym_atx_h6_marker] = ACTIONS(483), + [sym__block_quote_start] = ACTIONS(483), + [sym_atx_h1_marker] = ACTIONS(485), + [sym_atx_h2_marker] = ACTIONS(485), + [sym_atx_h3_marker] = ACTIONS(485), + [sym_atx_h4_marker] = ACTIONS(485), + [sym_atx_h5_marker] = ACTIONS(485), + [sym_atx_h6_marker] = ACTIONS(485), [sym_setext_h1_underline] = ACTIONS(499), [sym_setext_h2_underline] = ACTIONS(499), - [sym__thematic_break] = ACTIONS(487), + [sym__thematic_break] = ACTIONS(489), [sym__list_marker_minus] = ACTIONS(499), [sym__list_marker_plus] = ACTIONS(499), [sym__list_marker_star] = ACTIONS(499), [sym__list_marker_parenthesis] = ACTIONS(499), [sym__list_marker_dot] = ACTIONS(499), - [sym__fenced_code_block_start_backtick] = ACTIONS(489), - [sym__fenced_code_block_start_tilde] = ACTIONS(491), - [sym__blank_line_start] = ACTIONS(493), + [sym__fenced_code_block_start_backtick] = ACTIONS(491), + [sym__fenced_code_block_start_tilde] = ACTIONS(493), + [sym__blank_line_start] = ACTIONS(495), [sym__split_token] = ACTIONS(447), [sym__soft_line_break_marker] = ACTIONS(447), - [sym__code_span_start] = ACTIONS(495), - [sym__emphasis_open_star] = ACTIONS(495), - [sym__emphasis_open_underscore] = ACTIONS(495), - [sym__emphasis_close_underscore] = ACTIONS(495), + [sym__code_span_start] = ACTIONS(415), + [sym__emphasis_open_star] = ACTIONS(415), + [sym__emphasis_open_underscore] = ACTIONS(415), + [sym__emphasis_close_star] = ACTIONS(415), }, [89] = { - [sym__block_interrupt_paragraph] = STATE(687), - [sym_thematic_break] = STATE(687), - [sym_atx_heading] = STATE(687), - [sym_fenced_code_block] = STATE(687), - [sym__html_block_1] = STATE(687), - [sym__html_block_2] = STATE(687), - [sym__html_block_3] = STATE(687), - [sym__html_block_4] = STATE(687), - [sym__html_block_5] = STATE(687), - [sym__html_block_6] = STATE(687), - [sym__blank_line] = STATE(687), - [sym_block_quote] = STATE(687), - [anon_sym_BANG] = ACTIONS(495), - [anon_sym_DQUOTE] = ACTIONS(495), - [anon_sym_POUND] = ACTIONS(495), - [anon_sym_DOLLAR] = ACTIONS(495), - [anon_sym_PERCENT] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(497), - [anon_sym_SQUOTE] = ACTIONS(495), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_RPAREN] = ACTIONS(495), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(495), - [anon_sym_COMMA] = ACTIONS(495), - [anon_sym_DASH] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(495), - [anon_sym_SLASH] = ACTIONS(495), - [anon_sym_COLON] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(495), - [anon_sym_LT] = ACTIONS(497), - [anon_sym_EQ] = ACTIONS(495), - [anon_sym_GT] = ACTIONS(495), - [anon_sym_QMARK] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(495), - [anon_sym_BSLASH] = ACTIONS(497), - [anon_sym_RBRACK] = ACTIONS(495), - [anon_sym_CARET] = ACTIONS(495), - [anon_sym__] = ACTIONS(495), - [anon_sym_BQUOTE] = ACTIONS(495), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_PIPE] = ACTIONS(495), - [anon_sym_RBRACE] = ACTIONS(495), - [anon_sym_TILDE] = ACTIONS(495), - [aux_sym__html_block_1_token1] = ACTIONS(419), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(421), - [anon_sym_LT_QMARK] = ACTIONS(423), - [aux_sym__html_block_4_token1] = ACTIONS(425), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(427), - [aux_sym__html_block_6_token1] = ACTIONS(429), - [aux_sym__html_block_6_token2] = ACTIONS(431), - [sym_backslash_escape] = ACTIONS(495), - [sym_entity_reference] = ACTIONS(495), - [sym_numeric_character_reference] = ACTIONS(495), - [sym_uri_autolink] = ACTIONS(495), - [sym_email_autolink] = ACTIONS(495), - [sym__whitespace_ge_2] = ACTIONS(495), - [aux_sym__whitespace_token1] = ACTIONS(497), - [sym__word_no_digit] = ACTIONS(495), - [sym__digits] = ACTIONS(495), - [aux_sym__newline_token1] = ACTIONS(495), - [sym__block_quote_start] = ACTIONS(433), - [sym_atx_h1_marker] = ACTIONS(435), - [sym_atx_h2_marker] = ACTIONS(435), - [sym_atx_h3_marker] = ACTIONS(435), - [sym_atx_h4_marker] = ACTIONS(435), - [sym_atx_h5_marker] = ACTIONS(435), - [sym_atx_h6_marker] = ACTIONS(435), - [sym_setext_h1_underline] = ACTIONS(501), - [sym_setext_h2_underline] = ACTIONS(501), - [sym__thematic_break] = ACTIONS(439), - [sym__list_marker_minus] = ACTIONS(501), - [sym__list_marker_plus] = ACTIONS(501), - [sym__list_marker_star] = ACTIONS(501), - [sym__list_marker_parenthesis] = ACTIONS(501), - [sym__list_marker_dot] = ACTIONS(501), - [sym__fenced_code_block_start_backtick] = ACTIONS(441), - [sym__fenced_code_block_start_tilde] = ACTIONS(443), - [sym__blank_line_start] = ACTIONS(445), - [sym__split_token] = ACTIONS(447), - [sym__soft_line_break_marker] = ACTIONS(447), - [sym__code_span_start] = ACTIONS(495), - [sym__emphasis_open_star] = ACTIONS(495), - [sym__emphasis_open_underscore] = ACTIONS(495), - [sym__emphasis_close_star] = ACTIONS(495), + [aux_sym__soft_line_break_repeat1] = STATE(2136), + [aux_sym__paragraph_end_newline_repeat1] = STATE(197), + [ts_builtin_sym_end] = ACTIONS(449), + [anon_sym_BANG] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(449), + [anon_sym_POUND] = ACTIONS(449), + [anon_sym_DOLLAR] = ACTIONS(449), + [anon_sym_PERCENT] = ACTIONS(449), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_SQUOTE] = ACTIONS(449), + [anon_sym_LPAREN] = ACTIONS(449), + [anon_sym_RPAREN] = ACTIONS(449), + [anon_sym_STAR] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_COMMA] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(449), + [anon_sym_DOT] = ACTIONS(449), + [anon_sym_SLASH] = ACTIONS(449), + [anon_sym_COLON] = ACTIONS(449), + [anon_sym_SEMI] = ACTIONS(449), + [anon_sym_LT] = ACTIONS(451), + [anon_sym_EQ] = ACTIONS(449), + [anon_sym_GT] = ACTIONS(449), + [anon_sym_QMARK] = ACTIONS(449), + [anon_sym_AT] = ACTIONS(449), + [anon_sym_LBRACK] = ACTIONS(449), + [anon_sym_BSLASH] = ACTIONS(451), + [anon_sym_RBRACK] = ACTIONS(449), + [anon_sym_CARET] = ACTIONS(449), + [anon_sym__] = ACTIONS(449), + [anon_sym_BQUOTE] = ACTIONS(449), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_PIPE] = ACTIONS(449), + [anon_sym_RBRACE] = ACTIONS(449), + [anon_sym_TILDE] = ACTIONS(449), + [aux_sym__html_block_1_token1] = ACTIONS(449), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(451), + [anon_sym_LT_QMARK] = ACTIONS(451), + [aux_sym__html_block_4_token1] = ACTIONS(451), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(449), + [aux_sym__html_block_6_token1] = ACTIONS(451), + [aux_sym__html_block_6_token2] = ACTIONS(449), + [sym__open_tag_html_block] = ACTIONS(449), + [sym__open_tag_html_block_newline] = ACTIONS(449), + [sym__closing_tag_html_block] = ACTIONS(449), + [sym__closing_tag_html_block_newline] = ACTIONS(449), + [sym_backslash_escape] = ACTIONS(449), + [sym_entity_reference] = ACTIONS(449), + [sym_numeric_character_reference] = ACTIONS(449), + [sym_uri_autolink] = ACTIONS(449), + [sym_email_autolink] = ACTIONS(449), + [sym__whitespace_ge_2] = ACTIONS(449), + [aux_sym__whitespace_token1] = ACTIONS(451), + [sym__word_no_digit] = ACTIONS(449), + [sym__digits] = ACTIONS(449), + [aux_sym__newline_token1] = ACTIONS(449), + [sym__block_quote_start] = ACTIONS(449), + [sym__indented_chunk_start] = ACTIONS(449), + [sym_atx_h1_marker] = ACTIONS(449), + [sym_atx_h2_marker] = ACTIONS(449), + [sym_atx_h3_marker] = ACTIONS(449), + [sym_atx_h4_marker] = ACTIONS(449), + [sym_atx_h5_marker] = ACTIONS(449), + [sym_atx_h6_marker] = ACTIONS(449), + [sym_setext_h1_underline] = ACTIONS(449), + [sym_setext_h2_underline] = ACTIONS(449), + [sym__thematic_break] = ACTIONS(449), + [sym__list_marker_minus] = ACTIONS(449), + [sym__list_marker_plus] = ACTIONS(449), + [sym__list_marker_star] = ACTIONS(449), + [sym__list_marker_parenthesis] = ACTIONS(449), + [sym__list_marker_dot] = ACTIONS(449), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(449), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(449), + [sym__list_marker_star_dont_interrupt] = ACTIONS(449), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(449), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(449), + [sym__fenced_code_block_start_backtick] = ACTIONS(449), + [sym__fenced_code_block_start_tilde] = ACTIONS(449), + [sym__blank_line_start] = ACTIONS(449), + [sym__split_token] = ACTIONS(501), + [sym__soft_line_break_marker] = ACTIONS(455), + [sym__code_span_start] = ACTIONS(449), + [sym__emphasis_open_star] = ACTIONS(449), + [sym__emphasis_open_underscore] = ACTIONS(449), }, [90] = { - [aux_sym__ignore_matching_tokens] = STATE(95), + [aux_sym__ignore_matching_tokens] = STATE(94), [ts_builtin_sym_end] = ACTIONS(389), [anon_sym_BANG] = ACTIONS(389), [anon_sym_DQUOTE] = ACTIONS(389), @@ -40495,7 +40502,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__last_token_whitespace] = ACTIONS(503), }, [91] = { - [aux_sym__ignore_matching_tokens] = STATE(233), + [sym__block_interrupt_paragraph] = STATE(911), + [sym_thematic_break] = STATE(911), + [sym_atx_heading] = STATE(911), + [sym_fenced_code_block] = STATE(911), + [sym__html_block_1] = STATE(911), + [sym__html_block_2] = STATE(911), + [sym__html_block_3] = STATE(911), + [sym__html_block_4] = STATE(911), + [sym__html_block_5] = STATE(911), + [sym__html_block_6] = STATE(911), + [sym__blank_line] = STATE(911), + [sym_block_quote] = STATE(911), + [anon_sym_BANG] = ACTIONS(415), + [anon_sym_DQUOTE] = ACTIONS(415), + [anon_sym_POUND] = ACTIONS(415), + [anon_sym_DOLLAR] = ACTIONS(415), + [anon_sym_PERCENT] = ACTIONS(415), + [anon_sym_AMP] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(415), + [anon_sym_RPAREN] = ACTIONS(415), + [anon_sym_STAR] = ACTIONS(415), + [anon_sym_PLUS] = ACTIONS(415), + [anon_sym_COMMA] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(415), + [anon_sym_DOT] = ACTIONS(415), + [anon_sym_SLASH] = ACTIONS(415), + [anon_sym_COLON] = ACTIONS(415), + [anon_sym_SEMI] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(417), + [anon_sym_EQ] = ACTIONS(415), + [anon_sym_GT] = ACTIONS(415), + [anon_sym_QMARK] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(415), + [anon_sym_LBRACK] = ACTIONS(415), + [anon_sym_BSLASH] = ACTIONS(417), + [anon_sym_RBRACK] = ACTIONS(415), + [anon_sym_CARET] = ACTIONS(415), + [anon_sym__] = ACTIONS(415), + [anon_sym_BQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(415), + [anon_sym_PIPE] = ACTIONS(415), + [anon_sym_RBRACE] = ACTIONS(415), + [anon_sym_TILDE] = ACTIONS(415), + [aux_sym__html_block_1_token1] = ACTIONS(505), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(507), + [anon_sym_LT_QMARK] = ACTIONS(509), + [aux_sym__html_block_4_token1] = ACTIONS(511), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(513), + [aux_sym__html_block_6_token1] = ACTIONS(515), + [aux_sym__html_block_6_token2] = ACTIONS(517), + [sym_backslash_escape] = ACTIONS(415), + [sym_entity_reference] = ACTIONS(415), + [sym_numeric_character_reference] = ACTIONS(415), + [sym_uri_autolink] = ACTIONS(415), + [sym_email_autolink] = ACTIONS(415), + [sym__whitespace_ge_2] = ACTIONS(415), + [aux_sym__whitespace_token1] = ACTIONS(417), + [sym__word_no_digit] = ACTIONS(415), + [sym__digits] = ACTIONS(415), + [aux_sym__newline_token1] = ACTIONS(415), + [sym__block_quote_start] = ACTIONS(519), + [sym_atx_h1_marker] = ACTIONS(521), + [sym_atx_h2_marker] = ACTIONS(521), + [sym_atx_h3_marker] = ACTIONS(521), + [sym_atx_h4_marker] = ACTIONS(521), + [sym_atx_h5_marker] = ACTIONS(521), + [sym_atx_h6_marker] = ACTIONS(521), + [sym_setext_h1_underline] = ACTIONS(523), + [sym_setext_h2_underline] = ACTIONS(523), + [sym__thematic_break] = ACTIONS(525), + [sym__list_marker_minus] = ACTIONS(523), + [sym__list_marker_plus] = ACTIONS(523), + [sym__list_marker_star] = ACTIONS(523), + [sym__list_marker_parenthesis] = ACTIONS(523), + [sym__list_marker_dot] = ACTIONS(523), + [sym__fenced_code_block_start_backtick] = ACTIONS(527), + [sym__fenced_code_block_start_tilde] = ACTIONS(529), + [sym__blank_line_start] = ACTIONS(531), + [sym__split_token] = ACTIONS(447), + [sym__soft_line_break_marker] = ACTIONS(447), + [sym__code_span_start] = ACTIONS(415), + [sym__emphasis_open_star] = ACTIONS(415), + [sym__emphasis_open_underscore] = ACTIONS(415), + }, + [92] = { + [aux_sym__ignore_matching_tokens] = STATE(155), [ts_builtin_sym_end] = ACTIONS(377), [anon_sym_BANG] = ACTIONS(377), [anon_sym_DQUOTE] = ACTIONS(377), @@ -40550,9 +40643,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__word_no_digit] = ACTIONS(377), [sym__digits] = ACTIONS(377), [aux_sym__newline_token1] = ACTIONS(377), - [sym__line_ending] = ACTIONS(505), - [sym__block_continuation] = ACTIONS(507), - [sym__block_quote_continuation] = ACTIONS(507), + [sym__line_ending] = ACTIONS(533), + [sym__block_continuation] = ACTIONS(535), + [sym__block_quote_continuation] = ACTIONS(535), [sym__block_quote_start] = ACTIONS(377), [sym__indented_chunk_start] = ACTIONS(377), [sym_atx_h1_marker] = ACTIONS(377), @@ -40578,182 +40671,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(377), [sym__emphasis_open_star] = ACTIONS(377), [sym__emphasis_open_underscore] = ACTIONS(377), - [sym__last_token_whitespace] = ACTIONS(507), - }, - [92] = { - [aux_sym__ignore_matching_tokens] = STATE(94), - [ts_builtin_sym_end] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_DQUOTE] = ACTIONS(389), - [anon_sym_POUND] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(389), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_RPAREN] = ACTIONS(389), - [anon_sym_STAR] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_COMMA] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_DOT] = ACTIONS(389), - [anon_sym_SLASH] = ACTIONS(389), - [anon_sym_COLON] = ACTIONS(389), - [anon_sym_SEMI] = ACTIONS(389), - [anon_sym_LT] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(389), - [anon_sym_GT] = ACTIONS(389), - [anon_sym_QMARK] = ACTIONS(389), - [anon_sym_AT] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_BSLASH] = ACTIONS(391), - [anon_sym_RBRACK] = ACTIONS(389), - [anon_sym_CARET] = ACTIONS(389), - [anon_sym__] = ACTIONS(389), - [anon_sym_BQUOTE] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(389), - [anon_sym_RBRACE] = ACTIONS(389), - [anon_sym_TILDE] = ACTIONS(389), - [aux_sym__html_block_1_token1] = ACTIONS(389), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(391), - [anon_sym_LT_QMARK] = ACTIONS(391), - [aux_sym__html_block_4_token1] = ACTIONS(391), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(389), - [aux_sym__html_block_6_token1] = ACTIONS(391), - [aux_sym__html_block_6_token2] = ACTIONS(389), - [sym__open_tag_html_block] = ACTIONS(389), - [sym__open_tag_html_block_newline] = ACTIONS(389), - [sym__closing_tag_html_block] = ACTIONS(389), - [sym__closing_tag_html_block_newline] = ACTIONS(389), - [sym_backslash_escape] = ACTIONS(389), - [sym_entity_reference] = ACTIONS(389), - [sym_numeric_character_reference] = ACTIONS(389), - [sym_uri_autolink] = ACTIONS(389), - [sym_email_autolink] = ACTIONS(389), - [sym__whitespace_ge_2] = ACTIONS(389), - [aux_sym__whitespace_token1] = ACTIONS(391), - [sym__word_no_digit] = ACTIONS(389), - [sym__digits] = ACTIONS(389), - [aux_sym__newline_token1] = ACTIONS(389), - [sym__block_continuation] = ACTIONS(509), - [sym__block_quote_continuation] = ACTIONS(509), - [sym__block_quote_start] = ACTIONS(389), - [sym__indented_chunk_start] = ACTIONS(389), - [sym_atx_h1_marker] = ACTIONS(389), - [sym_atx_h2_marker] = ACTIONS(389), - [sym_atx_h3_marker] = ACTIONS(389), - [sym_atx_h4_marker] = ACTIONS(389), - [sym_atx_h5_marker] = ACTIONS(389), - [sym_atx_h6_marker] = ACTIONS(389), - [sym__thematic_break] = ACTIONS(389), - [sym__list_marker_minus] = ACTIONS(389), - [sym__list_marker_plus] = ACTIONS(389), - [sym__list_marker_star] = ACTIONS(389), - [sym__list_marker_parenthesis] = ACTIONS(389), - [sym__list_marker_dot] = ACTIONS(389), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(389), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(389), - [sym__list_marker_star_dont_interrupt] = ACTIONS(389), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(389), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(389), - [sym__fenced_code_block_start_backtick] = ACTIONS(389), - [sym__fenced_code_block_start_tilde] = ACTIONS(389), - [sym__blank_line_start] = ACTIONS(389), - [sym__no_indented_chunk] = ACTIONS(389), - [sym__code_span_start] = ACTIONS(389), - [sym__emphasis_open_star] = ACTIONS(389), - [sym__emphasis_open_underscore] = ACTIONS(389), - [sym__last_token_whitespace] = ACTIONS(509), + [sym__last_token_whitespace] = ACTIONS(535), }, [93] = { - [sym__block_interrupt_paragraph] = STATE(865), - [sym_thematic_break] = STATE(865), - [sym_atx_heading] = STATE(865), - [sym_fenced_code_block] = STATE(865), - [sym__html_block_1] = STATE(865), - [sym__html_block_2] = STATE(865), - [sym__html_block_3] = STATE(865), - [sym__html_block_4] = STATE(865), - [sym__html_block_5] = STATE(865), - [sym__html_block_6] = STATE(865), - [sym__blank_line] = STATE(865), - [sym_block_quote] = STATE(865), - [anon_sym_BANG] = ACTIONS(495), - [anon_sym_DQUOTE] = ACTIONS(495), - [anon_sym_POUND] = ACTIONS(495), - [anon_sym_DOLLAR] = ACTIONS(495), - [anon_sym_PERCENT] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(497), - [anon_sym_SQUOTE] = ACTIONS(495), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_RPAREN] = ACTIONS(495), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(495), - [anon_sym_COMMA] = ACTIONS(495), - [anon_sym_DASH] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(495), - [anon_sym_SLASH] = ACTIONS(495), - [anon_sym_COLON] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(495), - [anon_sym_LT] = ACTIONS(497), - [anon_sym_EQ] = ACTIONS(495), - [anon_sym_GT] = ACTIONS(495), - [anon_sym_QMARK] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(495), - [anon_sym_BSLASH] = ACTIONS(497), - [anon_sym_RBRACK] = ACTIONS(495), - [anon_sym_CARET] = ACTIONS(495), - [anon_sym__] = ACTIONS(495), - [anon_sym_BQUOTE] = ACTIONS(495), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_PIPE] = ACTIONS(495), - [anon_sym_RBRACE] = ACTIONS(495), - [anon_sym_TILDE] = ACTIONS(495), - [aux_sym__html_block_1_token1] = ACTIONS(511), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(513), - [anon_sym_LT_QMARK] = ACTIONS(515), - [aux_sym__html_block_4_token1] = ACTIONS(517), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(519), - [aux_sym__html_block_6_token1] = ACTIONS(521), - [aux_sym__html_block_6_token2] = ACTIONS(523), - [sym_backslash_escape] = ACTIONS(495), - [sym_entity_reference] = ACTIONS(495), - [sym_numeric_character_reference] = ACTIONS(495), - [sym_uri_autolink] = ACTIONS(495), - [sym_email_autolink] = ACTIONS(495), - [sym__whitespace_ge_2] = ACTIONS(495), - [aux_sym__whitespace_token1] = ACTIONS(497), - [sym__word_no_digit] = ACTIONS(495), - [sym__digits] = ACTIONS(495), - [aux_sym__newline_token1] = ACTIONS(495), - [sym__block_quote_start] = ACTIONS(525), - [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(529), - [sym_setext_h2_underline] = ACTIONS(529), - [sym__thematic_break] = ACTIONS(531), - [sym__list_marker_minus] = ACTIONS(529), - [sym__list_marker_plus] = ACTIONS(529), - [sym__list_marker_star] = ACTIONS(529), - [sym__list_marker_parenthesis] = ACTIONS(529), - [sym__list_marker_dot] = ACTIONS(529), - [sym__fenced_code_block_start_backtick] = ACTIONS(533), - [sym__fenced_code_block_start_tilde] = ACTIONS(535), - [sym__blank_line_start] = ACTIONS(537), + [sym__block_interrupt_paragraph] = STATE(876), + [sym_thematic_break] = STATE(876), + [sym_atx_heading] = STATE(876), + [sym_fenced_code_block] = STATE(876), + [sym__html_block_1] = STATE(876), + [sym__html_block_2] = STATE(876), + [sym__html_block_3] = STATE(876), + [sym__html_block_4] = STATE(876), + [sym__html_block_5] = STATE(876), + [sym__html_block_6] = STATE(876), + [sym__blank_line] = STATE(876), + [sym_block_quote] = STATE(876), + [anon_sym_BANG] = ACTIONS(465), + [anon_sym_DQUOTE] = ACTIONS(465), + [anon_sym_POUND] = ACTIONS(465), + [anon_sym_DOLLAR] = ACTIONS(465), + [anon_sym_PERCENT] = ACTIONS(465), + [anon_sym_AMP] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(465), + [anon_sym_STAR] = ACTIONS(465), + [anon_sym_PLUS] = ACTIONS(465), + [anon_sym_COMMA] = ACTIONS(465), + [anon_sym_DASH] = ACTIONS(465), + [anon_sym_DOT] = ACTIONS(465), + [anon_sym_SLASH] = ACTIONS(465), + [anon_sym_COLON] = ACTIONS(465), + [anon_sym_SEMI] = ACTIONS(465), + [anon_sym_LT] = ACTIONS(467), + [anon_sym_EQ] = ACTIONS(465), + [anon_sym_GT] = ACTIONS(465), + [anon_sym_QMARK] = ACTIONS(465), + [anon_sym_AT] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_BSLASH] = ACTIONS(467), + [anon_sym_RBRACK] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(465), + [anon_sym__] = ACTIONS(465), + [anon_sym_BQUOTE] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(465), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_RBRACE] = ACTIONS(465), + [anon_sym_TILDE] = ACTIONS(465), + [aux_sym__html_block_1_token1] = ACTIONS(505), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(507), + [anon_sym_LT_QMARK] = ACTIONS(509), + [aux_sym__html_block_4_token1] = ACTIONS(511), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(513), + [aux_sym__html_block_6_token1] = ACTIONS(515), + [aux_sym__html_block_6_token2] = ACTIONS(517), + [sym_backslash_escape] = ACTIONS(465), + [sym_entity_reference] = ACTIONS(465), + [sym_numeric_character_reference] = ACTIONS(465), + [sym_uri_autolink] = ACTIONS(465), + [sym_email_autolink] = ACTIONS(465), + [sym__whitespace_ge_2] = ACTIONS(465), + [aux_sym__whitespace_token1] = ACTIONS(467), + [sym__word_no_digit] = ACTIONS(465), + [sym__digits] = ACTIONS(465), + [aux_sym__newline_token1] = ACTIONS(465), + [sym__block_quote_start] = ACTIONS(519), + [sym_atx_h1_marker] = ACTIONS(521), + [sym_atx_h2_marker] = ACTIONS(521), + [sym_atx_h3_marker] = ACTIONS(521), + [sym_atx_h4_marker] = ACTIONS(521), + [sym_atx_h5_marker] = ACTIONS(521), + [sym_atx_h6_marker] = ACTIONS(521), + [sym_setext_h1_underline] = ACTIONS(537), + [sym_setext_h2_underline] = ACTIONS(537), + [sym__thematic_break] = ACTIONS(525), + [sym__list_marker_minus] = ACTIONS(537), + [sym__list_marker_plus] = ACTIONS(537), + [sym__list_marker_star] = ACTIONS(537), + [sym__list_marker_parenthesis] = ACTIONS(537), + [sym__list_marker_dot] = ACTIONS(537), + [sym__fenced_code_block_start_backtick] = ACTIONS(527), + [sym__fenced_code_block_start_tilde] = ACTIONS(529), + [sym__blank_line_start] = ACTIONS(531), [sym__split_token] = ACTIONS(447), [sym__soft_line_break_marker] = ACTIONS(447), - [sym__code_span_start] = ACTIONS(495), - [sym__emphasis_open_star] = ACTIONS(495), - [sym__emphasis_open_underscore] = ACTIONS(495), + [sym__code_span_start] = ACTIONS(465), + [sym__emphasis_open_star] = ACTIONS(465), + [sym__emphasis_open_underscore] = ACTIONS(465), }, [94] = { - [aux_sym__ignore_matching_tokens] = STATE(94), + [aux_sym__ignore_matching_tokens] = STATE(101), [ts_builtin_sym_end] = ACTIONS(397), [anon_sym_BANG] = ACTIONS(397), [anon_sym_DQUOTE] = ACTIONS(397), @@ -40839,93 +40846,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__last_token_whitespace] = ACTIONS(539), }, [95] = { - [aux_sym__ignore_matching_tokens] = STATE(94), - [ts_builtin_sym_end] = ACTIONS(407), - [anon_sym_BANG] = ACTIONS(407), - [anon_sym_DQUOTE] = ACTIONS(407), - [anon_sym_POUND] = ACTIONS(407), - [anon_sym_DOLLAR] = ACTIONS(407), - [anon_sym_PERCENT] = ACTIONS(407), - [anon_sym_AMP] = ACTIONS(409), - [anon_sym_SQUOTE] = ACTIONS(407), - [anon_sym_LPAREN] = ACTIONS(407), - [anon_sym_RPAREN] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(407), - [anon_sym_COMMA] = ACTIONS(407), - [anon_sym_DASH] = ACTIONS(407), - [anon_sym_DOT] = ACTIONS(407), - [anon_sym_SLASH] = ACTIONS(407), - [anon_sym_COLON] = ACTIONS(407), - [anon_sym_SEMI] = ACTIONS(407), - [anon_sym_LT] = ACTIONS(409), - [anon_sym_EQ] = ACTIONS(407), - [anon_sym_GT] = ACTIONS(407), - [anon_sym_QMARK] = ACTIONS(407), - [anon_sym_AT] = ACTIONS(407), - [anon_sym_LBRACK] = ACTIONS(407), - [anon_sym_BSLASH] = ACTIONS(409), - [anon_sym_RBRACK] = ACTIONS(407), - [anon_sym_CARET] = ACTIONS(407), - [anon_sym__] = ACTIONS(407), - [anon_sym_BQUOTE] = ACTIONS(407), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_PIPE] = ACTIONS(407), - [anon_sym_RBRACE] = ACTIONS(407), - [anon_sym_TILDE] = ACTIONS(407), - [aux_sym__html_block_1_token1] = ACTIONS(407), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(409), - [anon_sym_LT_QMARK] = ACTIONS(409), - [aux_sym__html_block_4_token1] = ACTIONS(409), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(407), - [aux_sym__html_block_6_token1] = ACTIONS(409), - [aux_sym__html_block_6_token2] = ACTIONS(407), - [sym__open_tag_html_block] = ACTIONS(407), - [sym__open_tag_html_block_newline] = ACTIONS(407), - [sym__closing_tag_html_block] = ACTIONS(407), - [sym__closing_tag_html_block_newline] = ACTIONS(407), - [sym_backslash_escape] = ACTIONS(407), - [sym_entity_reference] = ACTIONS(407), - [sym_numeric_character_reference] = ACTIONS(407), - [sym_uri_autolink] = ACTIONS(407), - [sym_email_autolink] = ACTIONS(407), - [sym__whitespace_ge_2] = ACTIONS(407), - [aux_sym__whitespace_token1] = ACTIONS(409), - [sym__word_no_digit] = ACTIONS(407), - [sym__digits] = ACTIONS(407), - [aux_sym__newline_token1] = ACTIONS(407), - [sym__block_continuation] = ACTIONS(509), - [sym__block_quote_continuation] = ACTIONS(509), - [sym__block_quote_start] = ACTIONS(407), - [sym__indented_chunk_start] = ACTIONS(407), - [sym_atx_h1_marker] = ACTIONS(407), - [sym_atx_h2_marker] = ACTIONS(407), - [sym_atx_h3_marker] = ACTIONS(407), - [sym_atx_h4_marker] = ACTIONS(407), - [sym_atx_h5_marker] = ACTIONS(407), - [sym_atx_h6_marker] = ACTIONS(407), - [sym__thematic_break] = ACTIONS(407), - [sym__list_marker_minus] = ACTIONS(407), - [sym__list_marker_plus] = ACTIONS(407), - [sym__list_marker_star] = ACTIONS(407), - [sym__list_marker_parenthesis] = ACTIONS(407), - [sym__list_marker_dot] = ACTIONS(407), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(407), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(407), - [sym__list_marker_star_dont_interrupt] = ACTIONS(407), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(407), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(407), - [sym__fenced_code_block_start_backtick] = ACTIONS(407), - [sym__fenced_code_block_start_tilde] = ACTIONS(407), - [sym__blank_line_start] = ACTIONS(407), - [sym__no_indented_chunk] = ACTIONS(407), - [sym__code_span_start] = ACTIONS(407), - [sym__emphasis_open_star] = ACTIONS(407), - [sym__emphasis_open_underscore] = ACTIONS(407), - [sym__last_token_whitespace] = ACTIONS(509), + [aux_sym__ignore_matching_tokens] = STATE(96), + [anon_sym_BANG] = ACTIONS(397), + [anon_sym_DQUOTE] = ACTIONS(397), + [anon_sym_POUND] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_PERCENT] = ACTIONS(397), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_SQUOTE] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_RPAREN] = ACTIONS(397), + [anon_sym_STAR] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_COMMA] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(397), + [anon_sym_SLASH] = ACTIONS(397), + [anon_sym_COLON] = ACTIONS(397), + [anon_sym_SEMI] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_EQ] = ACTIONS(397), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(397), + [anon_sym_BSLASH] = ACTIONS(399), + [anon_sym_RBRACK] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(397), + [anon_sym__] = ACTIONS(397), + [anon_sym_BQUOTE] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_RBRACE] = ACTIONS(397), + [anon_sym_TILDE] = ACTIONS(397), + [aux_sym__html_block_1_token1] = ACTIONS(397), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(399), + [anon_sym_LT_QMARK] = ACTIONS(399), + [aux_sym__html_block_4_token1] = ACTIONS(399), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(397), + [aux_sym__html_block_6_token1] = ACTIONS(399), + [aux_sym__html_block_6_token2] = ACTIONS(397), + [sym__open_tag_html_block] = ACTIONS(397), + [sym__open_tag_html_block_newline] = ACTIONS(397), + [sym__closing_tag_html_block] = ACTIONS(397), + [sym__closing_tag_html_block_newline] = ACTIONS(397), + [sym_backslash_escape] = ACTIONS(397), + [sym_entity_reference] = ACTIONS(397), + [sym_numeric_character_reference] = ACTIONS(397), + [sym_uri_autolink] = ACTIONS(397), + [sym_email_autolink] = ACTIONS(397), + [sym__whitespace_ge_2] = ACTIONS(397), + [aux_sym__whitespace_token1] = ACTIONS(399), + [sym__word_no_digit] = ACTIONS(397), + [sym__digits] = ACTIONS(397), + [aux_sym__newline_token1] = ACTIONS(397), + [sym__block_close] = ACTIONS(397), + [sym__block_continuation] = ACTIONS(541), + [sym__block_quote_continuation] = ACTIONS(541), + [sym__block_quote_start] = ACTIONS(397), + [sym__indented_chunk_start] = ACTIONS(397), + [sym_atx_h1_marker] = ACTIONS(397), + [sym_atx_h2_marker] = ACTIONS(397), + [sym_atx_h3_marker] = ACTIONS(397), + [sym_atx_h4_marker] = ACTIONS(397), + [sym_atx_h5_marker] = ACTIONS(397), + [sym_atx_h6_marker] = ACTIONS(397), + [sym__thematic_break] = ACTIONS(397), + [sym__list_marker_minus] = ACTIONS(397), + [sym__list_marker_plus] = ACTIONS(397), + [sym__list_marker_star] = ACTIONS(397), + [sym__list_marker_parenthesis] = ACTIONS(397), + [sym__list_marker_dot] = ACTIONS(397), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(397), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(397), + [sym__list_marker_star_dont_interrupt] = ACTIONS(397), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(397), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(397), + [sym__fenced_code_block_start_backtick] = ACTIONS(397), + [sym__fenced_code_block_start_tilde] = ACTIONS(397), + [sym__blank_line_start] = ACTIONS(397), + [sym__no_indented_chunk] = ACTIONS(397), + [sym__code_span_start] = ACTIONS(397), + [sym__emphasis_open_star] = ACTIONS(397), + [sym__emphasis_open_underscore] = ACTIONS(397), + [sym__last_token_whitespace] = ACTIONS(541), }, [96] = { - [aux_sym__ignore_matching_tokens] = STATE(101), + [aux_sym__ignore_matching_tokens] = STATE(96), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_DQUOTE] = ACTIONS(403), + [anon_sym_POUND] = ACTIONS(403), + [anon_sym_DOLLAR] = ACTIONS(403), + [anon_sym_PERCENT] = ACTIONS(403), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_SQUOTE] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(403), + [anon_sym_RPAREN] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_PLUS] = ACTIONS(403), + [anon_sym_COMMA] = ACTIONS(403), + [anon_sym_DASH] = ACTIONS(403), + [anon_sym_DOT] = ACTIONS(403), + [anon_sym_SLASH] = ACTIONS(403), + [anon_sym_COLON] = ACTIONS(403), + [anon_sym_SEMI] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(403), + [anon_sym_GT] = ACTIONS(403), + [anon_sym_QMARK] = ACTIONS(403), + [anon_sym_AT] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_BSLASH] = ACTIONS(405), + [anon_sym_RBRACK] = ACTIONS(403), + [anon_sym_CARET] = ACTIONS(403), + [anon_sym__] = ACTIONS(403), + [anon_sym_BQUOTE] = ACTIONS(403), + [anon_sym_LBRACE] = ACTIONS(403), + [anon_sym_PIPE] = ACTIONS(403), + [anon_sym_RBRACE] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [aux_sym__html_block_1_token1] = ACTIONS(403), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(405), + [anon_sym_LT_QMARK] = ACTIONS(405), + [aux_sym__html_block_4_token1] = ACTIONS(405), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(403), + [aux_sym__html_block_6_token1] = ACTIONS(405), + [aux_sym__html_block_6_token2] = ACTIONS(403), + [sym__open_tag_html_block] = ACTIONS(403), + [sym__open_tag_html_block_newline] = ACTIONS(403), + [sym__closing_tag_html_block] = ACTIONS(403), + [sym__closing_tag_html_block_newline] = ACTIONS(403), + [sym_backslash_escape] = ACTIONS(403), + [sym_entity_reference] = ACTIONS(403), + [sym_numeric_character_reference] = ACTIONS(403), + [sym_uri_autolink] = ACTIONS(403), + [sym_email_autolink] = ACTIONS(403), + [sym__whitespace_ge_2] = ACTIONS(403), + [aux_sym__whitespace_token1] = ACTIONS(405), + [sym__word_no_digit] = ACTIONS(403), + [sym__digits] = ACTIONS(403), + [aux_sym__newline_token1] = ACTIONS(403), + [sym__block_close] = ACTIONS(403), + [sym__block_continuation] = ACTIONS(543), + [sym__block_quote_continuation] = ACTIONS(543), + [sym__block_quote_start] = ACTIONS(403), + [sym__indented_chunk_start] = ACTIONS(403), + [sym_atx_h1_marker] = ACTIONS(403), + [sym_atx_h2_marker] = ACTIONS(403), + [sym_atx_h3_marker] = ACTIONS(403), + [sym_atx_h4_marker] = ACTIONS(403), + [sym_atx_h5_marker] = ACTIONS(403), + [sym_atx_h6_marker] = ACTIONS(403), + [sym__thematic_break] = ACTIONS(403), + [sym__list_marker_minus] = ACTIONS(403), + [sym__list_marker_plus] = ACTIONS(403), + [sym__list_marker_star] = ACTIONS(403), + [sym__list_marker_parenthesis] = ACTIONS(403), + [sym__list_marker_dot] = ACTIONS(403), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(403), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(403), + [sym__list_marker_star_dont_interrupt] = ACTIONS(403), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(403), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(403), + [sym__fenced_code_block_start_backtick] = ACTIONS(403), + [sym__fenced_code_block_start_tilde] = ACTIONS(403), + [sym__blank_line_start] = ACTIONS(403), + [sym__no_indented_chunk] = ACTIONS(403), + [sym__code_span_start] = ACTIONS(403), + [sym__emphasis_open_star] = ACTIONS(403), + [sym__emphasis_open_underscore] = ACTIONS(403), + [sym__last_token_whitespace] = ACTIONS(543), + }, + [97] = { + [aux_sym__ignore_matching_tokens] = STATE(96), [anon_sym_BANG] = ACTIONS(389), [anon_sym_DQUOTE] = ACTIONS(389), [anon_sym_POUND] = ACTIONS(389), @@ -40980,8 +41073,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__digits] = ACTIONS(389), [aux_sym__newline_token1] = ACTIONS(389), [sym__block_close] = ACTIONS(389), - [sym__block_continuation] = ACTIONS(542), - [sym__block_quote_continuation] = ACTIONS(542), + [sym__block_continuation] = ACTIONS(541), + [sym__block_quote_continuation] = ACTIONS(541), [sym__block_quote_start] = ACTIONS(389), [sym__indented_chunk_start] = ACTIONS(389), [sym_atx_h1_marker] = ACTIONS(389), @@ -41008,10 +41101,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(389), [sym__emphasis_open_star] = ACTIONS(389), [sym__emphasis_open_underscore] = ACTIONS(389), - [sym__last_token_whitespace] = ACTIONS(542), + [sym__last_token_whitespace] = ACTIONS(541), }, - [97] = { - [aux_sym__ignore_matching_tokens] = STATE(265), + [98] = { + [aux_sym__ignore_matching_tokens] = STATE(95), + [anon_sym_BANG] = ACTIONS(389), + [anon_sym_DQUOTE] = ACTIONS(389), + [anon_sym_POUND] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(391), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_RPAREN] = ACTIONS(389), + [anon_sym_STAR] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_COMMA] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_DOT] = ACTIONS(389), + [anon_sym_SLASH] = ACTIONS(389), + [anon_sym_COLON] = ACTIONS(389), + [anon_sym_SEMI] = ACTIONS(389), + [anon_sym_LT] = ACTIONS(391), + [anon_sym_EQ] = ACTIONS(389), + [anon_sym_GT] = ACTIONS(389), + [anon_sym_QMARK] = ACTIONS(389), + [anon_sym_AT] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_BSLASH] = ACTIONS(391), + [anon_sym_RBRACK] = ACTIONS(389), + [anon_sym_CARET] = ACTIONS(389), + [anon_sym__] = ACTIONS(389), + [anon_sym_BQUOTE] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_PIPE] = ACTIONS(389), + [anon_sym_RBRACE] = ACTIONS(389), + [anon_sym_TILDE] = ACTIONS(389), + [aux_sym__html_block_1_token1] = ACTIONS(389), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(391), + [anon_sym_LT_QMARK] = ACTIONS(391), + [aux_sym__html_block_4_token1] = ACTIONS(391), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(389), + [aux_sym__html_block_6_token1] = ACTIONS(391), + [aux_sym__html_block_6_token2] = ACTIONS(389), + [sym__open_tag_html_block] = ACTIONS(389), + [sym__open_tag_html_block_newline] = ACTIONS(389), + [sym__closing_tag_html_block] = ACTIONS(389), + [sym__closing_tag_html_block_newline] = ACTIONS(389), + [sym_backslash_escape] = ACTIONS(389), + [sym_entity_reference] = ACTIONS(389), + [sym_numeric_character_reference] = ACTIONS(389), + [sym_uri_autolink] = ACTIONS(389), + [sym_email_autolink] = ACTIONS(389), + [sym__whitespace_ge_2] = ACTIONS(389), + [aux_sym__whitespace_token1] = ACTIONS(391), + [sym__word_no_digit] = ACTIONS(389), + [sym__digits] = ACTIONS(389), + [aux_sym__newline_token1] = ACTIONS(389), + [sym__block_close] = ACTIONS(389), + [sym__block_continuation] = ACTIONS(546), + [sym__block_quote_continuation] = ACTIONS(546), + [sym__block_quote_start] = ACTIONS(389), + [sym__indented_chunk_start] = ACTIONS(389), + [sym_atx_h1_marker] = ACTIONS(389), + [sym_atx_h2_marker] = ACTIONS(389), + [sym_atx_h3_marker] = ACTIONS(389), + [sym_atx_h4_marker] = ACTIONS(389), + [sym_atx_h5_marker] = ACTIONS(389), + [sym_atx_h6_marker] = ACTIONS(389), + [sym__thematic_break] = ACTIONS(389), + [sym__list_marker_minus] = ACTIONS(389), + [sym__list_marker_plus] = ACTIONS(389), + [sym__list_marker_star] = ACTIONS(389), + [sym__list_marker_parenthesis] = ACTIONS(389), + [sym__list_marker_dot] = ACTIONS(389), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(389), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(389), + [sym__list_marker_star_dont_interrupt] = ACTIONS(389), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(389), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(389), + [sym__fenced_code_block_start_backtick] = ACTIONS(389), + [sym__fenced_code_block_start_tilde] = ACTIONS(389), + [sym__blank_line_start] = ACTIONS(389), + [sym__no_indented_chunk] = ACTIONS(389), + [sym__code_span_start] = ACTIONS(389), + [sym__emphasis_open_star] = ACTIONS(389), + [sym__emphasis_open_underscore] = ACTIONS(389), + [sym__last_token_whitespace] = ACTIONS(546), + }, + [99] = { + [aux_sym__ignore_matching_tokens] = STATE(106), [anon_sym_BANG] = ACTIONS(377), [anon_sym_DQUOTE] = ACTIONS(377), [anon_sym_POUND] = ACTIONS(377), @@ -41065,10 +41244,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__word_no_digit] = ACTIONS(377), [sym__digits] = ACTIONS(377), [aux_sym__newline_token1] = ACTIONS(377), - [sym__line_ending] = ACTIONS(544), + [sym__line_ending] = ACTIONS(548), [sym__block_close] = ACTIONS(377), - [sym__block_continuation] = ACTIONS(546), - [sym__block_quote_continuation] = ACTIONS(546), + [sym__block_continuation] = ACTIONS(550), + [sym__block_quote_continuation] = ACTIONS(550), [sym__block_quote_start] = ACTIONS(377), [sym__indented_chunk_start] = ACTIONS(377), [sym_atx_h1_marker] = ACTIONS(377), @@ -41094,10 +41273,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(377), [sym__emphasis_open_star] = ACTIONS(377), [sym__emphasis_open_underscore] = ACTIONS(377), - [sym__last_token_whitespace] = ACTIONS(546), + [sym__last_token_whitespace] = ACTIONS(550), }, - [98] = { - [aux_sym__ignore_matching_tokens] = STATE(99), + [100] = { + [aux_sym__ignore_matching_tokens] = STATE(101), + [ts_builtin_sym_end] = ACTIONS(389), [anon_sym_BANG] = ACTIONS(389), [anon_sym_DQUOTE] = ACTIONS(389), [anon_sym_POUND] = ACTIONS(389), @@ -41151,9 +41331,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__word_no_digit] = ACTIONS(389), [sym__digits] = ACTIONS(389), [aux_sym__newline_token1] = ACTIONS(389), - [sym__block_close] = ACTIONS(389), - [sym__block_continuation] = ACTIONS(548), - [sym__block_quote_continuation] = ACTIONS(548), + [sym__block_continuation] = ACTIONS(539), + [sym__block_quote_continuation] = ACTIONS(539), [sym__block_quote_start] = ACTIONS(389), [sym__indented_chunk_start] = ACTIONS(389), [sym_atx_h1_marker] = ACTIONS(389), @@ -41180,10 +41359,267 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(389), [sym__emphasis_open_star] = ACTIONS(389), [sym__emphasis_open_underscore] = ACTIONS(389), - [sym__last_token_whitespace] = ACTIONS(548), + [sym__last_token_whitespace] = ACTIONS(539), }, - [99] = { - [aux_sym__ignore_matching_tokens] = STATE(99), + [101] = { + [aux_sym__ignore_matching_tokens] = STATE(101), + [ts_builtin_sym_end] = ACTIONS(403), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_DQUOTE] = ACTIONS(403), + [anon_sym_POUND] = ACTIONS(403), + [anon_sym_DOLLAR] = ACTIONS(403), + [anon_sym_PERCENT] = ACTIONS(403), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_SQUOTE] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(403), + [anon_sym_RPAREN] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_PLUS] = ACTIONS(403), + [anon_sym_COMMA] = ACTIONS(403), + [anon_sym_DASH] = ACTIONS(403), + [anon_sym_DOT] = ACTIONS(403), + [anon_sym_SLASH] = ACTIONS(403), + [anon_sym_COLON] = ACTIONS(403), + [anon_sym_SEMI] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(403), + [anon_sym_GT] = ACTIONS(403), + [anon_sym_QMARK] = ACTIONS(403), + [anon_sym_AT] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_BSLASH] = ACTIONS(405), + [anon_sym_RBRACK] = ACTIONS(403), + [anon_sym_CARET] = ACTIONS(403), + [anon_sym__] = ACTIONS(403), + [anon_sym_BQUOTE] = ACTIONS(403), + [anon_sym_LBRACE] = ACTIONS(403), + [anon_sym_PIPE] = ACTIONS(403), + [anon_sym_RBRACE] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [aux_sym__html_block_1_token1] = ACTIONS(403), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(405), + [anon_sym_LT_QMARK] = ACTIONS(405), + [aux_sym__html_block_4_token1] = ACTIONS(405), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(403), + [aux_sym__html_block_6_token1] = ACTIONS(405), + [aux_sym__html_block_6_token2] = ACTIONS(403), + [sym__open_tag_html_block] = ACTIONS(403), + [sym__open_tag_html_block_newline] = ACTIONS(403), + [sym__closing_tag_html_block] = ACTIONS(403), + [sym__closing_tag_html_block_newline] = ACTIONS(403), + [sym_backslash_escape] = ACTIONS(403), + [sym_entity_reference] = ACTIONS(403), + [sym_numeric_character_reference] = ACTIONS(403), + [sym_uri_autolink] = ACTIONS(403), + [sym_email_autolink] = ACTIONS(403), + [sym__whitespace_ge_2] = ACTIONS(403), + [aux_sym__whitespace_token1] = ACTIONS(405), + [sym__word_no_digit] = ACTIONS(403), + [sym__digits] = ACTIONS(403), + [aux_sym__newline_token1] = ACTIONS(403), + [sym__block_continuation] = ACTIONS(552), + [sym__block_quote_continuation] = ACTIONS(552), + [sym__block_quote_start] = ACTIONS(403), + [sym__indented_chunk_start] = ACTIONS(403), + [sym_atx_h1_marker] = ACTIONS(403), + [sym_atx_h2_marker] = ACTIONS(403), + [sym_atx_h3_marker] = ACTIONS(403), + [sym_atx_h4_marker] = ACTIONS(403), + [sym_atx_h5_marker] = ACTIONS(403), + [sym_atx_h6_marker] = ACTIONS(403), + [sym__thematic_break] = ACTIONS(403), + [sym__list_marker_minus] = ACTIONS(403), + [sym__list_marker_plus] = ACTIONS(403), + [sym__list_marker_star] = ACTIONS(403), + [sym__list_marker_parenthesis] = ACTIONS(403), + [sym__list_marker_dot] = ACTIONS(403), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(403), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(403), + [sym__list_marker_star_dont_interrupt] = ACTIONS(403), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(403), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(403), + [sym__fenced_code_block_start_backtick] = ACTIONS(403), + [sym__fenced_code_block_start_tilde] = ACTIONS(403), + [sym__blank_line_start] = ACTIONS(403), + [sym__no_indented_chunk] = ACTIONS(403), + [sym__code_span_start] = ACTIONS(403), + [sym__emphasis_open_star] = ACTIONS(403), + [sym__emphasis_open_underscore] = ACTIONS(403), + [sym__last_token_whitespace] = ACTIONS(552), + }, + [102] = { + [aux_sym__ignore_matching_tokens] = STATE(160), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_DQUOTE] = ACTIONS(555), + [anon_sym_POUND] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(555), + [anon_sym_PERCENT] = ACTIONS(555), + [anon_sym_AMP] = ACTIONS(557), + [anon_sym_SQUOTE] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_RPAREN] = ACTIONS(555), + [anon_sym_STAR] = ACTIONS(555), + [anon_sym_PLUS] = ACTIONS(555), + [anon_sym_COMMA] = ACTIONS(555), + [anon_sym_DASH] = ACTIONS(555), + [anon_sym_DOT] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(555), + [anon_sym_SEMI] = ACTIONS(555), + [anon_sym_LT] = ACTIONS(557), + [anon_sym_EQ] = ACTIONS(555), + [anon_sym_GT] = ACTIONS(555), + [anon_sym_QMARK] = ACTIONS(555), + [anon_sym_AT] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(557), + [anon_sym_RBRACK] = ACTIONS(555), + [anon_sym_CARET] = ACTIONS(555), + [anon_sym__] = ACTIONS(555), + [anon_sym_BQUOTE] = ACTIONS(555), + [anon_sym_LBRACE] = ACTIONS(555), + [anon_sym_PIPE] = ACTIONS(555), + [anon_sym_RBRACE] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(555), + [aux_sym__html_block_1_token1] = ACTIONS(555), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(557), + [anon_sym_LT_QMARK] = ACTIONS(557), + [aux_sym__html_block_4_token1] = ACTIONS(557), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(555), + [aux_sym__html_block_6_token1] = ACTIONS(557), + [aux_sym__html_block_6_token2] = ACTIONS(555), + [sym__open_tag_html_block] = ACTIONS(555), + [sym__open_tag_html_block_newline] = ACTIONS(555), + [sym__closing_tag_html_block] = ACTIONS(555), + [sym__closing_tag_html_block_newline] = ACTIONS(555), + [sym_backslash_escape] = ACTIONS(555), + [sym_entity_reference] = ACTIONS(555), + [sym_numeric_character_reference] = ACTIONS(555), + [sym_uri_autolink] = ACTIONS(555), + [sym_email_autolink] = ACTIONS(555), + [sym__whitespace_ge_2] = ACTIONS(555), + [aux_sym__whitespace_token1] = ACTIONS(557), + [sym__word_no_digit] = ACTIONS(555), + [sym__digits] = ACTIONS(555), + [aux_sym__newline_token1] = ACTIONS(555), + [sym__block_close] = ACTIONS(555), + [sym__block_continuation] = ACTIONS(113), + [sym__block_quote_continuation] = ACTIONS(113), + [sym__block_quote_start] = ACTIONS(555), + [sym__indented_chunk_start] = ACTIONS(555), + [sym_atx_h1_marker] = ACTIONS(555), + [sym_atx_h2_marker] = ACTIONS(555), + [sym_atx_h3_marker] = ACTIONS(555), + [sym_atx_h4_marker] = ACTIONS(555), + [sym_atx_h5_marker] = ACTIONS(555), + [sym_atx_h6_marker] = ACTIONS(555), + [sym__thematic_break] = ACTIONS(555), + [sym__list_marker_minus] = ACTIONS(555), + [sym__list_marker_plus] = ACTIONS(555), + [sym__list_marker_star] = ACTIONS(555), + [sym__list_marker_parenthesis] = ACTIONS(555), + [sym__list_marker_dot] = ACTIONS(555), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(555), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(555), + [sym__list_marker_star_dont_interrupt] = ACTIONS(555), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(555), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(555), + [sym__fenced_code_block_start_backtick] = ACTIONS(555), + [sym__fenced_code_block_start_tilde] = ACTIONS(555), + [sym__blank_line_start] = ACTIONS(555), + [sym__code_span_start] = ACTIONS(555), + [sym__emphasis_open_star] = ACTIONS(555), + [sym__emphasis_open_underscore] = ACTIONS(555), + [sym__last_token_whitespace] = ACTIONS(113), + }, + [103] = { + [sym__soft_line_break] = STATE(257), + [sym__link_text] = STATE(2126), + [sym__link_text_non_empty] = STATE(716), + [sym_shortcut_link] = STATE(257), + [sym_full_reference_link] = STATE(257), + [sym_collapsed_reference_link] = STATE(257), + [sym_inline_link] = STATE(257), + [sym_image] = STATE(257), + [sym__image_inline_link] = STATE(663), + [sym__image_shortcut_link] = STATE(663), + [sym__image_full_reference_link] = STATE(663), + [sym__image_collapsed_reference_link] = STATE(663), + [sym__image_description] = STATE(2134), + [sym__image_description_non_empty] = STATE(705), + [sym_html_tag] = STATE(257), + [sym__open_tag] = STATE(702), + [sym__closing_tag] = STATE(702), + [sym__html_comment] = STATE(702), + [sym__processing_instruction] = STATE(702), + [sym__declaration] = STATE(702), + [sym__cdata_section] = STATE(702), + [sym_hard_line_break] = STATE(257), + [sym__whitespace] = STATE(257), + [sym__word] = STATE(257), + [sym__newline] = STATE(2143), + [sym__inline_element_no_underscore] = STATE(257), + [aux_sym__inline_no_underscore] = STATE(257), + [sym__text_inline_no_underscore] = STATE(257), + [sym__emphasis_star] = STATE(800), + [sym__strong_emphasis_star] = STATE(257), + [sym__emphasis_underscore] = STATE(800), + [sym__strong_emphasis_underscore] = STATE(257), + [sym__code_span] = STATE(257), + [anon_sym_BANG] = ACTIONS(559), + [anon_sym_DQUOTE] = ACTIONS(561), + [anon_sym_POUND] = ACTIONS(561), + [anon_sym_DOLLAR] = ACTIONS(561), + [anon_sym_PERCENT] = ACTIONS(561), + [anon_sym_AMP] = ACTIONS(563), + [anon_sym_SQUOTE] = ACTIONS(561), + [anon_sym_LPAREN] = ACTIONS(561), + [anon_sym_RPAREN] = ACTIONS(561), + [anon_sym_STAR] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_COMMA] = ACTIONS(561), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_DOT] = ACTIONS(561), + [anon_sym_SLASH] = ACTIONS(561), + [anon_sym_COLON] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(561), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_EQ] = ACTIONS(561), + [anon_sym_GT] = ACTIONS(561), + [anon_sym_QMARK] = ACTIONS(561), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_BSLASH] = ACTIONS(569), + [anon_sym_RBRACK] = ACTIONS(561), + [anon_sym_CARET] = ACTIONS(561), + [anon_sym__] = ACTIONS(561), + [anon_sym_BQUOTE] = ACTIONS(561), + [anon_sym_LBRACE] = ACTIONS(561), + [anon_sym_PIPE] = ACTIONS(561), + [anon_sym_RBRACE] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(571), + [anon_sym_LT_QMARK] = ACTIONS(573), + [aux_sym__html_block_4_token1] = ACTIONS(575), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(577), + [sym_backslash_escape] = ACTIONS(579), + [sym_entity_reference] = ACTIONS(579), + [sym_numeric_character_reference] = ACTIONS(579), + [sym_uri_autolink] = ACTIONS(579), + [sym_email_autolink] = ACTIONS(579), + [sym__whitespace_ge_2] = ACTIONS(581), + [aux_sym__whitespace_token1] = ACTIONS(583), + [sym__word_no_digit] = ACTIONS(579), + [sym__digits] = ACTIONS(579), + [aux_sym__newline_token1] = ACTIONS(41), + [sym__code_span_start] = ACTIONS(585), + [sym__emphasis_open_star] = ACTIONS(587), + [sym__emphasis_open_underscore] = ACTIONS(589), + [sym__emphasis_close_underscore] = ACTIONS(591), + }, + [104] = { + [aux_sym__ignore_matching_tokens] = STATE(201), + [ts_builtin_sym_end] = ACTIONS(397), [anon_sym_BANG] = ACTIONS(397), [anon_sym_DQUOTE] = ACTIONS(397), [anon_sym_POUND] = ACTIONS(397), @@ -41237,9 +41673,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__word_no_digit] = ACTIONS(397), [sym__digits] = ACTIONS(397), [aux_sym__newline_token1] = ACTIONS(397), - [sym__block_close] = ACTIONS(397), - [sym__block_continuation] = ACTIONS(550), - [sym__block_quote_continuation] = ACTIONS(550), + [sym__block_continuation] = ACTIONS(109), + [sym__block_quote_continuation] = ACTIONS(109), [sym__block_quote_start] = ACTIONS(397), [sym__indented_chunk_start] = ACTIONS(397), [sym_atx_h1_marker] = ACTIONS(397), @@ -41262,186 +41697,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__fenced_code_block_start_backtick] = ACTIONS(397), [sym__fenced_code_block_start_tilde] = ACTIONS(397), [sym__blank_line_start] = ACTIONS(397), - [sym__no_indented_chunk] = ACTIONS(397), [sym__code_span_start] = ACTIONS(397), [sym__emphasis_open_star] = ACTIONS(397), [sym__emphasis_open_underscore] = ACTIONS(397), - [sym__last_token_whitespace] = ACTIONS(550), - }, - [100] = { - [sym__block_interrupt_paragraph] = STATE(890), - [sym_thematic_break] = STATE(890), - [sym_atx_heading] = STATE(890), - [sym_fenced_code_block] = STATE(890), - [sym__html_block_1] = STATE(890), - [sym__html_block_2] = STATE(890), - [sym__html_block_3] = STATE(890), - [sym__html_block_4] = STATE(890), - [sym__html_block_5] = STATE(890), - [sym__html_block_6] = STATE(890), - [sym__blank_line] = STATE(890), - [sym_block_quote] = STATE(890), - [anon_sym_BANG] = ACTIONS(415), - [anon_sym_DQUOTE] = ACTIONS(415), - [anon_sym_POUND] = ACTIONS(415), - [anon_sym_DOLLAR] = ACTIONS(415), - [anon_sym_PERCENT] = ACTIONS(415), - [anon_sym_AMP] = ACTIONS(417), - [anon_sym_SQUOTE] = ACTIONS(415), - [anon_sym_LPAREN] = ACTIONS(415), - [anon_sym_RPAREN] = ACTIONS(415), - [anon_sym_STAR] = ACTIONS(415), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_COMMA] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_DOT] = ACTIONS(415), - [anon_sym_SLASH] = ACTIONS(415), - [anon_sym_COLON] = ACTIONS(415), - [anon_sym_SEMI] = ACTIONS(415), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_EQ] = ACTIONS(415), - [anon_sym_GT] = ACTIONS(415), - [anon_sym_QMARK] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(415), - [anon_sym_LBRACK] = ACTIONS(415), - [anon_sym_BSLASH] = ACTIONS(417), - [anon_sym_RBRACK] = ACTIONS(415), - [anon_sym_CARET] = ACTIONS(415), - [anon_sym__] = ACTIONS(415), - [anon_sym_BQUOTE] = ACTIONS(415), - [anon_sym_LBRACE] = ACTIONS(415), - [anon_sym_PIPE] = ACTIONS(415), - [anon_sym_RBRACE] = ACTIONS(415), - [anon_sym_TILDE] = ACTIONS(415), - [aux_sym__html_block_1_token1] = ACTIONS(511), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(513), - [anon_sym_LT_QMARK] = ACTIONS(515), - [aux_sym__html_block_4_token1] = ACTIONS(517), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(519), - [aux_sym__html_block_6_token1] = ACTIONS(521), - [aux_sym__html_block_6_token2] = ACTIONS(523), - [sym_backslash_escape] = ACTIONS(415), - [sym_entity_reference] = ACTIONS(415), - [sym_numeric_character_reference] = ACTIONS(415), - [sym_uri_autolink] = ACTIONS(415), - [sym_email_autolink] = ACTIONS(415), - [sym__whitespace_ge_2] = ACTIONS(415), - [aux_sym__whitespace_token1] = ACTIONS(417), - [sym__word_no_digit] = ACTIONS(415), - [sym__digits] = ACTIONS(415), - [aux_sym__newline_token1] = ACTIONS(415), - [sym__block_quote_start] = ACTIONS(525), - [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(553), - [sym_setext_h2_underline] = ACTIONS(553), - [sym__thematic_break] = ACTIONS(531), - [sym__list_marker_minus] = ACTIONS(553), - [sym__list_marker_plus] = ACTIONS(553), - [sym__list_marker_star] = ACTIONS(553), - [sym__list_marker_parenthesis] = ACTIONS(553), - [sym__list_marker_dot] = ACTIONS(553), - [sym__fenced_code_block_start_backtick] = ACTIONS(533), - [sym__fenced_code_block_start_tilde] = ACTIONS(535), - [sym__blank_line_start] = ACTIONS(537), - [sym__split_token] = ACTIONS(447), - [sym__soft_line_break_marker] = ACTIONS(447), - [sym__code_span_start] = ACTIONS(415), - [sym__emphasis_open_star] = ACTIONS(415), - [sym__emphasis_open_underscore] = ACTIONS(415), + [sym__last_token_whitespace] = ACTIONS(109), }, - [101] = { - [aux_sym__ignore_matching_tokens] = STATE(99), - [anon_sym_BANG] = ACTIONS(407), - [anon_sym_DQUOTE] = ACTIONS(407), - [anon_sym_POUND] = ACTIONS(407), - [anon_sym_DOLLAR] = ACTIONS(407), - [anon_sym_PERCENT] = ACTIONS(407), - [anon_sym_AMP] = ACTIONS(409), - [anon_sym_SQUOTE] = ACTIONS(407), - [anon_sym_LPAREN] = ACTIONS(407), - [anon_sym_RPAREN] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(407), - [anon_sym_COMMA] = ACTIONS(407), - [anon_sym_DASH] = ACTIONS(407), - [anon_sym_DOT] = ACTIONS(407), - [anon_sym_SLASH] = ACTIONS(407), - [anon_sym_COLON] = ACTIONS(407), - [anon_sym_SEMI] = ACTIONS(407), - [anon_sym_LT] = ACTIONS(409), - [anon_sym_EQ] = ACTIONS(407), - [anon_sym_GT] = ACTIONS(407), - [anon_sym_QMARK] = ACTIONS(407), - [anon_sym_AT] = ACTIONS(407), - [anon_sym_LBRACK] = ACTIONS(407), - [anon_sym_BSLASH] = ACTIONS(409), - [anon_sym_RBRACK] = ACTIONS(407), - [anon_sym_CARET] = ACTIONS(407), - [anon_sym__] = ACTIONS(407), - [anon_sym_BQUOTE] = ACTIONS(407), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_PIPE] = ACTIONS(407), - [anon_sym_RBRACE] = ACTIONS(407), - [anon_sym_TILDE] = ACTIONS(407), - [aux_sym__html_block_1_token1] = ACTIONS(407), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(409), - [anon_sym_LT_QMARK] = ACTIONS(409), - [aux_sym__html_block_4_token1] = ACTIONS(409), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(407), - [aux_sym__html_block_6_token1] = ACTIONS(409), - [aux_sym__html_block_6_token2] = ACTIONS(407), - [sym__open_tag_html_block] = ACTIONS(407), - [sym__open_tag_html_block_newline] = ACTIONS(407), - [sym__closing_tag_html_block] = ACTIONS(407), - [sym__closing_tag_html_block_newline] = ACTIONS(407), - [sym_backslash_escape] = ACTIONS(407), - [sym_entity_reference] = ACTIONS(407), - [sym_numeric_character_reference] = ACTIONS(407), - [sym_uri_autolink] = ACTIONS(407), - [sym_email_autolink] = ACTIONS(407), - [sym__whitespace_ge_2] = ACTIONS(407), - [aux_sym__whitespace_token1] = ACTIONS(409), - [sym__word_no_digit] = ACTIONS(407), - [sym__digits] = ACTIONS(407), - [aux_sym__newline_token1] = ACTIONS(407), - [sym__block_close] = ACTIONS(407), - [sym__block_continuation] = ACTIONS(548), - [sym__block_quote_continuation] = ACTIONS(548), - [sym__block_quote_start] = ACTIONS(407), - [sym__indented_chunk_start] = ACTIONS(407), - [sym_atx_h1_marker] = ACTIONS(407), - [sym_atx_h2_marker] = ACTIONS(407), - [sym_atx_h3_marker] = ACTIONS(407), - [sym_atx_h4_marker] = ACTIONS(407), - [sym_atx_h5_marker] = ACTIONS(407), - [sym_atx_h6_marker] = ACTIONS(407), - [sym__thematic_break] = ACTIONS(407), - [sym__list_marker_minus] = ACTIONS(407), - [sym__list_marker_plus] = ACTIONS(407), - [sym__list_marker_star] = ACTIONS(407), - [sym__list_marker_parenthesis] = ACTIONS(407), - [sym__list_marker_dot] = ACTIONS(407), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(407), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(407), - [sym__list_marker_star_dont_interrupt] = ACTIONS(407), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(407), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(407), - [sym__fenced_code_block_start_backtick] = ACTIONS(407), - [sym__fenced_code_block_start_tilde] = ACTIONS(407), - [sym__blank_line_start] = ACTIONS(407), - [sym__no_indented_chunk] = ACTIONS(407), - [sym__code_span_start] = ACTIONS(407), - [sym__emphasis_open_star] = ACTIONS(407), - [sym__emphasis_open_underscore] = ACTIONS(407), - [sym__last_token_whitespace] = ACTIONS(548), + [105] = { + [aux_sym__ignore_matching_tokens] = STATE(160), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_DQUOTE] = ACTIONS(593), + [anon_sym_POUND] = ACTIONS(593), + [anon_sym_DOLLAR] = ACTIONS(593), + [anon_sym_PERCENT] = ACTIONS(593), + [anon_sym_AMP] = ACTIONS(595), + [anon_sym_SQUOTE] = ACTIONS(593), + [anon_sym_LPAREN] = ACTIONS(593), + [anon_sym_RPAREN] = ACTIONS(593), + [anon_sym_STAR] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_COMMA] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_DOT] = ACTIONS(593), + [anon_sym_SLASH] = ACTIONS(593), + [anon_sym_COLON] = ACTIONS(593), + [anon_sym_SEMI] = ACTIONS(593), + [anon_sym_LT] = ACTIONS(595), + [anon_sym_EQ] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(593), + [anon_sym_LBRACK] = ACTIONS(593), + [anon_sym_BSLASH] = ACTIONS(595), + [anon_sym_RBRACK] = ACTIONS(593), + [anon_sym_CARET] = ACTIONS(593), + [anon_sym__] = ACTIONS(593), + [anon_sym_BQUOTE] = ACTIONS(593), + [anon_sym_LBRACE] = ACTIONS(593), + [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_RBRACE] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(593), + [aux_sym__html_block_1_token1] = ACTIONS(593), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(595), + [anon_sym_LT_QMARK] = ACTIONS(595), + [aux_sym__html_block_4_token1] = ACTIONS(595), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(593), + [aux_sym__html_block_6_token1] = ACTIONS(595), + [aux_sym__html_block_6_token2] = ACTIONS(593), + [sym__open_tag_html_block] = ACTIONS(593), + [sym__open_tag_html_block_newline] = ACTIONS(593), + [sym__closing_tag_html_block] = ACTIONS(593), + [sym__closing_tag_html_block_newline] = ACTIONS(593), + [sym_backslash_escape] = ACTIONS(593), + [sym_entity_reference] = ACTIONS(593), + [sym_numeric_character_reference] = ACTIONS(593), + [sym_uri_autolink] = ACTIONS(593), + [sym_email_autolink] = ACTIONS(593), + [sym__whitespace_ge_2] = ACTIONS(593), + [aux_sym__whitespace_token1] = ACTIONS(595), + [sym__word_no_digit] = ACTIONS(593), + [sym__digits] = ACTIONS(593), + [aux_sym__newline_token1] = ACTIONS(593), + [sym__block_close] = ACTIONS(593), + [sym__block_continuation] = ACTIONS(113), + [sym__block_quote_continuation] = ACTIONS(113), + [sym__block_quote_start] = ACTIONS(593), + [sym__indented_chunk_start] = ACTIONS(593), + [sym_atx_h1_marker] = ACTIONS(593), + [sym_atx_h2_marker] = ACTIONS(593), + [sym_atx_h3_marker] = ACTIONS(593), + [sym_atx_h4_marker] = ACTIONS(593), + [sym_atx_h5_marker] = ACTIONS(593), + [sym_atx_h6_marker] = ACTIONS(593), + [sym__thematic_break] = ACTIONS(593), + [sym__list_marker_minus] = ACTIONS(593), + [sym__list_marker_plus] = ACTIONS(593), + [sym__list_marker_star] = ACTIONS(593), + [sym__list_marker_parenthesis] = ACTIONS(593), + [sym__list_marker_dot] = ACTIONS(593), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(593), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(593), + [sym__list_marker_star_dont_interrupt] = ACTIONS(593), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(593), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(593), + [sym__fenced_code_block_start_backtick] = ACTIONS(593), + [sym__fenced_code_block_start_tilde] = ACTIONS(593), + [sym__blank_line_start] = ACTIONS(593), + [sym__code_span_start] = ACTIONS(593), + [sym__emphasis_open_star] = ACTIONS(593), + [sym__emphasis_open_underscore] = ACTIONS(593), + [sym__last_token_whitespace] = ACTIONS(113), }, - [102] = { - [aux_sym__ignore_matching_tokens] = STATE(264), + [106] = { + [aux_sym__ignore_matching_tokens] = STATE(160), [anon_sym_BANG] = ACTIONS(389), [anon_sym_DQUOTE] = ACTIONS(389), [anon_sym_POUND] = ACTIONS(389), @@ -41496,8 +41843,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__digits] = ACTIONS(389), [aux_sym__newline_token1] = ACTIONS(389), [sym__block_close] = ACTIONS(389), - [sym__block_continuation] = ACTIONS(555), - [sym__block_quote_continuation] = ACTIONS(555), + [sym__block_continuation] = ACTIONS(113), + [sym__block_quote_continuation] = ACTIONS(113), [sym__block_quote_start] = ACTIONS(389), [sym__indented_chunk_start] = ACTIONS(389), [sym_atx_h1_marker] = ACTIONS(389), @@ -41523,6215 +41870,4260 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(389), [sym__emphasis_open_star] = ACTIONS(389), [sym__emphasis_open_underscore] = ACTIONS(389), - [sym__last_token_whitespace] = ACTIONS(555), - }, - [103] = { - [aux_sym__ignore_matching_tokens] = STATE(231), - [ts_builtin_sym_end] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_DQUOTE] = ACTIONS(557), - [anon_sym_POUND] = ACTIONS(557), - [anon_sym_DOLLAR] = ACTIONS(557), - [anon_sym_PERCENT] = ACTIONS(557), - [anon_sym_AMP] = ACTIONS(559), - [anon_sym_SQUOTE] = ACTIONS(557), - [anon_sym_LPAREN] = ACTIONS(557), - [anon_sym_RPAREN] = ACTIONS(557), - [anon_sym_STAR] = ACTIONS(557), - [anon_sym_PLUS] = ACTIONS(557), - [anon_sym_COMMA] = ACTIONS(557), - [anon_sym_DASH] = ACTIONS(557), - [anon_sym_DOT] = ACTIONS(557), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_COLON] = ACTIONS(557), - [anon_sym_SEMI] = ACTIONS(557), - [anon_sym_LT] = ACTIONS(559), - [anon_sym_EQ] = ACTIONS(557), - [anon_sym_GT] = ACTIONS(557), - [anon_sym_QMARK] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(557), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(559), - [anon_sym_RBRACK] = ACTIONS(557), - [anon_sym_CARET] = ACTIONS(557), - [anon_sym__] = ACTIONS(557), - [anon_sym_BQUOTE] = ACTIONS(557), - [anon_sym_LBRACE] = ACTIONS(557), - [anon_sym_PIPE] = ACTIONS(557), - [anon_sym_RBRACE] = ACTIONS(557), - [anon_sym_TILDE] = ACTIONS(557), - [aux_sym__html_block_1_token1] = ACTIONS(557), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(559), - [anon_sym_LT_QMARK] = ACTIONS(559), - [aux_sym__html_block_4_token1] = ACTIONS(559), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(557), - [aux_sym__html_block_6_token1] = ACTIONS(559), - [aux_sym__html_block_6_token2] = ACTIONS(557), - [sym__open_tag_html_block] = ACTIONS(557), - [sym__open_tag_html_block_newline] = ACTIONS(557), - [sym__closing_tag_html_block] = ACTIONS(557), - [sym__closing_tag_html_block_newline] = ACTIONS(557), - [sym_backslash_escape] = ACTIONS(557), - [sym_entity_reference] = ACTIONS(557), - [sym_numeric_character_reference] = ACTIONS(557), - [sym_uri_autolink] = ACTIONS(557), - [sym_email_autolink] = ACTIONS(557), - [sym__whitespace_ge_2] = ACTIONS(557), - [aux_sym__whitespace_token1] = ACTIONS(559), - [sym__word_no_digit] = ACTIONS(557), - [sym__digits] = ACTIONS(557), - [aux_sym__newline_token1] = ACTIONS(557), - [sym__block_continuation] = ACTIONS(561), - [sym__block_quote_continuation] = ACTIONS(561), - [sym__block_quote_start] = ACTIONS(557), - [sym__indented_chunk_start] = ACTIONS(557), - [sym_atx_h1_marker] = ACTIONS(557), - [sym_atx_h2_marker] = ACTIONS(557), - [sym_atx_h3_marker] = ACTIONS(557), - [sym_atx_h4_marker] = ACTIONS(557), - [sym_atx_h5_marker] = ACTIONS(557), - [sym_atx_h6_marker] = ACTIONS(557), - [sym__thematic_break] = ACTIONS(557), - [sym__list_marker_minus] = ACTIONS(557), - [sym__list_marker_plus] = ACTIONS(557), - [sym__list_marker_star] = ACTIONS(557), - [sym__list_marker_parenthesis] = ACTIONS(557), - [sym__list_marker_dot] = ACTIONS(557), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(557), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(557), - [sym__list_marker_star_dont_interrupt] = ACTIONS(557), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(557), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(557), - [sym__fenced_code_block_start_backtick] = ACTIONS(557), - [sym__fenced_code_block_start_tilde] = ACTIONS(557), - [sym__blank_line_start] = ACTIONS(557), - [sym__code_span_start] = ACTIONS(557), - [sym__emphasis_open_star] = ACTIONS(557), - [sym__emphasis_open_underscore] = ACTIONS(557), - [sym__last_token_whitespace] = ACTIONS(561), - }, - [104] = { - [aux_sym__paragraph_end_newline_repeat1] = STATE(104), - [ts_builtin_sym_end] = ACTIONS(563), - [anon_sym_BANG] = ACTIONS(563), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_POUND] = ACTIONS(563), - [anon_sym_DOLLAR] = ACTIONS(563), - [anon_sym_PERCENT] = ACTIONS(563), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(563), - [anon_sym_RPAREN] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(563), - [anon_sym_DASH] = ACTIONS(563), - [anon_sym_DOT] = ACTIONS(563), - [anon_sym_SLASH] = ACTIONS(563), - [anon_sym_COLON] = ACTIONS(563), - [anon_sym_SEMI] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_GT] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(563), - [anon_sym_AT] = ACTIONS(563), - [anon_sym_LBRACK] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_RBRACK] = ACTIONS(563), - [anon_sym_CARET] = ACTIONS(563), - [anon_sym__] = ACTIONS(563), - [anon_sym_BQUOTE] = ACTIONS(563), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_PIPE] = ACTIONS(563), - [anon_sym_RBRACE] = ACTIONS(563), - [anon_sym_TILDE] = ACTIONS(563), - [aux_sym__html_block_1_token1] = ACTIONS(563), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(565), - [anon_sym_LT_QMARK] = ACTIONS(565), - [aux_sym__html_block_4_token1] = ACTIONS(565), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(563), - [aux_sym__html_block_6_token1] = ACTIONS(565), - [aux_sym__html_block_6_token2] = ACTIONS(563), - [sym__open_tag_html_block] = ACTIONS(563), - [sym__open_tag_html_block_newline] = ACTIONS(563), - [sym__closing_tag_html_block] = ACTIONS(563), - [sym__closing_tag_html_block_newline] = ACTIONS(563), - [sym_backslash_escape] = ACTIONS(563), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(563), - [aux_sym__whitespace_token1] = ACTIONS(565), - [sym__word_no_digit] = ACTIONS(563), - [sym__digits] = ACTIONS(563), - [aux_sym__newline_token1] = ACTIONS(563), - [sym__block_quote_start] = ACTIONS(563), - [sym__indented_chunk_start] = ACTIONS(563), - [sym_atx_h1_marker] = ACTIONS(563), - [sym_atx_h2_marker] = ACTIONS(563), - [sym_atx_h3_marker] = ACTIONS(563), - [sym_atx_h4_marker] = ACTIONS(563), - [sym_atx_h5_marker] = ACTIONS(563), - [sym_atx_h6_marker] = ACTIONS(563), - [sym_setext_h1_underline] = ACTIONS(563), - [sym_setext_h2_underline] = ACTIONS(563), - [sym__thematic_break] = ACTIONS(563), - [sym__list_marker_minus] = ACTIONS(563), - [sym__list_marker_plus] = ACTIONS(563), - [sym__list_marker_star] = ACTIONS(563), - [sym__list_marker_parenthesis] = ACTIONS(563), - [sym__list_marker_dot] = ACTIONS(563), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(563), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(563), - [sym__list_marker_star_dont_interrupt] = ACTIONS(563), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(563), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(563), - [sym__fenced_code_block_start_backtick] = ACTIONS(563), - [sym__fenced_code_block_start_tilde] = ACTIONS(563), - [sym__blank_line_start] = ACTIONS(563), - [sym__split_token] = ACTIONS(567), - [sym__code_span_start] = ACTIONS(563), - [sym__emphasis_open_star] = ACTIONS(563), - [sym__emphasis_open_underscore] = ACTIONS(563), - }, - [105] = { - [aux_sym__ignore_matching_tokens] = STATE(202), - [ts_builtin_sym_end] = ACTIONS(570), - [anon_sym_BANG] = ACTIONS(570), - [anon_sym_DQUOTE] = ACTIONS(570), - [anon_sym_POUND] = ACTIONS(570), - [anon_sym_DOLLAR] = ACTIONS(570), - [anon_sym_PERCENT] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(572), - [anon_sym_SQUOTE] = ACTIONS(570), - [anon_sym_LPAREN] = ACTIONS(570), - [anon_sym_RPAREN] = ACTIONS(570), - [anon_sym_STAR] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(570), - [anon_sym_COMMA] = ACTIONS(570), - [anon_sym_DASH] = ACTIONS(570), - [anon_sym_DOT] = ACTIONS(570), - [anon_sym_SLASH] = ACTIONS(570), - [anon_sym_COLON] = ACTIONS(570), - [anon_sym_SEMI] = ACTIONS(570), - [anon_sym_LT] = ACTIONS(572), - [anon_sym_EQ] = ACTIONS(570), - [anon_sym_GT] = ACTIONS(570), - [anon_sym_QMARK] = ACTIONS(570), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_BSLASH] = ACTIONS(572), - [anon_sym_RBRACK] = ACTIONS(570), - [anon_sym_CARET] = ACTIONS(570), - [anon_sym__] = ACTIONS(570), - [anon_sym_BQUOTE] = ACTIONS(570), - [anon_sym_LBRACE] = ACTIONS(570), - [anon_sym_PIPE] = ACTIONS(570), - [anon_sym_RBRACE] = ACTIONS(570), - [anon_sym_TILDE] = ACTIONS(570), - [aux_sym__html_block_1_token1] = ACTIONS(570), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(572), - [anon_sym_LT_QMARK] = ACTIONS(572), - [aux_sym__html_block_4_token1] = ACTIONS(572), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(570), - [aux_sym__html_block_6_token1] = ACTIONS(572), - [aux_sym__html_block_6_token2] = ACTIONS(570), - [sym__open_tag_html_block] = ACTIONS(570), - [sym__open_tag_html_block_newline] = ACTIONS(570), - [sym__closing_tag_html_block] = ACTIONS(570), - [sym__closing_tag_html_block_newline] = ACTIONS(570), - [sym_backslash_escape] = ACTIONS(570), - [sym_entity_reference] = ACTIONS(570), - [sym_numeric_character_reference] = ACTIONS(570), - [sym_uri_autolink] = ACTIONS(570), - [sym_email_autolink] = ACTIONS(570), - [sym__whitespace_ge_2] = ACTIONS(570), - [aux_sym__whitespace_token1] = ACTIONS(572), - [sym__word_no_digit] = ACTIONS(570), - [sym__digits] = ACTIONS(570), - [aux_sym__newline_token1] = ACTIONS(570), - [sym__block_continuation] = ACTIONS(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(570), - [sym__indented_chunk_start] = ACTIONS(570), - [sym_atx_h1_marker] = ACTIONS(570), - [sym_atx_h2_marker] = ACTIONS(570), - [sym_atx_h3_marker] = ACTIONS(570), - [sym_atx_h4_marker] = ACTIONS(570), - [sym_atx_h5_marker] = ACTIONS(570), - [sym_atx_h6_marker] = ACTIONS(570), - [sym__thematic_break] = ACTIONS(570), - [sym__list_marker_minus] = ACTIONS(570), - [sym__list_marker_plus] = ACTIONS(570), - [sym__list_marker_star] = ACTIONS(570), - [sym__list_marker_parenthesis] = ACTIONS(570), - [sym__list_marker_dot] = ACTIONS(570), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(570), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(570), - [sym__list_marker_star_dont_interrupt] = ACTIONS(570), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(570), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(570), - [sym__fenced_code_block_start_backtick] = ACTIONS(570), - [sym__fenced_code_block_start_tilde] = ACTIONS(570), - [sym__blank_line_start] = ACTIONS(570), - [sym__code_span_start] = ACTIONS(570), - [sym__emphasis_open_star] = ACTIONS(570), - [sym__emphasis_open_underscore] = ACTIONS(570), - [sym__last_token_whitespace] = ACTIONS(111), - }, - [106] = { - [aux_sym__ignore_matching_tokens] = STATE(202), - [ts_builtin_sym_end] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(574), - [anon_sym_DQUOTE] = ACTIONS(574), - [anon_sym_POUND] = ACTIONS(574), - [anon_sym_DOLLAR] = ACTIONS(574), - [anon_sym_PERCENT] = ACTIONS(574), - [anon_sym_AMP] = ACTIONS(576), - [anon_sym_SQUOTE] = ACTIONS(574), - [anon_sym_LPAREN] = ACTIONS(574), - [anon_sym_RPAREN] = ACTIONS(574), - [anon_sym_STAR] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(574), - [anon_sym_COMMA] = ACTIONS(574), - [anon_sym_DASH] = ACTIONS(574), - [anon_sym_DOT] = ACTIONS(574), - [anon_sym_SLASH] = ACTIONS(574), - [anon_sym_COLON] = ACTIONS(574), - [anon_sym_SEMI] = ACTIONS(574), - [anon_sym_LT] = ACTIONS(576), - [anon_sym_EQ] = ACTIONS(574), - [anon_sym_GT] = ACTIONS(574), - [anon_sym_QMARK] = ACTIONS(574), - [anon_sym_AT] = ACTIONS(574), - [anon_sym_LBRACK] = ACTIONS(574), - [anon_sym_BSLASH] = ACTIONS(576), - [anon_sym_RBRACK] = ACTIONS(574), - [anon_sym_CARET] = ACTIONS(574), - [anon_sym__] = ACTIONS(574), - [anon_sym_BQUOTE] = ACTIONS(574), - [anon_sym_LBRACE] = ACTIONS(574), - [anon_sym_PIPE] = ACTIONS(574), - [anon_sym_RBRACE] = ACTIONS(574), - [anon_sym_TILDE] = ACTIONS(574), - [aux_sym__html_block_1_token1] = ACTIONS(574), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(576), - [anon_sym_LT_QMARK] = ACTIONS(576), - [aux_sym__html_block_4_token1] = ACTIONS(576), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(574), - [aux_sym__html_block_6_token1] = ACTIONS(576), - [aux_sym__html_block_6_token2] = ACTIONS(574), - [sym__open_tag_html_block] = ACTIONS(574), - [sym__open_tag_html_block_newline] = ACTIONS(574), - [sym__closing_tag_html_block] = ACTIONS(574), - [sym__closing_tag_html_block_newline] = ACTIONS(574), - [sym_backslash_escape] = ACTIONS(574), - [sym_entity_reference] = ACTIONS(574), - [sym_numeric_character_reference] = ACTIONS(574), - [sym_uri_autolink] = ACTIONS(574), - [sym_email_autolink] = ACTIONS(574), - [sym__whitespace_ge_2] = ACTIONS(574), - [aux_sym__whitespace_token1] = ACTIONS(576), - [sym__word_no_digit] = ACTIONS(574), - [sym__digits] = ACTIONS(574), - [aux_sym__newline_token1] = ACTIONS(574), - [sym__block_continuation] = ACTIONS(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(574), - [sym__indented_chunk_start] = ACTIONS(574), - [sym_atx_h1_marker] = ACTIONS(574), - [sym_atx_h2_marker] = ACTIONS(574), - [sym_atx_h3_marker] = ACTIONS(574), - [sym_atx_h4_marker] = ACTIONS(574), - [sym_atx_h5_marker] = ACTIONS(574), - [sym_atx_h6_marker] = ACTIONS(574), - [sym__thematic_break] = ACTIONS(574), - [sym__list_marker_minus] = ACTIONS(574), - [sym__list_marker_plus] = ACTIONS(574), - [sym__list_marker_star] = ACTIONS(574), - [sym__list_marker_parenthesis] = ACTIONS(574), - [sym__list_marker_dot] = ACTIONS(574), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(574), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(574), - [sym__list_marker_star_dont_interrupt] = ACTIONS(574), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(574), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(574), - [sym__fenced_code_block_start_backtick] = ACTIONS(574), - [sym__fenced_code_block_start_tilde] = ACTIONS(574), - [sym__blank_line_start] = ACTIONS(574), - [sym__code_span_start] = ACTIONS(574), - [sym__emphasis_open_star] = ACTIONS(574), - [sym__emphasis_open_underscore] = ACTIONS(574), - [sym__last_token_whitespace] = ACTIONS(111), + [sym__last_token_whitespace] = ACTIONS(113), }, [107] = { - [sym__soft_line_break] = STATE(254), - [sym__link_text] = STATE(2135), - [sym__link_text_non_empty] = STATE(707), - [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(708), - [sym__image_shortcut_link] = STATE(708), - [sym__image_full_reference_link] = STATE(708), - [sym__image_collapsed_reference_link] = STATE(708), - [sym__image_description] = STATE(2137), - [sym__image_description_non_empty] = STATE(709), - [sym_html_tag] = STATE(254), - [sym__open_tag] = STATE(710), - [sym__closing_tag] = STATE(710), - [sym__html_comment] = STATE(710), - [sym__processing_instruction] = STATE(710), - [sym__declaration] = STATE(710), - [sym__cdata_section] = STATE(710), - [sym_hard_line_break] = STATE(254), - [sym__whitespace] = STATE(254), - [sym__word] = STATE(254), - [sym__newline] = STATE(2120), - [sym__inline_element_no_star] = STATE(254), - [aux_sym__inline_no_star] = STATE(254), - [sym__text_inline_no_star] = STATE(254), - [sym__emphasis_star] = STATE(777), - [sym__strong_emphasis_star] = STATE(254), - [sym__emphasis_underscore] = STATE(777), - [sym__strong_emphasis_underscore] = STATE(254), - [sym__code_span] = STATE(254), - [anon_sym_BANG] = ACTIONS(578), - [anon_sym_DQUOTE] = ACTIONS(580), - [anon_sym_POUND] = ACTIONS(580), - [anon_sym_DOLLAR] = ACTIONS(580), - [anon_sym_PERCENT] = ACTIONS(580), - [anon_sym_AMP] = ACTIONS(582), - [anon_sym_SQUOTE] = ACTIONS(580), - [anon_sym_LPAREN] = ACTIONS(580), - [anon_sym_RPAREN] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(580), - [anon_sym_COMMA] = ACTIONS(580), - [anon_sym_DASH] = ACTIONS(580), - [anon_sym_DOT] = ACTIONS(580), - [anon_sym_SLASH] = ACTIONS(580), - [anon_sym_COLON] = ACTIONS(580), - [anon_sym_SEMI] = ACTIONS(580), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_EQ] = ACTIONS(580), - [anon_sym_GT] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(580), - [anon_sym_AT] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_BSLASH] = ACTIONS(588), - [anon_sym_RBRACK] = ACTIONS(580), - [anon_sym_CARET] = ACTIONS(580), - [anon_sym__] = ACTIONS(580), - [anon_sym_BQUOTE] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(580), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_RBRACE] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(580), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(590), - [anon_sym_LT_QMARK] = ACTIONS(592), - [aux_sym__html_block_4_token1] = ACTIONS(594), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(596), - [sym_backslash_escape] = ACTIONS(598), - [sym_entity_reference] = ACTIONS(598), - [sym_numeric_character_reference] = ACTIONS(598), - [sym_uri_autolink] = ACTIONS(598), - [sym_email_autolink] = ACTIONS(598), - [sym__whitespace_ge_2] = ACTIONS(600), - [aux_sym__whitespace_token1] = ACTIONS(602), - [sym__word_no_digit] = ACTIONS(598), - [sym__digits] = ACTIONS(598), + [sym__soft_line_break] = STATE(253), + [sym__link_text] = STATE(2124), + [sym__link_text_non_empty] = STATE(712), + [sym_shortcut_link] = STATE(253), + [sym_full_reference_link] = STATE(253), + [sym_collapsed_reference_link] = STATE(253), + [sym_inline_link] = STATE(253), + [sym_image] = STATE(253), + [sym__image_inline_link] = STATE(713), + [sym__image_shortcut_link] = STATE(713), + [sym__image_full_reference_link] = STATE(713), + [sym__image_collapsed_reference_link] = STATE(713), + [sym__image_description] = STATE(2120), + [sym__image_description_non_empty] = STATE(714), + [sym_html_tag] = STATE(253), + [sym__open_tag] = STATE(715), + [sym__closing_tag] = STATE(715), + [sym__html_comment] = STATE(715), + [sym__processing_instruction] = STATE(715), + [sym__declaration] = STATE(715), + [sym__cdata_section] = STATE(715), + [sym_hard_line_break] = STATE(253), + [sym__whitespace] = STATE(253), + [sym__word] = STATE(253), + [sym__newline] = STATE(2144), + [sym__inline_element_no_star] = STATE(253), + [aux_sym__inline_no_star] = STATE(253), + [sym__text_inline_no_star] = STATE(253), + [sym__emphasis_star] = STATE(811), + [sym__strong_emphasis_star] = STATE(253), + [sym__emphasis_underscore] = STATE(811), + [sym__strong_emphasis_underscore] = STATE(253), + [sym__code_span] = STATE(253), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_DQUOTE] = ACTIONS(599), + [anon_sym_POUND] = ACTIONS(599), + [anon_sym_DOLLAR] = ACTIONS(599), + [anon_sym_PERCENT] = ACTIONS(599), + [anon_sym_AMP] = ACTIONS(601), + [anon_sym_SQUOTE] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_RPAREN] = ACTIONS(599), + [anon_sym_STAR] = ACTIONS(599), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_COMMA] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_DOT] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(599), + [anon_sym_COLON] = ACTIONS(599), + [anon_sym_SEMI] = ACTIONS(599), + [anon_sym_LT] = ACTIONS(603), + [anon_sym_EQ] = ACTIONS(599), + [anon_sym_GT] = ACTIONS(599), + [anon_sym_QMARK] = ACTIONS(599), + [anon_sym_AT] = ACTIONS(599), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_BSLASH] = ACTIONS(607), + [anon_sym_RBRACK] = ACTIONS(599), + [anon_sym_CARET] = ACTIONS(599), + [anon_sym__] = ACTIONS(599), + [anon_sym_BQUOTE] = ACTIONS(599), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_PIPE] = ACTIONS(599), + [anon_sym_RBRACE] = ACTIONS(599), + [anon_sym_TILDE] = ACTIONS(599), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(609), + [anon_sym_LT_QMARK] = ACTIONS(611), + [aux_sym__html_block_4_token1] = ACTIONS(613), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(615), + [sym_backslash_escape] = ACTIONS(617), + [sym_entity_reference] = ACTIONS(617), + [sym_numeric_character_reference] = ACTIONS(617), + [sym_uri_autolink] = ACTIONS(617), + [sym_email_autolink] = ACTIONS(617), + [sym__whitespace_ge_2] = ACTIONS(619), + [aux_sym__whitespace_token1] = ACTIONS(621), + [sym__word_no_digit] = ACTIONS(617), + [sym__digits] = ACTIONS(617), [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(604), - [sym__emphasis_open_star] = ACTIONS(606), - [sym__emphasis_open_underscore] = ACTIONS(608), - [sym__emphasis_close_star] = ACTIONS(610), + [sym__code_span_start] = ACTIONS(623), + [sym__emphasis_open_star] = ACTIONS(625), + [sym__emphasis_open_underscore] = ACTIONS(627), + [sym__emphasis_close_star] = ACTIONS(629), }, [108] = { - [aux_sym__ignore_matching_tokens] = STATE(202), - [ts_builtin_sym_end] = 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), - [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(612), - [sym_numeric_character_reference] = ACTIONS(612), - [sym_uri_autolink] = ACTIONS(612), - [sym_email_autolink] = 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(111), - [sym__block_quote_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__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__emphasis_open_star] = ACTIONS(612), - [sym__emphasis_open_underscore] = ACTIONS(612), - [sym__last_token_whitespace] = ACTIONS(111), + [aux_sym__ignore_matching_tokens] = STATE(275), + [anon_sym_BANG] = ACTIONS(631), + [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(633), + [anon_sym_EQ] = ACTIONS(631), + [anon_sym_GT] = ACTIONS(631), + [anon_sym_QMARK] = ACTIONS(631), + [anon_sym_AT] = ACTIONS(631), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_BSLASH] = ACTIONS(633), + [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), + [aux_sym__html_block_1_token1] = ACTIONS(631), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(633), + [anon_sym_LT_QMARK] = ACTIONS(633), + [aux_sym__html_block_4_token1] = ACTIONS(633), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(631), + [aux_sym__html_block_6_token1] = ACTIONS(633), + [aux_sym__html_block_6_token2] = ACTIONS(631), + [sym__open_tag_html_block] = ACTIONS(631), + [sym__open_tag_html_block_newline] = ACTIONS(631), + [sym__closing_tag_html_block] = ACTIONS(631), + [sym__closing_tag_html_block_newline] = ACTIONS(631), + [sym_backslash_escape] = ACTIONS(631), + [sym_entity_reference] = ACTIONS(631), + [sym_numeric_character_reference] = ACTIONS(631), + [sym_uri_autolink] = ACTIONS(631), + [sym_email_autolink] = ACTIONS(631), + [sym__whitespace_ge_2] = ACTIONS(631), + [aux_sym__whitespace_token1] = ACTIONS(633), + [sym__word_no_digit] = ACTIONS(631), + [sym__digits] = ACTIONS(631), + [aux_sym__newline_token1] = ACTIONS(631), + [sym__block_close] = ACTIONS(631), + [sym__block_continuation] = ACTIONS(635), + [sym__block_quote_continuation] = ACTIONS(635), + [sym__block_quote_start] = ACTIONS(631), + [sym__indented_chunk_start] = ACTIONS(631), + [sym_atx_h1_marker] = ACTIONS(631), + [sym_atx_h2_marker] = ACTIONS(631), + [sym_atx_h3_marker] = ACTIONS(631), + [sym_atx_h4_marker] = ACTIONS(631), + [sym_atx_h5_marker] = ACTIONS(631), + [sym_atx_h6_marker] = ACTIONS(631), + [sym__thematic_break] = ACTIONS(631), + [sym__list_marker_minus] = ACTIONS(631), + [sym__list_marker_plus] = ACTIONS(631), + [sym__list_marker_star] = ACTIONS(631), + [sym__list_marker_parenthesis] = ACTIONS(631), + [sym__list_marker_dot] = ACTIONS(631), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(631), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(631), + [sym__list_marker_star_dont_interrupt] = ACTIONS(631), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(631), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(631), + [sym__fenced_code_block_start_backtick] = ACTIONS(631), + [sym__fenced_code_block_start_tilde] = ACTIONS(631), + [sym__blank_line_start] = ACTIONS(631), + [sym__code_span_start] = ACTIONS(631), + [sym__emphasis_open_star] = ACTIONS(631), + [sym__emphasis_open_underscore] = ACTIONS(631), + [sym__last_token_whitespace] = ACTIONS(635), }, [109] = { - [aux_sym__ignore_matching_tokens] = STATE(202), - [ts_builtin_sym_end] = 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), - [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(616), - [sym_numeric_character_reference] = ACTIONS(616), - [sym_uri_autolink] = ACTIONS(616), - [sym_email_autolink] = 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(111), - [sym__block_quote_continuation] = ACTIONS(111), - [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__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__emphasis_open_star] = ACTIONS(616), - [sym__emphasis_open_underscore] = ACTIONS(616), - [sym__last_token_whitespace] = ACTIONS(111), + [aux_sym__ignore_matching_tokens] = STATE(160), + [anon_sym_BANG] = ACTIONS(631), + [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(633), + [anon_sym_EQ] = ACTIONS(631), + [anon_sym_GT] = ACTIONS(631), + [anon_sym_QMARK] = ACTIONS(631), + [anon_sym_AT] = ACTIONS(631), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_BSLASH] = ACTIONS(633), + [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), + [aux_sym__html_block_1_token1] = ACTIONS(631), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(633), + [anon_sym_LT_QMARK] = ACTIONS(633), + [aux_sym__html_block_4_token1] = ACTIONS(633), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(631), + [aux_sym__html_block_6_token1] = ACTIONS(633), + [aux_sym__html_block_6_token2] = ACTIONS(631), + [sym__open_tag_html_block] = ACTIONS(631), + [sym__open_tag_html_block_newline] = ACTIONS(631), + [sym__closing_tag_html_block] = ACTIONS(631), + [sym__closing_tag_html_block_newline] = ACTIONS(631), + [sym_backslash_escape] = ACTIONS(631), + [sym_entity_reference] = ACTIONS(631), + [sym_numeric_character_reference] = ACTIONS(631), + [sym_uri_autolink] = ACTIONS(631), + [sym_email_autolink] = ACTIONS(631), + [sym__whitespace_ge_2] = ACTIONS(631), + [aux_sym__whitespace_token1] = ACTIONS(633), + [sym__word_no_digit] = ACTIONS(631), + [sym__digits] = ACTIONS(631), + [aux_sym__newline_token1] = ACTIONS(631), + [sym__block_close] = ACTIONS(631), + [sym__block_continuation] = ACTIONS(113), + [sym__block_quote_continuation] = ACTIONS(113), + [sym__block_quote_start] = ACTIONS(631), + [sym__indented_chunk_start] = ACTIONS(631), + [sym_atx_h1_marker] = ACTIONS(631), + [sym_atx_h2_marker] = ACTIONS(631), + [sym_atx_h3_marker] = ACTIONS(631), + [sym_atx_h4_marker] = ACTIONS(631), + [sym_atx_h5_marker] = ACTIONS(631), + [sym_atx_h6_marker] = ACTIONS(631), + [sym__thematic_break] = ACTIONS(631), + [sym__list_marker_minus] = ACTIONS(631), + [sym__list_marker_plus] = ACTIONS(631), + [sym__list_marker_star] = ACTIONS(631), + [sym__list_marker_parenthesis] = ACTIONS(631), + [sym__list_marker_dot] = ACTIONS(631), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(631), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(631), + [sym__list_marker_star_dont_interrupt] = ACTIONS(631), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(631), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(631), + [sym__fenced_code_block_start_backtick] = ACTIONS(631), + [sym__fenced_code_block_start_tilde] = ACTIONS(631), + [sym__blank_line_start] = ACTIONS(631), + [sym__code_span_start] = ACTIONS(631), + [sym__emphasis_open_star] = ACTIONS(631), + [sym__emphasis_open_underscore] = ACTIONS(631), + [sym__last_token_whitespace] = ACTIONS(113), }, [110] = { - [aux_sym__ignore_matching_tokens] = STATE(202), - [ts_builtin_sym_end] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(620), - [anon_sym_POUND] = ACTIONS(620), - [anon_sym_DOLLAR] = ACTIONS(620), - [anon_sym_PERCENT] = ACTIONS(620), - [anon_sym_AMP] = ACTIONS(622), - [anon_sym_SQUOTE] = ACTIONS(620), - [anon_sym_LPAREN] = ACTIONS(620), - [anon_sym_RPAREN] = ACTIONS(620), - [anon_sym_STAR] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_COMMA] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_DOT] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(620), - [anon_sym_COLON] = ACTIONS(620), - [anon_sym_SEMI] = ACTIONS(620), - [anon_sym_LT] = ACTIONS(622), - [anon_sym_EQ] = ACTIONS(620), - [anon_sym_GT] = ACTIONS(620), - [anon_sym_QMARK] = ACTIONS(620), - [anon_sym_AT] = ACTIONS(620), - [anon_sym_LBRACK] = ACTIONS(620), - [anon_sym_BSLASH] = ACTIONS(622), - [anon_sym_RBRACK] = ACTIONS(620), - [anon_sym_CARET] = ACTIONS(620), - [anon_sym__] = ACTIONS(620), - [anon_sym_BQUOTE] = ACTIONS(620), - [anon_sym_LBRACE] = ACTIONS(620), - [anon_sym_PIPE] = ACTIONS(620), - [anon_sym_RBRACE] = ACTIONS(620), - [anon_sym_TILDE] = ACTIONS(620), - [aux_sym__html_block_1_token1] = ACTIONS(620), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(622), - [anon_sym_LT_QMARK] = ACTIONS(622), - [aux_sym__html_block_4_token1] = ACTIONS(622), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(620), - [aux_sym__html_block_6_token1] = ACTIONS(622), - [aux_sym__html_block_6_token2] = ACTIONS(620), - [sym__open_tag_html_block] = ACTIONS(620), - [sym__open_tag_html_block_newline] = ACTIONS(620), - [sym__closing_tag_html_block] = ACTIONS(620), - [sym__closing_tag_html_block_newline] = ACTIONS(620), - [sym_backslash_escape] = ACTIONS(620), - [sym_entity_reference] = ACTIONS(620), - [sym_numeric_character_reference] = ACTIONS(620), - [sym_uri_autolink] = ACTIONS(620), - [sym_email_autolink] = ACTIONS(620), - [sym__whitespace_ge_2] = ACTIONS(620), - [aux_sym__whitespace_token1] = ACTIONS(622), - [sym__word_no_digit] = ACTIONS(620), - [sym__digits] = ACTIONS(620), - [aux_sym__newline_token1] = ACTIONS(620), - [sym__block_continuation] = ACTIONS(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(620), - [sym__indented_chunk_start] = ACTIONS(620), - [sym_atx_h1_marker] = ACTIONS(620), - [sym_atx_h2_marker] = ACTIONS(620), - [sym_atx_h3_marker] = ACTIONS(620), - [sym_atx_h4_marker] = ACTIONS(620), - [sym_atx_h5_marker] = ACTIONS(620), - [sym_atx_h6_marker] = ACTIONS(620), - [sym__thematic_break] = ACTIONS(620), - [sym__list_marker_minus] = ACTIONS(620), - [sym__list_marker_plus] = ACTIONS(620), - [sym__list_marker_star] = ACTIONS(620), - [sym__list_marker_parenthesis] = ACTIONS(620), - [sym__list_marker_dot] = ACTIONS(620), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(620), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(620), - [sym__list_marker_star_dont_interrupt] = ACTIONS(620), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(620), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(620), - [sym__fenced_code_block_start_backtick] = ACTIONS(620), - [sym__fenced_code_block_start_tilde] = ACTIONS(620), - [sym__blank_line_start] = ACTIONS(620), - [sym__code_span_start] = ACTIONS(620), - [sym__emphasis_open_star] = ACTIONS(620), - [sym__emphasis_open_underscore] = ACTIONS(620), - [sym__last_token_whitespace] = ACTIONS(111), + [aux_sym__ignore_matching_tokens] = STATE(181), + [ts_builtin_sym_end] = ACTIONS(637), + [anon_sym_BANG] = ACTIONS(637), + [anon_sym_DQUOTE] = ACTIONS(637), + [anon_sym_POUND] = ACTIONS(637), + [anon_sym_DOLLAR] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(639), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_RPAREN] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_COMMA] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_DOT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(637), + [anon_sym_COLON] = ACTIONS(637), + [anon_sym_SEMI] = ACTIONS(637), + [anon_sym_LT] = ACTIONS(639), + [anon_sym_EQ] = ACTIONS(637), + [anon_sym_GT] = ACTIONS(637), + [anon_sym_QMARK] = ACTIONS(637), + [anon_sym_AT] = ACTIONS(637), + [anon_sym_LBRACK] = ACTIONS(637), + [anon_sym_BSLASH] = ACTIONS(639), + [anon_sym_RBRACK] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym__] = ACTIONS(637), + [anon_sym_BQUOTE] = ACTIONS(637), + [anon_sym_LBRACE] = ACTIONS(637), + [anon_sym_PIPE] = ACTIONS(637), + [anon_sym_RBRACE] = ACTIONS(637), + [anon_sym_TILDE] = ACTIONS(637), + [aux_sym__html_block_1_token1] = ACTIONS(637), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(639), + [anon_sym_LT_QMARK] = ACTIONS(639), + [aux_sym__html_block_4_token1] = ACTIONS(639), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(637), + [aux_sym__html_block_6_token1] = ACTIONS(639), + [aux_sym__html_block_6_token2] = ACTIONS(637), + [sym__open_tag_html_block] = ACTIONS(637), + [sym__open_tag_html_block_newline] = ACTIONS(637), + [sym__closing_tag_html_block] = ACTIONS(637), + [sym__closing_tag_html_block_newline] = ACTIONS(637), + [sym_backslash_escape] = ACTIONS(637), + [sym_entity_reference] = ACTIONS(637), + [sym_numeric_character_reference] = ACTIONS(637), + [sym_uri_autolink] = ACTIONS(637), + [sym_email_autolink] = ACTIONS(637), + [sym__whitespace_ge_2] = ACTIONS(637), + [aux_sym__whitespace_token1] = ACTIONS(639), + [sym__word_no_digit] = ACTIONS(637), + [sym__digits] = ACTIONS(637), + [aux_sym__newline_token1] = ACTIONS(637), + [sym__block_continuation] = ACTIONS(641), + [sym__block_quote_continuation] = ACTIONS(641), + [sym__block_quote_start] = ACTIONS(637), + [sym__indented_chunk_start] = ACTIONS(637), + [sym_atx_h1_marker] = ACTIONS(637), + [sym_atx_h2_marker] = ACTIONS(637), + [sym_atx_h3_marker] = ACTIONS(637), + [sym_atx_h4_marker] = ACTIONS(637), + [sym_atx_h5_marker] = ACTIONS(637), + [sym_atx_h6_marker] = ACTIONS(637), + [sym__thematic_break] = ACTIONS(637), + [sym__list_marker_minus] = ACTIONS(637), + [sym__list_marker_plus] = ACTIONS(637), + [sym__list_marker_star] = ACTIONS(637), + [sym__list_marker_parenthesis] = ACTIONS(637), + [sym__list_marker_dot] = ACTIONS(637), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(637), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(637), + [sym__list_marker_star_dont_interrupt] = ACTIONS(637), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(637), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(637), + [sym__fenced_code_block_start_backtick] = ACTIONS(637), + [sym__fenced_code_block_start_tilde] = ACTIONS(637), + [sym__blank_line_start] = ACTIONS(637), + [sym__code_span_start] = ACTIONS(637), + [sym__emphasis_open_star] = ACTIONS(637), + [sym__emphasis_open_underscore] = ACTIONS(637), + [sym__last_token_whitespace] = ACTIONS(641), }, [111] = { - [sym__soft_line_break] = STATE(132), - [sym__link_text] = STATE(2135), - [sym__link_text_non_empty] = STATE(707), - [sym_shortcut_link] = STATE(132), - [sym_full_reference_link] = STATE(132), - [sym_collapsed_reference_link] = STATE(132), - [sym_inline_link] = STATE(132), - [sym_image] = STATE(132), - [sym__image_inline_link] = STATE(708), - [sym__image_shortcut_link] = STATE(708), - [sym__image_full_reference_link] = STATE(708), - [sym__image_collapsed_reference_link] = STATE(708), - [sym__image_description] = STATE(2137), - [sym__image_description_non_empty] = STATE(709), - [sym_html_tag] = STATE(132), - [sym__open_tag] = STATE(710), - [sym__closing_tag] = STATE(710), - [sym__html_comment] = STATE(710), - [sym__processing_instruction] = STATE(710), - [sym__declaration] = STATE(710), - [sym__cdata_section] = STATE(710), - [sym_hard_line_break] = STATE(132), - [sym__whitespace] = STATE(132), - [sym__word] = STATE(132), - [sym__newline] = STATE(2120), - [sym__inline_element_no_star] = STATE(132), - [aux_sym__inline_no_star] = STATE(132), - [sym__text_inline_no_star] = STATE(132), - [sym__emphasis_star] = STATE(750), - [sym__strong_emphasis_star] = STATE(132), - [sym__emphasis_underscore] = STATE(777), - [sym__strong_emphasis_underscore] = STATE(132), - [sym__code_span] = STATE(132), - [anon_sym_BANG] = ACTIONS(624), - [anon_sym_DQUOTE] = ACTIONS(627), - [anon_sym_POUND] = ACTIONS(627), - [anon_sym_DOLLAR] = ACTIONS(627), - [anon_sym_PERCENT] = ACTIONS(627), - [anon_sym_AMP] = ACTIONS(630), - [anon_sym_SQUOTE] = ACTIONS(627), - [anon_sym_LPAREN] = ACTIONS(627), - [anon_sym_RPAREN] = ACTIONS(627), - [anon_sym_STAR] = ACTIONS(627), - [anon_sym_PLUS] = ACTIONS(627), - [anon_sym_COMMA] = ACTIONS(627), - [anon_sym_DASH] = ACTIONS(627), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_COLON] = ACTIONS(627), - [anon_sym_SEMI] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(633), - [anon_sym_EQ] = ACTIONS(627), - [anon_sym_GT] = ACTIONS(627), - [anon_sym_QMARK] = ACTIONS(627), - [anon_sym_AT] = ACTIONS(627), - [anon_sym_LBRACK] = ACTIONS(636), - [anon_sym_BSLASH] = ACTIONS(639), - [anon_sym_RBRACK] = ACTIONS(627), - [anon_sym_CARET] = ACTIONS(627), - [anon_sym__] = ACTIONS(627), - [anon_sym_BQUOTE] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_PIPE] = ACTIONS(627), - [anon_sym_RBRACE] = ACTIONS(627), - [anon_sym_TILDE] = ACTIONS(627), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(642), - [anon_sym_LT_QMARK] = ACTIONS(645), - [aux_sym__html_block_4_token1] = ACTIONS(648), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(651), - [sym_backslash_escape] = ACTIONS(654), - [sym_entity_reference] = ACTIONS(654), - [sym_numeric_character_reference] = ACTIONS(654), - [sym_uri_autolink] = ACTIONS(654), - [sym_email_autolink] = ACTIONS(654), - [sym__whitespace_ge_2] = ACTIONS(657), - [aux_sym__whitespace_token1] = ACTIONS(660), - [sym__word_no_digit] = ACTIONS(654), - [sym__digits] = ACTIONS(654), - [aux_sym__newline_token1] = ACTIONS(663), - [sym__code_span_start] = ACTIONS(666), - [sym__emphasis_open_star] = ACTIONS(669), - [sym__emphasis_open_underscore] = ACTIONS(672), - [sym__emphasis_close_underscore] = ACTIONS(675), + [sym__soft_line_break] = STATE(261), + [sym__link_text] = STATE(2124), + [sym__link_text_non_empty] = STATE(712), + [sym_shortcut_link] = STATE(261), + [sym_full_reference_link] = STATE(261), + [sym_collapsed_reference_link] = STATE(261), + [sym_inline_link] = STATE(261), + [sym_image] = STATE(261), + [sym__image_inline_link] = STATE(713), + [sym__image_shortcut_link] = STATE(713), + [sym__image_full_reference_link] = STATE(713), + [sym__image_collapsed_reference_link] = STATE(713), + [sym__image_description] = STATE(2120), + [sym__image_description_non_empty] = STATE(714), + [sym_html_tag] = STATE(261), + [sym__open_tag] = STATE(715), + [sym__closing_tag] = STATE(715), + [sym__html_comment] = STATE(715), + [sym__processing_instruction] = STATE(715), + [sym__declaration] = STATE(715), + [sym__cdata_section] = STATE(715), + [sym_hard_line_break] = STATE(261), + [sym__whitespace] = STATE(261), + [sym__word] = STATE(261), + [sym__newline] = STATE(2144), + [sym__inline_element_no_star] = STATE(261), + [aux_sym__inline_no_star] = STATE(261), + [sym__text_inline_no_star] = STATE(261), + [sym__emphasis_star] = STATE(678), + [sym__strong_emphasis_star] = STATE(261), + [sym__emphasis_underscore] = STATE(811), + [sym__strong_emphasis_underscore] = STATE(261), + [sym__code_span] = STATE(261), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_DQUOTE] = ACTIONS(646), + [anon_sym_POUND] = ACTIONS(646), + [anon_sym_DOLLAR] = ACTIONS(646), + [anon_sym_PERCENT] = ACTIONS(646), + [anon_sym_AMP] = ACTIONS(649), + [anon_sym_SQUOTE] = ACTIONS(646), + [anon_sym_LPAREN] = ACTIONS(646), + [anon_sym_RPAREN] = ACTIONS(646), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_COMMA] = ACTIONS(646), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_DOT] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_COLON] = ACTIONS(646), + [anon_sym_SEMI] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(652), + [anon_sym_EQ] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_QMARK] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(646), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_BSLASH] = ACTIONS(658), + [anon_sym_RBRACK] = ACTIONS(646), + [anon_sym_CARET] = ACTIONS(646), + [anon_sym__] = ACTIONS(646), + [anon_sym_BQUOTE] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(646), + [anon_sym_PIPE] = ACTIONS(646), + [anon_sym_RBRACE] = ACTIONS(646), + [anon_sym_TILDE] = ACTIONS(646), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(661), + [anon_sym_LT_QMARK] = ACTIONS(664), + [aux_sym__html_block_4_token1] = ACTIONS(667), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(670), + [sym_backslash_escape] = ACTIONS(673), + [sym_entity_reference] = ACTIONS(673), + [sym_numeric_character_reference] = ACTIONS(673), + [sym_uri_autolink] = ACTIONS(673), + [sym_email_autolink] = ACTIONS(673), + [sym__whitespace_ge_2] = ACTIONS(676), + [aux_sym__whitespace_token1] = ACTIONS(679), + [sym__word_no_digit] = ACTIONS(673), + [sym__digits] = ACTIONS(673), + [aux_sym__newline_token1] = ACTIONS(682), + [sym__code_span_start] = ACTIONS(685), + [sym__emphasis_open_star] = ACTIONS(688), + [sym__emphasis_open_underscore] = ACTIONS(691), + [sym__emphasis_close_underscore] = ACTIONS(694), }, [112] = { - [aux_sym__ignore_matching_tokens] = STATE(202), - [ts_builtin_sym_end] = ACTIONS(677), - [anon_sym_BANG] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(677), - [anon_sym_POUND] = ACTIONS(677), - [anon_sym_DOLLAR] = ACTIONS(677), - [anon_sym_PERCENT] = ACTIONS(677), - [anon_sym_AMP] = ACTIONS(679), - [anon_sym_SQUOTE] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(677), - [anon_sym_RPAREN] = ACTIONS(677), - [anon_sym_STAR] = ACTIONS(677), - [anon_sym_PLUS] = ACTIONS(677), - [anon_sym_COMMA] = ACTIONS(677), - [anon_sym_DASH] = ACTIONS(677), - [anon_sym_DOT] = ACTIONS(677), - [anon_sym_SLASH] = ACTIONS(677), - [anon_sym_COLON] = ACTIONS(677), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_LT] = ACTIONS(679), - [anon_sym_EQ] = ACTIONS(677), - [anon_sym_GT] = ACTIONS(677), - [anon_sym_QMARK] = ACTIONS(677), - [anon_sym_AT] = ACTIONS(677), - [anon_sym_LBRACK] = ACTIONS(677), - [anon_sym_BSLASH] = ACTIONS(679), - [anon_sym_RBRACK] = ACTIONS(677), - [anon_sym_CARET] = ACTIONS(677), - [anon_sym__] = ACTIONS(677), - [anon_sym_BQUOTE] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_PIPE] = ACTIONS(677), - [anon_sym_RBRACE] = ACTIONS(677), - [anon_sym_TILDE] = ACTIONS(677), - [aux_sym__html_block_1_token1] = ACTIONS(677), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(679), - [anon_sym_LT_QMARK] = ACTIONS(679), - [aux_sym__html_block_4_token1] = ACTIONS(679), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(677), - [aux_sym__html_block_6_token1] = ACTIONS(679), - [aux_sym__html_block_6_token2] = ACTIONS(677), - [sym__open_tag_html_block] = ACTIONS(677), - [sym__open_tag_html_block_newline] = ACTIONS(677), - [sym__closing_tag_html_block] = ACTIONS(677), - [sym__closing_tag_html_block_newline] = ACTIONS(677), - [sym_backslash_escape] = ACTIONS(677), - [sym_entity_reference] = ACTIONS(677), - [sym_numeric_character_reference] = ACTIONS(677), - [sym_uri_autolink] = ACTIONS(677), - [sym_email_autolink] = ACTIONS(677), - [sym__whitespace_ge_2] = ACTIONS(677), - [aux_sym__whitespace_token1] = ACTIONS(679), - [sym__word_no_digit] = ACTIONS(677), - [sym__digits] = ACTIONS(677), - [aux_sym__newline_token1] = ACTIONS(677), - [sym__block_continuation] = ACTIONS(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(677), - [sym__indented_chunk_start] = ACTIONS(677), - [sym_atx_h1_marker] = ACTIONS(677), - [sym_atx_h2_marker] = ACTIONS(677), - [sym_atx_h3_marker] = ACTIONS(677), - [sym_atx_h4_marker] = ACTIONS(677), - [sym_atx_h5_marker] = ACTIONS(677), - [sym_atx_h6_marker] = ACTIONS(677), - [sym__thematic_break] = ACTIONS(677), - [sym__list_marker_minus] = ACTIONS(677), - [sym__list_marker_plus] = ACTIONS(677), - [sym__list_marker_star] = ACTIONS(677), - [sym__list_marker_parenthesis] = ACTIONS(677), - [sym__list_marker_dot] = ACTIONS(677), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(677), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(677), - [sym__list_marker_star_dont_interrupt] = ACTIONS(677), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(677), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(677), - [sym__fenced_code_block_start_backtick] = ACTIONS(677), - [sym__fenced_code_block_start_tilde] = ACTIONS(677), - [sym__blank_line_start] = ACTIONS(677), - [sym__code_span_start] = ACTIONS(677), - [sym__emphasis_open_star] = ACTIONS(677), - [sym__emphasis_open_underscore] = ACTIONS(677), - [sym__last_token_whitespace] = ACTIONS(111), + [aux_sym__ignore_matching_tokens] = STATE(201), + [ts_builtin_sym_end] = ACTIONS(637), + [anon_sym_BANG] = ACTIONS(637), + [anon_sym_DQUOTE] = ACTIONS(637), + [anon_sym_POUND] = ACTIONS(637), + [anon_sym_DOLLAR] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(639), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_RPAREN] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_COMMA] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_DOT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(637), + [anon_sym_COLON] = ACTIONS(637), + [anon_sym_SEMI] = ACTIONS(637), + [anon_sym_LT] = ACTIONS(639), + [anon_sym_EQ] = ACTIONS(637), + [anon_sym_GT] = ACTIONS(637), + [anon_sym_QMARK] = ACTIONS(637), + [anon_sym_AT] = ACTIONS(637), + [anon_sym_LBRACK] = ACTIONS(637), + [anon_sym_BSLASH] = ACTIONS(639), + [anon_sym_RBRACK] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym__] = ACTIONS(637), + [anon_sym_BQUOTE] = ACTIONS(637), + [anon_sym_LBRACE] = ACTIONS(637), + [anon_sym_PIPE] = ACTIONS(637), + [anon_sym_RBRACE] = ACTIONS(637), + [anon_sym_TILDE] = ACTIONS(637), + [aux_sym__html_block_1_token1] = ACTIONS(637), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(639), + [anon_sym_LT_QMARK] = ACTIONS(639), + [aux_sym__html_block_4_token1] = ACTIONS(639), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(637), + [aux_sym__html_block_6_token1] = ACTIONS(639), + [aux_sym__html_block_6_token2] = ACTIONS(637), + [sym__open_tag_html_block] = ACTIONS(637), + [sym__open_tag_html_block_newline] = ACTIONS(637), + [sym__closing_tag_html_block] = ACTIONS(637), + [sym__closing_tag_html_block_newline] = ACTIONS(637), + [sym_backslash_escape] = ACTIONS(637), + [sym_entity_reference] = ACTIONS(637), + [sym_numeric_character_reference] = ACTIONS(637), + [sym_uri_autolink] = ACTIONS(637), + [sym_email_autolink] = ACTIONS(637), + [sym__whitespace_ge_2] = ACTIONS(637), + [aux_sym__whitespace_token1] = ACTIONS(639), + [sym__word_no_digit] = ACTIONS(637), + [sym__digits] = ACTIONS(637), + [aux_sym__newline_token1] = ACTIONS(637), + [sym__block_continuation] = ACTIONS(109), + [sym__block_quote_continuation] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(637), + [sym__indented_chunk_start] = ACTIONS(637), + [sym_atx_h1_marker] = ACTIONS(637), + [sym_atx_h2_marker] = ACTIONS(637), + [sym_atx_h3_marker] = ACTIONS(637), + [sym_atx_h4_marker] = ACTIONS(637), + [sym_atx_h5_marker] = ACTIONS(637), + [sym_atx_h6_marker] = ACTIONS(637), + [sym__thematic_break] = ACTIONS(637), + [sym__list_marker_minus] = ACTIONS(637), + [sym__list_marker_plus] = ACTIONS(637), + [sym__list_marker_star] = ACTIONS(637), + [sym__list_marker_parenthesis] = ACTIONS(637), + [sym__list_marker_dot] = ACTIONS(637), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(637), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(637), + [sym__list_marker_star_dont_interrupt] = ACTIONS(637), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(637), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(637), + [sym__fenced_code_block_start_backtick] = ACTIONS(637), + [sym__fenced_code_block_start_tilde] = ACTIONS(637), + [sym__blank_line_start] = ACTIONS(637), + [sym__code_span_start] = ACTIONS(637), + [sym__emphasis_open_star] = ACTIONS(637), + [sym__emphasis_open_underscore] = ACTIONS(637), + [sym__last_token_whitespace] = ACTIONS(109), }, [113] = { - [aux_sym__ignore_matching_tokens] = STATE(202), - [ts_builtin_sym_end] = ACTIONS(681), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_DQUOTE] = ACTIONS(681), - [anon_sym_POUND] = ACTIONS(681), - [anon_sym_DOLLAR] = ACTIONS(681), - [anon_sym_PERCENT] = ACTIONS(681), - [anon_sym_AMP] = ACTIONS(683), - [anon_sym_SQUOTE] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(681), - [anon_sym_RPAREN] = ACTIONS(681), - [anon_sym_STAR] = ACTIONS(681), - [anon_sym_PLUS] = ACTIONS(681), - [anon_sym_COMMA] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(681), - [anon_sym_DOT] = ACTIONS(681), - [anon_sym_SLASH] = ACTIONS(681), - [anon_sym_COLON] = ACTIONS(681), - [anon_sym_SEMI] = ACTIONS(681), - [anon_sym_LT] = ACTIONS(683), - [anon_sym_EQ] = ACTIONS(681), - [anon_sym_GT] = ACTIONS(681), - [anon_sym_QMARK] = ACTIONS(681), - [anon_sym_AT] = ACTIONS(681), - [anon_sym_LBRACK] = ACTIONS(681), - [anon_sym_BSLASH] = ACTIONS(683), - [anon_sym_RBRACK] = ACTIONS(681), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym__] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(681), - [anon_sym_PIPE] = ACTIONS(681), - [anon_sym_RBRACE] = ACTIONS(681), - [anon_sym_TILDE] = ACTIONS(681), - [aux_sym__html_block_1_token1] = ACTIONS(681), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(683), - [anon_sym_LT_QMARK] = ACTIONS(683), - [aux_sym__html_block_4_token1] = ACTIONS(683), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(681), - [aux_sym__html_block_6_token1] = ACTIONS(683), - [aux_sym__html_block_6_token2] = ACTIONS(681), - [sym__open_tag_html_block] = ACTIONS(681), - [sym__open_tag_html_block_newline] = ACTIONS(681), - [sym__closing_tag_html_block] = ACTIONS(681), - [sym__closing_tag_html_block_newline] = ACTIONS(681), - [sym_backslash_escape] = ACTIONS(681), - [sym_entity_reference] = ACTIONS(681), - [sym_numeric_character_reference] = ACTIONS(681), - [sym_uri_autolink] = ACTIONS(681), - [sym_email_autolink] = ACTIONS(681), - [sym__whitespace_ge_2] = ACTIONS(681), - [aux_sym__whitespace_token1] = ACTIONS(683), - [sym__word_no_digit] = ACTIONS(681), - [sym__digits] = ACTIONS(681), - [aux_sym__newline_token1] = ACTIONS(681), - [sym__block_continuation] = ACTIONS(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(681), - [sym__indented_chunk_start] = ACTIONS(681), - [sym_atx_h1_marker] = ACTIONS(681), - [sym_atx_h2_marker] = ACTIONS(681), - [sym_atx_h3_marker] = ACTIONS(681), - [sym_atx_h4_marker] = ACTIONS(681), - [sym_atx_h5_marker] = ACTIONS(681), - [sym_atx_h6_marker] = ACTIONS(681), - [sym__thematic_break] = ACTIONS(681), - [sym__list_marker_minus] = ACTIONS(681), - [sym__list_marker_plus] = ACTIONS(681), - [sym__list_marker_star] = ACTIONS(681), - [sym__list_marker_parenthesis] = ACTIONS(681), - [sym__list_marker_dot] = ACTIONS(681), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(681), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(681), - [sym__list_marker_star_dont_interrupt] = ACTIONS(681), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(681), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(681), - [sym__fenced_code_block_start_backtick] = ACTIONS(681), - [sym__fenced_code_block_start_tilde] = ACTIONS(681), - [sym__blank_line_start] = ACTIONS(681), - [sym__code_span_start] = ACTIONS(681), - [sym__emphasis_open_star] = ACTIONS(681), - [sym__emphasis_open_underscore] = ACTIONS(681), - [sym__last_token_whitespace] = ACTIONS(111), + [aux_sym__paragraph_end_newline_repeat1] = STATE(274), + [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), + [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(696), + [sym_numeric_character_reference] = ACTIONS(696), + [sym_uri_autolink] = ACTIONS(696), + [sym_email_autolink] = 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_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_h1_underline] = ACTIONS(696), + [sym_setext_h2_underline] = 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__split_token] = ACTIONS(700), + [sym__code_span_start] = ACTIONS(696), + [sym__emphasis_open_star] = ACTIONS(696), + [sym__emphasis_open_underscore] = ACTIONS(696), }, [114] = { - [aux_sym__ignore_matching_tokens] = STATE(169), - [ts_builtin_sym_end] = ACTIONS(685), - [anon_sym_BANG] = ACTIONS(685), - [anon_sym_DQUOTE] = ACTIONS(685), - [anon_sym_POUND] = ACTIONS(685), - [anon_sym_DOLLAR] = ACTIONS(685), - [anon_sym_PERCENT] = ACTIONS(685), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(685), - [anon_sym_RPAREN] = ACTIONS(685), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_DOT] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(685), - [anon_sym_COLON] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(685), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_EQ] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_QMARK] = ACTIONS(685), - [anon_sym_AT] = ACTIONS(685), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_BSLASH] = ACTIONS(687), - [anon_sym_RBRACK] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(685), - [anon_sym__] = ACTIONS(685), - [anon_sym_BQUOTE] = ACTIONS(685), - [anon_sym_LBRACE] = ACTIONS(685), - [anon_sym_PIPE] = ACTIONS(685), - [anon_sym_RBRACE] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(685), - [aux_sym__html_block_1_token1] = ACTIONS(685), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(687), - [anon_sym_LT_QMARK] = ACTIONS(687), - [aux_sym__html_block_4_token1] = ACTIONS(687), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(685), - [aux_sym__html_block_6_token1] = ACTIONS(687), - [aux_sym__html_block_6_token2] = ACTIONS(685), - [sym__open_tag_html_block] = ACTIONS(685), - [sym__open_tag_html_block_newline] = ACTIONS(685), - [sym__closing_tag_html_block] = ACTIONS(685), - [sym__closing_tag_html_block_newline] = ACTIONS(685), - [sym_backslash_escape] = ACTIONS(685), - [sym_entity_reference] = ACTIONS(685), - [sym_numeric_character_reference] = ACTIONS(685), - [sym_uri_autolink] = ACTIONS(685), - [sym_email_autolink] = ACTIONS(685), - [sym__whitespace_ge_2] = ACTIONS(685), - [aux_sym__whitespace_token1] = ACTIONS(687), - [sym__word_no_digit] = ACTIONS(685), - [sym__digits] = ACTIONS(685), - [aux_sym__newline_token1] = ACTIONS(685), - [sym__block_continuation] = ACTIONS(689), - [sym__block_quote_continuation] = ACTIONS(689), - [sym__block_quote_start] = ACTIONS(685), - [sym__indented_chunk_start] = ACTIONS(685), - [sym_atx_h1_marker] = ACTIONS(685), - [sym_atx_h2_marker] = ACTIONS(685), - [sym_atx_h3_marker] = ACTIONS(685), - [sym_atx_h4_marker] = ACTIONS(685), - [sym_atx_h5_marker] = ACTIONS(685), - [sym_atx_h6_marker] = ACTIONS(685), - [sym__thematic_break] = ACTIONS(685), - [sym__list_marker_minus] = ACTIONS(685), - [sym__list_marker_plus] = ACTIONS(685), - [sym__list_marker_star] = ACTIONS(685), - [sym__list_marker_parenthesis] = ACTIONS(685), - [sym__list_marker_dot] = ACTIONS(685), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(685), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(685), - [sym__list_marker_star_dont_interrupt] = ACTIONS(685), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(685), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(685), - [sym__fenced_code_block_start_backtick] = ACTIONS(685), - [sym__fenced_code_block_start_tilde] = ACTIONS(685), - [sym__blank_line_start] = ACTIONS(685), - [sym__code_span_start] = ACTIONS(685), - [sym__emphasis_open_star] = ACTIONS(685), - [sym__emphasis_open_underscore] = ACTIONS(685), - [sym__last_token_whitespace] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(702), + [anon_sym_DQUOTE] = ACTIONS(702), + [anon_sym_POUND] = ACTIONS(702), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PERCENT] = ACTIONS(702), + [anon_sym_AMP] = ACTIONS(704), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_LPAREN] = ACTIONS(702), + [anon_sym_RPAREN] = ACTIONS(702), + [anon_sym_STAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(702), + [anon_sym_COMMA] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(702), + [anon_sym_DOT] = ACTIONS(702), + [anon_sym_SLASH] = ACTIONS(702), + [anon_sym_COLON] = ACTIONS(702), + [anon_sym_SEMI] = ACTIONS(702), + [anon_sym_LT] = ACTIONS(704), + [anon_sym_EQ] = ACTIONS(702), + [anon_sym_GT] = ACTIONS(702), + [anon_sym_QMARK] = ACTIONS(702), + [anon_sym_AT] = ACTIONS(702), + [anon_sym_LBRACK] = ACTIONS(702), + [anon_sym_BSLASH] = ACTIONS(704), + [anon_sym_RBRACK] = ACTIONS(702), + [anon_sym_CARET] = ACTIONS(702), + [anon_sym__] = ACTIONS(702), + [anon_sym_BQUOTE] = ACTIONS(702), + [anon_sym_LBRACE] = ACTIONS(702), + [anon_sym_PIPE] = ACTIONS(702), + [anon_sym_RBRACE] = ACTIONS(702), + [anon_sym_TILDE] = ACTIONS(702), + [aux_sym__html_block_1_token1] = ACTIONS(702), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(704), + [anon_sym_LT_QMARK] = ACTIONS(704), + [aux_sym__html_block_4_token1] = ACTIONS(704), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(702), + [aux_sym__html_block_6_token1] = ACTIONS(704), + [aux_sym__html_block_6_token2] = ACTIONS(702), + [sym__open_tag_html_block] = ACTIONS(702), + [sym__open_tag_html_block_newline] = ACTIONS(702), + [sym__closing_tag_html_block] = ACTIONS(702), + [sym__closing_tag_html_block_newline] = ACTIONS(702), + [sym_backslash_escape] = ACTIONS(702), + [sym_entity_reference] = ACTIONS(702), + [sym_numeric_character_reference] = ACTIONS(702), + [sym_uri_autolink] = ACTIONS(702), + [sym_email_autolink] = ACTIONS(702), + [sym__whitespace_ge_2] = ACTIONS(702), + [aux_sym__whitespace_token1] = ACTIONS(704), + [sym__word_no_digit] = ACTIONS(702), + [sym__digits] = ACTIONS(702), + [aux_sym__newline_token1] = ACTIONS(702), + [sym__block_close] = ACTIONS(702), + [sym__block_quote_start] = ACTIONS(702), + [sym__indented_chunk_start] = ACTIONS(702), + [sym_atx_h1_marker] = ACTIONS(702), + [sym_atx_h2_marker] = ACTIONS(702), + [sym_atx_h3_marker] = ACTIONS(702), + [sym_atx_h4_marker] = ACTIONS(702), + [sym_atx_h5_marker] = ACTIONS(702), + [sym_atx_h6_marker] = ACTIONS(702), + [sym_setext_h1_underline] = ACTIONS(702), + [sym_setext_h2_underline] = ACTIONS(702), + [sym__thematic_break] = ACTIONS(702), + [sym__list_marker_minus] = ACTIONS(702), + [sym__list_marker_plus] = ACTIONS(702), + [sym__list_marker_star] = ACTIONS(702), + [sym__list_marker_parenthesis] = ACTIONS(702), + [sym__list_marker_dot] = ACTIONS(702), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(702), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(702), + [sym__list_marker_star_dont_interrupt] = ACTIONS(702), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(702), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(702), + [sym__fenced_code_block_start_backtick] = ACTIONS(702), + [sym__fenced_code_block_start_tilde] = ACTIONS(702), + [sym__blank_line_start] = ACTIONS(702), + [sym__split_token] = ACTIONS(706), + [sym__soft_line_break_marker] = ACTIONS(447), + [sym__code_span_start] = ACTIONS(702), + [sym__emphasis_open_star] = ACTIONS(702), + [sym__emphasis_open_underscore] = ACTIONS(702), }, [115] = { - [aux_sym__ignore_matching_tokens] = STATE(275), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(691), - [anon_sym_POUND] = ACTIONS(691), - [anon_sym_DOLLAR] = ACTIONS(691), - [anon_sym_PERCENT] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(693), - [anon_sym_SQUOTE] = ACTIONS(691), - [anon_sym_LPAREN] = ACTIONS(691), - [anon_sym_RPAREN] = ACTIONS(691), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_COMMA] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(691), - [anon_sym_COLON] = ACTIONS(691), - [anon_sym_SEMI] = ACTIONS(691), - [anon_sym_LT] = ACTIONS(693), - [anon_sym_EQ] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(691), - [anon_sym_QMARK] = ACTIONS(691), - [anon_sym_AT] = ACTIONS(691), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_BSLASH] = ACTIONS(693), - [anon_sym_RBRACK] = ACTIONS(691), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym__] = ACTIONS(691), - [anon_sym_BQUOTE] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(691), - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_RBRACE] = ACTIONS(691), - [anon_sym_TILDE] = ACTIONS(691), - [aux_sym__html_block_1_token1] = ACTIONS(691), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(693), - [anon_sym_LT_QMARK] = ACTIONS(693), - [aux_sym__html_block_4_token1] = ACTIONS(693), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(691), - [aux_sym__html_block_6_token1] = ACTIONS(693), - [aux_sym__html_block_6_token2] = ACTIONS(691), - [sym__open_tag_html_block] = ACTIONS(691), - [sym__open_tag_html_block_newline] = ACTIONS(691), - [sym__closing_tag_html_block] = ACTIONS(691), - [sym__closing_tag_html_block_newline] = ACTIONS(691), - [sym_backslash_escape] = ACTIONS(691), - [sym_entity_reference] = ACTIONS(691), - [sym_numeric_character_reference] = ACTIONS(691), - [sym_uri_autolink] = ACTIONS(691), - [sym_email_autolink] = ACTIONS(691), - [sym__whitespace_ge_2] = ACTIONS(691), - [aux_sym__whitespace_token1] = ACTIONS(693), - [sym__word_no_digit] = ACTIONS(691), - [sym__digits] = ACTIONS(691), - [aux_sym__newline_token1] = ACTIONS(691), - [sym__block_close] = ACTIONS(691), - [sym__block_continuation] = ACTIONS(125), - [sym__block_quote_continuation] = ACTIONS(125), - [sym__block_quote_start] = ACTIONS(691), - [sym__indented_chunk_start] = ACTIONS(691), - [sym_atx_h1_marker] = ACTIONS(691), - [sym_atx_h2_marker] = ACTIONS(691), - [sym_atx_h3_marker] = ACTIONS(691), - [sym_atx_h4_marker] = ACTIONS(691), - [sym_atx_h5_marker] = ACTIONS(691), - [sym_atx_h6_marker] = ACTIONS(691), - [sym__thematic_break] = ACTIONS(691), - [sym__list_marker_minus] = ACTIONS(691), - [sym__list_marker_plus] = ACTIONS(691), - [sym__list_marker_star] = ACTIONS(691), - [sym__list_marker_parenthesis] = ACTIONS(691), - [sym__list_marker_dot] = ACTIONS(691), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(691), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(691), - [sym__list_marker_star_dont_interrupt] = ACTIONS(691), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(691), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(691), - [sym__fenced_code_block_start_backtick] = ACTIONS(691), - [sym__fenced_code_block_start_tilde] = ACTIONS(691), - [sym__blank_line_start] = ACTIONS(691), - [sym__code_span_start] = ACTIONS(691), - [sym__emphasis_open_star] = ACTIONS(691), - [sym__emphasis_open_underscore] = ACTIONS(691), - [sym__last_token_whitespace] = ACTIONS(125), + [aux_sym__ignore_matching_tokens] = STATE(180), + [ts_builtin_sym_end] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_DQUOTE] = ACTIONS(709), + [anon_sym_POUND] = ACTIONS(709), + [anon_sym_DOLLAR] = ACTIONS(709), + [anon_sym_PERCENT] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_RPAREN] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_COMMA] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_DOT] = ACTIONS(709), + [anon_sym_SLASH] = ACTIONS(709), + [anon_sym_COLON] = ACTIONS(709), + [anon_sym_SEMI] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_EQ] = ACTIONS(709), + [anon_sym_GT] = ACTIONS(709), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_AT] = ACTIONS(709), + [anon_sym_LBRACK] = ACTIONS(709), + [anon_sym_BSLASH] = ACTIONS(711), + [anon_sym_RBRACK] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym__] = ACTIONS(709), + [anon_sym_BQUOTE] = ACTIONS(709), + [anon_sym_LBRACE] = ACTIONS(709), + [anon_sym_PIPE] = ACTIONS(709), + [anon_sym_RBRACE] = ACTIONS(709), + [anon_sym_TILDE] = ACTIONS(709), + [aux_sym__html_block_1_token1] = ACTIONS(709), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(711), + [anon_sym_LT_QMARK] = ACTIONS(711), + [aux_sym__html_block_4_token1] = ACTIONS(711), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(709), + [aux_sym__html_block_6_token1] = ACTIONS(711), + [aux_sym__html_block_6_token2] = ACTIONS(709), + [sym__open_tag_html_block] = ACTIONS(709), + [sym__open_tag_html_block_newline] = ACTIONS(709), + [sym__closing_tag_html_block] = ACTIONS(709), + [sym__closing_tag_html_block_newline] = ACTIONS(709), + [sym_backslash_escape] = ACTIONS(709), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(709), + [aux_sym__whitespace_token1] = ACTIONS(711), + [sym__word_no_digit] = ACTIONS(709), + [sym__digits] = ACTIONS(709), + [aux_sym__newline_token1] = ACTIONS(709), + [sym__block_continuation] = ACTIONS(713), + [sym__block_quote_continuation] = ACTIONS(713), + [sym__block_quote_start] = ACTIONS(709), + [sym__indented_chunk_start] = ACTIONS(709), + [sym_atx_h1_marker] = ACTIONS(709), + [sym_atx_h2_marker] = ACTIONS(709), + [sym_atx_h3_marker] = ACTIONS(709), + [sym_atx_h4_marker] = ACTIONS(709), + [sym_atx_h5_marker] = ACTIONS(709), + [sym_atx_h6_marker] = ACTIONS(709), + [sym__thematic_break] = ACTIONS(709), + [sym__list_marker_minus] = ACTIONS(709), + [sym__list_marker_plus] = ACTIONS(709), + [sym__list_marker_star] = ACTIONS(709), + [sym__list_marker_parenthesis] = ACTIONS(709), + [sym__list_marker_dot] = ACTIONS(709), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(709), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(709), + [sym__list_marker_star_dont_interrupt] = ACTIONS(709), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(709), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(709), + [sym__fenced_code_block_start_backtick] = ACTIONS(709), + [sym__fenced_code_block_start_tilde] = ACTIONS(709), + [sym__blank_line_start] = ACTIONS(709), + [sym__code_span_start] = ACTIONS(709), + [sym__emphasis_open_star] = ACTIONS(709), + [sym__emphasis_open_underscore] = ACTIONS(709), + [sym__last_token_whitespace] = ACTIONS(713), }, [116] = { - [aux_sym__ignore_matching_tokens] = STATE(202), - [ts_builtin_sym_end] = ACTIONS(685), - [anon_sym_BANG] = ACTIONS(685), - [anon_sym_DQUOTE] = ACTIONS(685), - [anon_sym_POUND] = ACTIONS(685), - [anon_sym_DOLLAR] = ACTIONS(685), - [anon_sym_PERCENT] = ACTIONS(685), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(685), - [anon_sym_RPAREN] = ACTIONS(685), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_DOT] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(685), - [anon_sym_COLON] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(685), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_EQ] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_QMARK] = ACTIONS(685), - [anon_sym_AT] = ACTIONS(685), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_BSLASH] = ACTIONS(687), - [anon_sym_RBRACK] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(685), - [anon_sym__] = ACTIONS(685), - [anon_sym_BQUOTE] = ACTIONS(685), - [anon_sym_LBRACE] = ACTIONS(685), - [anon_sym_PIPE] = ACTIONS(685), - [anon_sym_RBRACE] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(685), - [aux_sym__html_block_1_token1] = ACTIONS(685), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(687), - [anon_sym_LT_QMARK] = ACTIONS(687), - [aux_sym__html_block_4_token1] = ACTIONS(687), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(685), - [aux_sym__html_block_6_token1] = ACTIONS(687), - [aux_sym__html_block_6_token2] = ACTIONS(685), - [sym__open_tag_html_block] = ACTIONS(685), - [sym__open_tag_html_block_newline] = ACTIONS(685), - [sym__closing_tag_html_block] = ACTIONS(685), - [sym__closing_tag_html_block_newline] = ACTIONS(685), - [sym_backslash_escape] = ACTIONS(685), - [sym_entity_reference] = ACTIONS(685), - [sym_numeric_character_reference] = ACTIONS(685), - [sym_uri_autolink] = ACTIONS(685), - [sym_email_autolink] = ACTIONS(685), - [sym__whitespace_ge_2] = ACTIONS(685), - [aux_sym__whitespace_token1] = ACTIONS(687), - [sym__word_no_digit] = ACTIONS(685), - [sym__digits] = ACTIONS(685), - [aux_sym__newline_token1] = ACTIONS(685), - [sym__block_continuation] = ACTIONS(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(685), - [sym__indented_chunk_start] = ACTIONS(685), - [sym_atx_h1_marker] = ACTIONS(685), - [sym_atx_h2_marker] = ACTIONS(685), - [sym_atx_h3_marker] = ACTIONS(685), - [sym_atx_h4_marker] = ACTIONS(685), - [sym_atx_h5_marker] = ACTIONS(685), - [sym_atx_h6_marker] = ACTIONS(685), - [sym__thematic_break] = ACTIONS(685), - [sym__list_marker_minus] = ACTIONS(685), - [sym__list_marker_plus] = ACTIONS(685), - [sym__list_marker_star] = ACTIONS(685), - [sym__list_marker_parenthesis] = ACTIONS(685), - [sym__list_marker_dot] = ACTIONS(685), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(685), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(685), - [sym__list_marker_star_dont_interrupt] = ACTIONS(685), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(685), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(685), - [sym__fenced_code_block_start_backtick] = ACTIONS(685), - [sym__fenced_code_block_start_tilde] = ACTIONS(685), - [sym__blank_line_start] = ACTIONS(685), - [sym__code_span_start] = ACTIONS(685), - [sym__emphasis_open_star] = ACTIONS(685), - [sym__emphasis_open_underscore] = ACTIONS(685), - [sym__last_token_whitespace] = ACTIONS(111), + [aux_sym__ignore_matching_tokens] = STATE(201), + [ts_builtin_sym_end] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_DQUOTE] = ACTIONS(709), + [anon_sym_POUND] = ACTIONS(709), + [anon_sym_DOLLAR] = ACTIONS(709), + [anon_sym_PERCENT] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_RPAREN] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_COMMA] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_DOT] = ACTIONS(709), + [anon_sym_SLASH] = ACTIONS(709), + [anon_sym_COLON] = ACTIONS(709), + [anon_sym_SEMI] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_EQ] = ACTIONS(709), + [anon_sym_GT] = ACTIONS(709), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_AT] = ACTIONS(709), + [anon_sym_LBRACK] = ACTIONS(709), + [anon_sym_BSLASH] = ACTIONS(711), + [anon_sym_RBRACK] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym__] = ACTIONS(709), + [anon_sym_BQUOTE] = ACTIONS(709), + [anon_sym_LBRACE] = ACTIONS(709), + [anon_sym_PIPE] = ACTIONS(709), + [anon_sym_RBRACE] = ACTIONS(709), + [anon_sym_TILDE] = ACTIONS(709), + [aux_sym__html_block_1_token1] = ACTIONS(709), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(711), + [anon_sym_LT_QMARK] = ACTIONS(711), + [aux_sym__html_block_4_token1] = ACTIONS(711), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(709), + [aux_sym__html_block_6_token1] = ACTIONS(711), + [aux_sym__html_block_6_token2] = ACTIONS(709), + [sym__open_tag_html_block] = ACTIONS(709), + [sym__open_tag_html_block_newline] = ACTIONS(709), + [sym__closing_tag_html_block] = ACTIONS(709), + [sym__closing_tag_html_block_newline] = ACTIONS(709), + [sym_backslash_escape] = ACTIONS(709), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(709), + [aux_sym__whitespace_token1] = ACTIONS(711), + [sym__word_no_digit] = ACTIONS(709), + [sym__digits] = ACTIONS(709), + [aux_sym__newline_token1] = ACTIONS(709), + [sym__block_continuation] = ACTIONS(109), + [sym__block_quote_continuation] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(709), + [sym__indented_chunk_start] = ACTIONS(709), + [sym_atx_h1_marker] = ACTIONS(709), + [sym_atx_h2_marker] = ACTIONS(709), + [sym_atx_h3_marker] = ACTIONS(709), + [sym_atx_h4_marker] = ACTIONS(709), + [sym_atx_h5_marker] = ACTIONS(709), + [sym_atx_h6_marker] = ACTIONS(709), + [sym__thematic_break] = ACTIONS(709), + [sym__list_marker_minus] = ACTIONS(709), + [sym__list_marker_plus] = ACTIONS(709), + [sym__list_marker_star] = ACTIONS(709), + [sym__list_marker_parenthesis] = ACTIONS(709), + [sym__list_marker_dot] = ACTIONS(709), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(709), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(709), + [sym__list_marker_star_dont_interrupt] = ACTIONS(709), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(709), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(709), + [sym__fenced_code_block_start_backtick] = ACTIONS(709), + [sym__fenced_code_block_start_tilde] = ACTIONS(709), + [sym__blank_line_start] = ACTIONS(709), + [sym__code_span_start] = ACTIONS(709), + [sym__emphasis_open_star] = ACTIONS(709), + [sym__emphasis_open_underscore] = ACTIONS(709), + [sym__last_token_whitespace] = ACTIONS(109), }, [117] = { - [aux_sym__ignore_matching_tokens] = STATE(275), - [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), - [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(695), - [sym_numeric_character_reference] = ACTIONS(695), - [sym_uri_autolink] = ACTIONS(695), - [sym_email_autolink] = 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(125), - [sym__block_quote_continuation] = ACTIONS(125), - [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__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__emphasis_open_star] = ACTIONS(695), - [sym__emphasis_open_underscore] = ACTIONS(695), - [sym__last_token_whitespace] = ACTIONS(125), + [aux_sym__ignore_matching_tokens] = STATE(179), + [ts_builtin_sym_end] = ACTIONS(715), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(715), + [anon_sym_POUND] = ACTIONS(715), + [anon_sym_DOLLAR] = ACTIONS(715), + [anon_sym_PERCENT] = ACTIONS(715), + [anon_sym_AMP] = ACTIONS(717), + [anon_sym_SQUOTE] = ACTIONS(715), + [anon_sym_LPAREN] = ACTIONS(715), + [anon_sym_RPAREN] = ACTIONS(715), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_PLUS] = ACTIONS(715), + [anon_sym_COMMA] = ACTIONS(715), + [anon_sym_DASH] = ACTIONS(715), + [anon_sym_DOT] = ACTIONS(715), + [anon_sym_SLASH] = ACTIONS(715), + [anon_sym_COLON] = ACTIONS(715), + [anon_sym_SEMI] = ACTIONS(715), + [anon_sym_LT] = ACTIONS(717), + [anon_sym_EQ] = ACTIONS(715), + [anon_sym_GT] = ACTIONS(715), + [anon_sym_QMARK] = ACTIONS(715), + [anon_sym_AT] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(715), + [anon_sym_BSLASH] = ACTIONS(717), + [anon_sym_RBRACK] = ACTIONS(715), + [anon_sym_CARET] = ACTIONS(715), + [anon_sym__] = ACTIONS(715), + [anon_sym_BQUOTE] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(715), + [anon_sym_PIPE] = ACTIONS(715), + [anon_sym_RBRACE] = ACTIONS(715), + [anon_sym_TILDE] = ACTIONS(715), + [aux_sym__html_block_1_token1] = ACTIONS(715), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(717), + [anon_sym_LT_QMARK] = ACTIONS(717), + [aux_sym__html_block_4_token1] = ACTIONS(717), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(715), + [aux_sym__html_block_6_token1] = ACTIONS(717), + [aux_sym__html_block_6_token2] = ACTIONS(715), + [sym__open_tag_html_block] = ACTIONS(715), + [sym__open_tag_html_block_newline] = ACTIONS(715), + [sym__closing_tag_html_block] = ACTIONS(715), + [sym__closing_tag_html_block_newline] = ACTIONS(715), + [sym_backslash_escape] = ACTIONS(715), + [sym_entity_reference] = ACTIONS(715), + [sym_numeric_character_reference] = ACTIONS(715), + [sym_uri_autolink] = ACTIONS(715), + [sym_email_autolink] = ACTIONS(715), + [sym__whitespace_ge_2] = ACTIONS(715), + [aux_sym__whitespace_token1] = ACTIONS(717), + [sym__word_no_digit] = ACTIONS(715), + [sym__digits] = ACTIONS(715), + [aux_sym__newline_token1] = ACTIONS(715), + [sym__block_continuation] = ACTIONS(719), + [sym__block_quote_continuation] = ACTIONS(719), + [sym__block_quote_start] = ACTIONS(715), + [sym__indented_chunk_start] = ACTIONS(715), + [sym_atx_h1_marker] = ACTIONS(715), + [sym_atx_h2_marker] = ACTIONS(715), + [sym_atx_h3_marker] = ACTIONS(715), + [sym_atx_h4_marker] = ACTIONS(715), + [sym_atx_h5_marker] = ACTIONS(715), + [sym_atx_h6_marker] = ACTIONS(715), + [sym__thematic_break] = ACTIONS(715), + [sym__list_marker_minus] = ACTIONS(715), + [sym__list_marker_plus] = ACTIONS(715), + [sym__list_marker_star] = ACTIONS(715), + [sym__list_marker_parenthesis] = ACTIONS(715), + [sym__list_marker_dot] = ACTIONS(715), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(715), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(715), + [sym__list_marker_star_dont_interrupt] = ACTIONS(715), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(715), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(715), + [sym__fenced_code_block_start_backtick] = ACTIONS(715), + [sym__fenced_code_block_start_tilde] = ACTIONS(715), + [sym__blank_line_start] = ACTIONS(715), + [sym__code_span_start] = ACTIONS(715), + [sym__emphasis_open_star] = ACTIONS(715), + [sym__emphasis_open_underscore] = ACTIONS(715), + [sym__last_token_whitespace] = ACTIONS(719), }, [118] = { - [aux_sym__ignore_matching_tokens] = STATE(167), - [ts_builtin_sym_end] = ACTIONS(699), - [anon_sym_BANG] = ACTIONS(699), - [anon_sym_DQUOTE] = ACTIONS(699), - [anon_sym_POUND] = ACTIONS(699), - [anon_sym_DOLLAR] = ACTIONS(699), - [anon_sym_PERCENT] = ACTIONS(699), - [anon_sym_AMP] = ACTIONS(701), - [anon_sym_SQUOTE] = ACTIONS(699), - [anon_sym_LPAREN] = ACTIONS(699), - [anon_sym_RPAREN] = ACTIONS(699), - [anon_sym_STAR] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(699), - [anon_sym_COMMA] = ACTIONS(699), - [anon_sym_DASH] = ACTIONS(699), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_SLASH] = ACTIONS(699), - [anon_sym_COLON] = ACTIONS(699), - [anon_sym_SEMI] = ACTIONS(699), - [anon_sym_LT] = ACTIONS(701), - [anon_sym_EQ] = ACTIONS(699), - [anon_sym_GT] = ACTIONS(699), - [anon_sym_QMARK] = ACTIONS(699), - [anon_sym_AT] = ACTIONS(699), - [anon_sym_LBRACK] = ACTIONS(699), - [anon_sym_BSLASH] = ACTIONS(701), - [anon_sym_RBRACK] = ACTIONS(699), - [anon_sym_CARET] = ACTIONS(699), - [anon_sym__] = ACTIONS(699), - [anon_sym_BQUOTE] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(699), - [anon_sym_PIPE] = ACTIONS(699), - [anon_sym_RBRACE] = ACTIONS(699), - [anon_sym_TILDE] = ACTIONS(699), - [aux_sym__html_block_1_token1] = ACTIONS(699), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(701), - [anon_sym_LT_QMARK] = ACTIONS(701), - [aux_sym__html_block_4_token1] = ACTIONS(701), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(699), - [aux_sym__html_block_6_token1] = ACTIONS(701), - [aux_sym__html_block_6_token2] = ACTIONS(699), - [sym__open_tag_html_block] = ACTIONS(699), - [sym__open_tag_html_block_newline] = ACTIONS(699), - [sym__closing_tag_html_block] = ACTIONS(699), - [sym__closing_tag_html_block_newline] = ACTIONS(699), - [sym_backslash_escape] = ACTIONS(699), - [sym_entity_reference] = ACTIONS(699), - [sym_numeric_character_reference] = ACTIONS(699), - [sym_uri_autolink] = ACTIONS(699), - [sym_email_autolink] = ACTIONS(699), - [sym__whitespace_ge_2] = ACTIONS(699), - [aux_sym__whitespace_token1] = ACTIONS(701), - [sym__word_no_digit] = ACTIONS(699), - [sym__digits] = ACTIONS(699), - [aux_sym__newline_token1] = ACTIONS(699), - [sym__block_continuation] = ACTIONS(703), - [sym__block_quote_continuation] = ACTIONS(703), - [sym__block_quote_start] = ACTIONS(699), - [sym__indented_chunk_start] = ACTIONS(699), - [sym_atx_h1_marker] = ACTIONS(699), - [sym_atx_h2_marker] = ACTIONS(699), - [sym_atx_h3_marker] = ACTIONS(699), - [sym_atx_h4_marker] = ACTIONS(699), - [sym_atx_h5_marker] = ACTIONS(699), - [sym_atx_h6_marker] = ACTIONS(699), - [sym__thematic_break] = ACTIONS(699), - [sym__list_marker_minus] = ACTIONS(699), - [sym__list_marker_plus] = ACTIONS(699), - [sym__list_marker_star] = ACTIONS(699), - [sym__list_marker_parenthesis] = ACTIONS(699), - [sym__list_marker_dot] = ACTIONS(699), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(699), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(699), - [sym__list_marker_star_dont_interrupt] = ACTIONS(699), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(699), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(699), - [sym__fenced_code_block_start_backtick] = ACTIONS(699), - [sym__fenced_code_block_start_tilde] = ACTIONS(699), - [sym__blank_line_start] = ACTIONS(699), - [sym__code_span_start] = ACTIONS(699), - [sym__emphasis_open_star] = ACTIONS(699), - [sym__emphasis_open_underscore] = ACTIONS(699), - [sym__last_token_whitespace] = ACTIONS(703), + [aux_sym__ignore_matching_tokens] = STATE(266), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_DQUOTE] = ACTIONS(721), + [anon_sym_POUND] = ACTIONS(721), + [anon_sym_DOLLAR] = ACTIONS(721), + [anon_sym_PERCENT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_SQUOTE] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(721), + [anon_sym_RPAREN] = ACTIONS(721), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_COMMA] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_DOT] = ACTIONS(721), + [anon_sym_SLASH] = ACTIONS(721), + [anon_sym_COLON] = ACTIONS(721), + [anon_sym_SEMI] = ACTIONS(721), + [anon_sym_LT] = ACTIONS(723), + [anon_sym_EQ] = ACTIONS(721), + [anon_sym_GT] = ACTIONS(721), + [anon_sym_QMARK] = ACTIONS(721), + [anon_sym_AT] = ACTIONS(721), + [anon_sym_LBRACK] = ACTIONS(721), + [anon_sym_BSLASH] = ACTIONS(723), + [anon_sym_RBRACK] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(721), + [anon_sym__] = ACTIONS(721), + [anon_sym_BQUOTE] = ACTIONS(721), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(721), + [anon_sym_RBRACE] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(721), + [aux_sym__html_block_1_token1] = ACTIONS(721), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(723), + [anon_sym_LT_QMARK] = ACTIONS(723), + [aux_sym__html_block_4_token1] = ACTIONS(723), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(721), + [aux_sym__html_block_6_token1] = ACTIONS(723), + [aux_sym__html_block_6_token2] = ACTIONS(721), + [sym__open_tag_html_block] = ACTIONS(721), + [sym__open_tag_html_block_newline] = ACTIONS(721), + [sym__closing_tag_html_block] = ACTIONS(721), + [sym__closing_tag_html_block_newline] = ACTIONS(721), + [sym_backslash_escape] = ACTIONS(721), + [sym_entity_reference] = ACTIONS(721), + [sym_numeric_character_reference] = ACTIONS(721), + [sym_uri_autolink] = ACTIONS(721), + [sym_email_autolink] = ACTIONS(721), + [sym__whitespace_ge_2] = ACTIONS(721), + [aux_sym__whitespace_token1] = ACTIONS(723), + [sym__word_no_digit] = ACTIONS(721), + [sym__digits] = ACTIONS(721), + [aux_sym__newline_token1] = ACTIONS(721), + [sym__block_close] = ACTIONS(721), + [sym__block_continuation] = ACTIONS(725), + [sym__block_quote_continuation] = ACTIONS(725), + [sym__block_quote_start] = ACTIONS(721), + [sym__indented_chunk_start] = ACTIONS(721), + [sym_atx_h1_marker] = ACTIONS(721), + [sym_atx_h2_marker] = ACTIONS(721), + [sym_atx_h3_marker] = ACTIONS(721), + [sym_atx_h4_marker] = ACTIONS(721), + [sym_atx_h5_marker] = ACTIONS(721), + [sym_atx_h6_marker] = ACTIONS(721), + [sym__thematic_break] = ACTIONS(721), + [sym__list_marker_minus] = ACTIONS(721), + [sym__list_marker_plus] = ACTIONS(721), + [sym__list_marker_star] = ACTIONS(721), + [sym__list_marker_parenthesis] = ACTIONS(721), + [sym__list_marker_dot] = ACTIONS(721), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(721), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(721), + [sym__list_marker_star_dont_interrupt] = ACTIONS(721), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(721), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(721), + [sym__fenced_code_block_start_backtick] = ACTIONS(721), + [sym__fenced_code_block_start_tilde] = ACTIONS(721), + [sym__blank_line_start] = ACTIONS(721), + [sym__code_span_start] = ACTIONS(721), + [sym__emphasis_open_star] = ACTIONS(721), + [sym__emphasis_open_underscore] = ACTIONS(721), + [sym__last_token_whitespace] = ACTIONS(725), }, [119] = { - [aux_sym__ignore_matching_tokens] = STATE(202), - [ts_builtin_sym_end] = ACTIONS(699), - [anon_sym_BANG] = ACTIONS(699), - [anon_sym_DQUOTE] = ACTIONS(699), - [anon_sym_POUND] = ACTIONS(699), - [anon_sym_DOLLAR] = ACTIONS(699), - [anon_sym_PERCENT] = ACTIONS(699), - [anon_sym_AMP] = ACTIONS(701), - [anon_sym_SQUOTE] = ACTIONS(699), - [anon_sym_LPAREN] = ACTIONS(699), - [anon_sym_RPAREN] = ACTIONS(699), - [anon_sym_STAR] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(699), - [anon_sym_COMMA] = ACTIONS(699), - [anon_sym_DASH] = ACTIONS(699), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_SLASH] = ACTIONS(699), - [anon_sym_COLON] = ACTIONS(699), - [anon_sym_SEMI] = ACTIONS(699), - [anon_sym_LT] = ACTIONS(701), - [anon_sym_EQ] = ACTIONS(699), - [anon_sym_GT] = ACTIONS(699), - [anon_sym_QMARK] = ACTIONS(699), - [anon_sym_AT] = ACTIONS(699), - [anon_sym_LBRACK] = ACTIONS(699), - [anon_sym_BSLASH] = ACTIONS(701), - [anon_sym_RBRACK] = ACTIONS(699), - [anon_sym_CARET] = ACTIONS(699), - [anon_sym__] = ACTIONS(699), - [anon_sym_BQUOTE] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(699), - [anon_sym_PIPE] = ACTIONS(699), - [anon_sym_RBRACE] = ACTIONS(699), - [anon_sym_TILDE] = ACTIONS(699), - [aux_sym__html_block_1_token1] = ACTIONS(699), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(701), - [anon_sym_LT_QMARK] = ACTIONS(701), - [aux_sym__html_block_4_token1] = ACTIONS(701), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(699), - [aux_sym__html_block_6_token1] = ACTIONS(701), - [aux_sym__html_block_6_token2] = ACTIONS(699), - [sym__open_tag_html_block] = ACTIONS(699), - [sym__open_tag_html_block_newline] = ACTIONS(699), - [sym__closing_tag_html_block] = ACTIONS(699), - [sym__closing_tag_html_block_newline] = ACTIONS(699), - [sym_backslash_escape] = ACTIONS(699), - [sym_entity_reference] = ACTIONS(699), - [sym_numeric_character_reference] = ACTIONS(699), - [sym_uri_autolink] = ACTIONS(699), - [sym_email_autolink] = ACTIONS(699), - [sym__whitespace_ge_2] = ACTIONS(699), - [aux_sym__whitespace_token1] = ACTIONS(701), - [sym__word_no_digit] = ACTIONS(699), - [sym__digits] = ACTIONS(699), - [aux_sym__newline_token1] = ACTIONS(699), - [sym__block_continuation] = ACTIONS(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(699), - [sym__indented_chunk_start] = ACTIONS(699), - [sym_atx_h1_marker] = ACTIONS(699), - [sym_atx_h2_marker] = ACTIONS(699), - [sym_atx_h3_marker] = ACTIONS(699), - [sym_atx_h4_marker] = ACTIONS(699), - [sym_atx_h5_marker] = ACTIONS(699), - [sym_atx_h6_marker] = ACTIONS(699), - [sym__thematic_break] = ACTIONS(699), - [sym__list_marker_minus] = ACTIONS(699), - [sym__list_marker_plus] = ACTIONS(699), - [sym__list_marker_star] = ACTIONS(699), - [sym__list_marker_parenthesis] = ACTIONS(699), - [sym__list_marker_dot] = ACTIONS(699), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(699), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(699), - [sym__list_marker_star_dont_interrupt] = ACTIONS(699), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(699), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(699), - [sym__fenced_code_block_start_backtick] = ACTIONS(699), - [sym__fenced_code_block_start_tilde] = ACTIONS(699), - [sym__blank_line_start] = ACTIONS(699), - [sym__code_span_start] = ACTIONS(699), - [sym__emphasis_open_star] = ACTIONS(699), - [sym__emphasis_open_underscore] = ACTIONS(699), - [sym__last_token_whitespace] = ACTIONS(111), + [aux_sym__ignore_matching_tokens] = STATE(201), + [ts_builtin_sym_end] = ACTIONS(715), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(715), + [anon_sym_POUND] = ACTIONS(715), + [anon_sym_DOLLAR] = ACTIONS(715), + [anon_sym_PERCENT] = ACTIONS(715), + [anon_sym_AMP] = ACTIONS(717), + [anon_sym_SQUOTE] = ACTIONS(715), + [anon_sym_LPAREN] = ACTIONS(715), + [anon_sym_RPAREN] = ACTIONS(715), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_PLUS] = ACTIONS(715), + [anon_sym_COMMA] = ACTIONS(715), + [anon_sym_DASH] = ACTIONS(715), + [anon_sym_DOT] = ACTIONS(715), + [anon_sym_SLASH] = ACTIONS(715), + [anon_sym_COLON] = ACTIONS(715), + [anon_sym_SEMI] = ACTIONS(715), + [anon_sym_LT] = ACTIONS(717), + [anon_sym_EQ] = ACTIONS(715), + [anon_sym_GT] = ACTIONS(715), + [anon_sym_QMARK] = ACTIONS(715), + [anon_sym_AT] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(715), + [anon_sym_BSLASH] = ACTIONS(717), + [anon_sym_RBRACK] = ACTIONS(715), + [anon_sym_CARET] = ACTIONS(715), + [anon_sym__] = ACTIONS(715), + [anon_sym_BQUOTE] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(715), + [anon_sym_PIPE] = ACTIONS(715), + [anon_sym_RBRACE] = ACTIONS(715), + [anon_sym_TILDE] = ACTIONS(715), + [aux_sym__html_block_1_token1] = ACTIONS(715), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(717), + [anon_sym_LT_QMARK] = ACTIONS(717), + [aux_sym__html_block_4_token1] = ACTIONS(717), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(715), + [aux_sym__html_block_6_token1] = ACTIONS(717), + [aux_sym__html_block_6_token2] = ACTIONS(715), + [sym__open_tag_html_block] = ACTIONS(715), + [sym__open_tag_html_block_newline] = ACTIONS(715), + [sym__closing_tag_html_block] = ACTIONS(715), + [sym__closing_tag_html_block_newline] = ACTIONS(715), + [sym_backslash_escape] = ACTIONS(715), + [sym_entity_reference] = ACTIONS(715), + [sym_numeric_character_reference] = ACTIONS(715), + [sym_uri_autolink] = ACTIONS(715), + [sym_email_autolink] = ACTIONS(715), + [sym__whitespace_ge_2] = ACTIONS(715), + [aux_sym__whitespace_token1] = ACTIONS(717), + [sym__word_no_digit] = ACTIONS(715), + [sym__digits] = ACTIONS(715), + [aux_sym__newline_token1] = ACTIONS(715), + [sym__block_continuation] = ACTIONS(109), + [sym__block_quote_continuation] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(715), + [sym__indented_chunk_start] = ACTIONS(715), + [sym_atx_h1_marker] = ACTIONS(715), + [sym_atx_h2_marker] = ACTIONS(715), + [sym_atx_h3_marker] = ACTIONS(715), + [sym_atx_h4_marker] = ACTIONS(715), + [sym_atx_h5_marker] = ACTIONS(715), + [sym_atx_h6_marker] = ACTIONS(715), + [sym__thematic_break] = ACTIONS(715), + [sym__list_marker_minus] = ACTIONS(715), + [sym__list_marker_plus] = ACTIONS(715), + [sym__list_marker_star] = ACTIONS(715), + [sym__list_marker_parenthesis] = ACTIONS(715), + [sym__list_marker_dot] = ACTIONS(715), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(715), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(715), + [sym__list_marker_star_dont_interrupt] = ACTIONS(715), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(715), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(715), + [sym__fenced_code_block_start_backtick] = ACTIONS(715), + [sym__fenced_code_block_start_tilde] = ACTIONS(715), + [sym__blank_line_start] = ACTIONS(715), + [sym__code_span_start] = ACTIONS(715), + [sym__emphasis_open_star] = ACTIONS(715), + [sym__emphasis_open_underscore] = ACTIONS(715), + [sym__last_token_whitespace] = ACTIONS(109), }, [120] = { - [aux_sym__ignore_matching_tokens] = STATE(155), - [ts_builtin_sym_end] = ACTIONS(705), - [anon_sym_BANG] = ACTIONS(705), - [anon_sym_DQUOTE] = ACTIONS(705), - [anon_sym_POUND] = ACTIONS(705), - [anon_sym_DOLLAR] = ACTIONS(705), - [anon_sym_PERCENT] = ACTIONS(705), - [anon_sym_AMP] = ACTIONS(707), - [anon_sym_SQUOTE] = ACTIONS(705), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_RPAREN] = ACTIONS(705), - [anon_sym_STAR] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(705), - [anon_sym_COMMA] = ACTIONS(705), - [anon_sym_DASH] = ACTIONS(705), - [anon_sym_DOT] = ACTIONS(705), - [anon_sym_SLASH] = ACTIONS(705), - [anon_sym_COLON] = ACTIONS(705), - [anon_sym_SEMI] = ACTIONS(705), - [anon_sym_LT] = ACTIONS(707), - [anon_sym_EQ] = ACTIONS(705), - [anon_sym_GT] = ACTIONS(705), - [anon_sym_QMARK] = ACTIONS(705), - [anon_sym_AT] = ACTIONS(705), - [anon_sym_LBRACK] = ACTIONS(705), - [anon_sym_BSLASH] = ACTIONS(707), - [anon_sym_RBRACK] = ACTIONS(705), - [anon_sym_CARET] = ACTIONS(705), - [anon_sym__] = ACTIONS(705), - [anon_sym_BQUOTE] = ACTIONS(705), - [anon_sym_LBRACE] = ACTIONS(705), - [anon_sym_PIPE] = ACTIONS(705), - [anon_sym_RBRACE] = ACTIONS(705), - [anon_sym_TILDE] = ACTIONS(705), - [aux_sym__html_block_1_token1] = ACTIONS(705), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(707), - [anon_sym_LT_QMARK] = ACTIONS(707), - [aux_sym__html_block_4_token1] = ACTIONS(707), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(705), - [aux_sym__html_block_6_token1] = ACTIONS(707), - [aux_sym__html_block_6_token2] = ACTIONS(705), - [sym__open_tag_html_block] = ACTIONS(705), - [sym__open_tag_html_block_newline] = ACTIONS(705), - [sym__closing_tag_html_block] = ACTIONS(705), - [sym__closing_tag_html_block_newline] = ACTIONS(705), - [sym_backslash_escape] = ACTIONS(705), - [sym_entity_reference] = ACTIONS(705), - [sym_numeric_character_reference] = ACTIONS(705), - [sym_uri_autolink] = ACTIONS(705), - [sym_email_autolink] = ACTIONS(705), - [sym__whitespace_ge_2] = ACTIONS(705), - [aux_sym__whitespace_token1] = ACTIONS(707), - [sym__word_no_digit] = ACTIONS(705), - [sym__digits] = ACTIONS(705), - [aux_sym__newline_token1] = ACTIONS(705), - [sym__block_continuation] = ACTIONS(709), - [sym__block_quote_continuation] = ACTIONS(709), - [sym__block_quote_start] = ACTIONS(705), - [sym__indented_chunk_start] = ACTIONS(705), - [sym_atx_h1_marker] = ACTIONS(705), - [sym_atx_h2_marker] = ACTIONS(705), - [sym_atx_h3_marker] = ACTIONS(705), - [sym_atx_h4_marker] = ACTIONS(705), - [sym_atx_h5_marker] = ACTIONS(705), - [sym_atx_h6_marker] = ACTIONS(705), - [sym__thematic_break] = ACTIONS(705), - [sym__list_marker_minus] = ACTIONS(705), - [sym__list_marker_plus] = ACTIONS(705), - [sym__list_marker_star] = ACTIONS(705), - [sym__list_marker_parenthesis] = ACTIONS(705), - [sym__list_marker_dot] = ACTIONS(705), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(705), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(705), - [sym__list_marker_star_dont_interrupt] = ACTIONS(705), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(705), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(705), - [sym__fenced_code_block_start_backtick] = ACTIONS(705), - [sym__fenced_code_block_start_tilde] = ACTIONS(705), - [sym__blank_line_start] = ACTIONS(705), - [sym__code_span_start] = ACTIONS(705), - [sym__emphasis_open_star] = ACTIONS(705), - [sym__emphasis_open_underscore] = ACTIONS(705), - [sym__last_token_whitespace] = ACTIONS(709), + [aux_sym__ignore_matching_tokens] = STATE(254), + [anon_sym_BANG] = ACTIONS(727), + [anon_sym_DQUOTE] = ACTIONS(727), + [anon_sym_POUND] = ACTIONS(727), + [anon_sym_DOLLAR] = ACTIONS(727), + [anon_sym_PERCENT] = ACTIONS(727), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_SQUOTE] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(727), + [anon_sym_RPAREN] = ACTIONS(727), + [anon_sym_STAR] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(727), + [anon_sym_COMMA] = ACTIONS(727), + [anon_sym_DASH] = ACTIONS(727), + [anon_sym_DOT] = ACTIONS(727), + [anon_sym_SLASH] = ACTIONS(727), + [anon_sym_COLON] = ACTIONS(727), + [anon_sym_SEMI] = ACTIONS(727), + [anon_sym_LT] = ACTIONS(729), + [anon_sym_EQ] = ACTIONS(727), + [anon_sym_GT] = ACTIONS(727), + [anon_sym_QMARK] = ACTIONS(727), + [anon_sym_AT] = ACTIONS(727), + [anon_sym_LBRACK] = ACTIONS(727), + [anon_sym_BSLASH] = ACTIONS(729), + [anon_sym_RBRACK] = ACTIONS(727), + [anon_sym_CARET] = ACTIONS(727), + [anon_sym__] = ACTIONS(727), + [anon_sym_BQUOTE] = ACTIONS(727), + [anon_sym_LBRACE] = ACTIONS(727), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_RBRACE] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(727), + [aux_sym__html_block_1_token1] = ACTIONS(727), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(729), + [anon_sym_LT_QMARK] = ACTIONS(729), + [aux_sym__html_block_4_token1] = ACTIONS(729), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(727), + [aux_sym__html_block_6_token1] = ACTIONS(729), + [aux_sym__html_block_6_token2] = ACTIONS(727), + [sym__open_tag_html_block] = ACTIONS(727), + [sym__open_tag_html_block_newline] = ACTIONS(727), + [sym__closing_tag_html_block] = ACTIONS(727), + [sym__closing_tag_html_block_newline] = ACTIONS(727), + [sym_backslash_escape] = ACTIONS(727), + [sym_entity_reference] = ACTIONS(727), + [sym_numeric_character_reference] = ACTIONS(727), + [sym_uri_autolink] = ACTIONS(727), + [sym_email_autolink] = ACTIONS(727), + [sym__whitespace_ge_2] = ACTIONS(727), + [aux_sym__whitespace_token1] = ACTIONS(729), + [sym__word_no_digit] = ACTIONS(727), + [sym__digits] = ACTIONS(727), + [aux_sym__newline_token1] = ACTIONS(727), + [sym__block_close] = ACTIONS(727), + [sym__block_continuation] = ACTIONS(731), + [sym__block_quote_continuation] = ACTIONS(731), + [sym__block_quote_start] = ACTIONS(727), + [sym__indented_chunk_start] = ACTIONS(727), + [sym_atx_h1_marker] = ACTIONS(727), + [sym_atx_h2_marker] = ACTIONS(727), + [sym_atx_h3_marker] = ACTIONS(727), + [sym_atx_h4_marker] = ACTIONS(727), + [sym_atx_h5_marker] = ACTIONS(727), + [sym_atx_h6_marker] = ACTIONS(727), + [sym__thematic_break] = ACTIONS(727), + [sym__list_marker_minus] = ACTIONS(727), + [sym__list_marker_plus] = ACTIONS(727), + [sym__list_marker_star] = ACTIONS(727), + [sym__list_marker_parenthesis] = ACTIONS(727), + [sym__list_marker_dot] = ACTIONS(727), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(727), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(727), + [sym__list_marker_star_dont_interrupt] = ACTIONS(727), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(727), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(727), + [sym__fenced_code_block_start_backtick] = ACTIONS(727), + [sym__fenced_code_block_start_tilde] = ACTIONS(727), + [sym__blank_line_start] = ACTIONS(727), + [sym__code_span_start] = ACTIONS(727), + [sym__emphasis_open_star] = ACTIONS(727), + [sym__emphasis_open_underscore] = ACTIONS(727), + [sym__last_token_whitespace] = ACTIONS(731), }, [121] = { - [aux_sym__ignore_matching_tokens] = STATE(202), - [ts_builtin_sym_end] = ACTIONS(705), - [anon_sym_BANG] = ACTIONS(705), - [anon_sym_DQUOTE] = ACTIONS(705), - [anon_sym_POUND] = ACTIONS(705), - [anon_sym_DOLLAR] = ACTIONS(705), - [anon_sym_PERCENT] = ACTIONS(705), - [anon_sym_AMP] = ACTIONS(707), - [anon_sym_SQUOTE] = ACTIONS(705), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_RPAREN] = ACTIONS(705), - [anon_sym_STAR] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(705), - [anon_sym_COMMA] = ACTIONS(705), - [anon_sym_DASH] = ACTIONS(705), - [anon_sym_DOT] = ACTIONS(705), - [anon_sym_SLASH] = ACTIONS(705), - [anon_sym_COLON] = ACTIONS(705), - [anon_sym_SEMI] = ACTIONS(705), - [anon_sym_LT] = ACTIONS(707), - [anon_sym_EQ] = ACTIONS(705), - [anon_sym_GT] = ACTIONS(705), - [anon_sym_QMARK] = ACTIONS(705), - [anon_sym_AT] = ACTIONS(705), - [anon_sym_LBRACK] = ACTIONS(705), - [anon_sym_BSLASH] = ACTIONS(707), - [anon_sym_RBRACK] = ACTIONS(705), - [anon_sym_CARET] = ACTIONS(705), - [anon_sym__] = ACTIONS(705), - [anon_sym_BQUOTE] = ACTIONS(705), - [anon_sym_LBRACE] = ACTIONS(705), - [anon_sym_PIPE] = ACTIONS(705), - [anon_sym_RBRACE] = ACTIONS(705), - [anon_sym_TILDE] = ACTIONS(705), - [aux_sym__html_block_1_token1] = ACTIONS(705), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(707), - [anon_sym_LT_QMARK] = ACTIONS(707), - [aux_sym__html_block_4_token1] = ACTIONS(707), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(705), - [aux_sym__html_block_6_token1] = ACTIONS(707), - [aux_sym__html_block_6_token2] = ACTIONS(705), - [sym__open_tag_html_block] = ACTIONS(705), - [sym__open_tag_html_block_newline] = ACTIONS(705), - [sym__closing_tag_html_block] = ACTIONS(705), - [sym__closing_tag_html_block_newline] = ACTIONS(705), - [sym_backslash_escape] = ACTIONS(705), - [sym_entity_reference] = ACTIONS(705), - [sym_numeric_character_reference] = ACTIONS(705), - [sym_uri_autolink] = ACTIONS(705), - [sym_email_autolink] = ACTIONS(705), - [sym__whitespace_ge_2] = ACTIONS(705), - [aux_sym__whitespace_token1] = ACTIONS(707), - [sym__word_no_digit] = ACTIONS(705), - [sym__digits] = ACTIONS(705), - [aux_sym__newline_token1] = ACTIONS(705), - [sym__block_continuation] = ACTIONS(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(705), - [sym__indented_chunk_start] = ACTIONS(705), - [sym_atx_h1_marker] = ACTIONS(705), - [sym_atx_h2_marker] = ACTIONS(705), - [sym_atx_h3_marker] = ACTIONS(705), - [sym_atx_h4_marker] = ACTIONS(705), - [sym_atx_h5_marker] = ACTIONS(705), - [sym_atx_h6_marker] = ACTIONS(705), - [sym__thematic_break] = ACTIONS(705), - [sym__list_marker_minus] = ACTIONS(705), - [sym__list_marker_plus] = ACTIONS(705), - [sym__list_marker_star] = ACTIONS(705), - [sym__list_marker_parenthesis] = ACTIONS(705), - [sym__list_marker_dot] = ACTIONS(705), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(705), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(705), - [sym__list_marker_star_dont_interrupt] = ACTIONS(705), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(705), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(705), - [sym__fenced_code_block_start_backtick] = ACTIONS(705), - [sym__fenced_code_block_start_tilde] = ACTIONS(705), - [sym__blank_line_start] = ACTIONS(705), - [sym__code_span_start] = ACTIONS(705), - [sym__emphasis_open_star] = ACTIONS(705), - [sym__emphasis_open_underscore] = ACTIONS(705), - [sym__last_token_whitespace] = ACTIONS(111), - }, - [122] = { - [sym__soft_line_break] = STATE(258), - [sym__link_text] = STATE(2133), - [sym__link_text_non_empty] = STATE(795), - [sym_shortcut_link] = STATE(258), - [sym_full_reference_link] = STATE(258), - [sym_collapsed_reference_link] = STATE(258), - [sym_inline_link] = STATE(258), - [sym_image] = STATE(258), - [sym__image_inline_link] = STATE(801), - [sym__image_shortcut_link] = STATE(801), - [sym__image_full_reference_link] = STATE(801), - [sym__image_collapsed_reference_link] = STATE(801), - [sym__image_description] = STATE(2122), - [sym__image_description_non_empty] = STATE(802), - [sym_html_tag] = STATE(258), - [sym__open_tag] = STATE(683), - [sym__closing_tag] = STATE(683), - [sym__html_comment] = STATE(683), - [sym__processing_instruction] = STATE(683), - [sym__declaration] = STATE(683), - [sym__cdata_section] = STATE(683), - [sym_hard_line_break] = STATE(258), - [sym__whitespace] = STATE(258), - [sym__word] = STATE(258), - [sym__newline] = STATE(2123), - [sym__inline_element_no_underscore] = STATE(258), - [aux_sym__inline_no_underscore] = STATE(258), - [sym__text_inline_no_underscore] = STATE(258), - [sym__emphasis_star] = STATE(761), - [sym__strong_emphasis_star] = STATE(258), - [sym__emphasis_underscore] = STATE(761), - [sym__strong_emphasis_underscore] = STATE(258), - [sym__code_span] = STATE(258), - [anon_sym_BANG] = ACTIONS(711), - [anon_sym_DQUOTE] = ACTIONS(713), - [anon_sym_POUND] = ACTIONS(713), - [anon_sym_DOLLAR] = ACTIONS(713), - [anon_sym_PERCENT] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(713), - [anon_sym_LPAREN] = ACTIONS(713), - [anon_sym_RPAREN] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(713), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_COMMA] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_DOT] = ACTIONS(713), - [anon_sym_SLASH] = ACTIONS(713), - [anon_sym_COLON] = ACTIONS(713), - [anon_sym_SEMI] = ACTIONS(713), - [anon_sym_LT] = ACTIONS(717), - [anon_sym_EQ] = ACTIONS(713), - [anon_sym_GT] = ACTIONS(713), - [anon_sym_QMARK] = ACTIONS(713), - [anon_sym_AT] = ACTIONS(713), - [anon_sym_LBRACK] = ACTIONS(719), - [anon_sym_BSLASH] = ACTIONS(721), - [anon_sym_RBRACK] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym__] = ACTIONS(713), - [anon_sym_BQUOTE] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(713), - [anon_sym_PIPE] = ACTIONS(713), - [anon_sym_RBRACE] = ACTIONS(713), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(723), - [anon_sym_LT_QMARK] = ACTIONS(725), - [aux_sym__html_block_4_token1] = ACTIONS(727), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(729), - [sym_backslash_escape] = ACTIONS(731), - [sym_entity_reference] = ACTIONS(731), - [sym_numeric_character_reference] = ACTIONS(731), - [sym_uri_autolink] = ACTIONS(731), - [sym_email_autolink] = ACTIONS(731), + [aux_sym__ignore_matching_tokens] = STATE(178), + [ts_builtin_sym_end] = ACTIONS(733), + [anon_sym_BANG] = ACTIONS(733), + [anon_sym_DQUOTE] = ACTIONS(733), + [anon_sym_POUND] = ACTIONS(733), + [anon_sym_DOLLAR] = ACTIONS(733), + [anon_sym_PERCENT] = ACTIONS(733), + [anon_sym_AMP] = ACTIONS(735), + [anon_sym_SQUOTE] = ACTIONS(733), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_RPAREN] = ACTIONS(733), + [anon_sym_STAR] = ACTIONS(733), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_COMMA] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_DOT] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(733), + [anon_sym_COLON] = ACTIONS(733), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LT] = ACTIONS(735), + [anon_sym_EQ] = ACTIONS(733), + [anon_sym_GT] = ACTIONS(733), + [anon_sym_QMARK] = ACTIONS(733), + [anon_sym_AT] = ACTIONS(733), + [anon_sym_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH] = ACTIONS(735), + [anon_sym_RBRACK] = ACTIONS(733), + [anon_sym_CARET] = ACTIONS(733), + [anon_sym__] = ACTIONS(733), + [anon_sym_BQUOTE] = ACTIONS(733), + [anon_sym_LBRACE] = ACTIONS(733), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_RBRACE] = ACTIONS(733), + [anon_sym_TILDE] = ACTIONS(733), + [aux_sym__html_block_1_token1] = ACTIONS(733), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(735), + [anon_sym_LT_QMARK] = ACTIONS(735), + [aux_sym__html_block_4_token1] = ACTIONS(735), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(733), + [aux_sym__html_block_6_token1] = ACTIONS(735), + [aux_sym__html_block_6_token2] = ACTIONS(733), + [sym__open_tag_html_block] = ACTIONS(733), + [sym__open_tag_html_block_newline] = ACTIONS(733), + [sym__closing_tag_html_block] = ACTIONS(733), + [sym__closing_tag_html_block_newline] = ACTIONS(733), + [sym_backslash_escape] = ACTIONS(733), + [sym_entity_reference] = ACTIONS(733), + [sym_numeric_character_reference] = ACTIONS(733), + [sym_uri_autolink] = ACTIONS(733), + [sym_email_autolink] = ACTIONS(733), [sym__whitespace_ge_2] = ACTIONS(733), [aux_sym__whitespace_token1] = ACTIONS(735), - [sym__word_no_digit] = ACTIONS(731), - [sym__digits] = ACTIONS(731), + [sym__word_no_digit] = ACTIONS(733), + [sym__digits] = ACTIONS(733), + [aux_sym__newline_token1] = ACTIONS(733), + [sym__block_continuation] = ACTIONS(737), + [sym__block_quote_continuation] = ACTIONS(737), + [sym__block_quote_start] = ACTIONS(733), + [sym__indented_chunk_start] = ACTIONS(733), + [sym_atx_h1_marker] = ACTIONS(733), + [sym_atx_h2_marker] = ACTIONS(733), + [sym_atx_h3_marker] = ACTIONS(733), + [sym_atx_h4_marker] = ACTIONS(733), + [sym_atx_h5_marker] = ACTIONS(733), + [sym_atx_h6_marker] = ACTIONS(733), + [sym__thematic_break] = ACTIONS(733), + [sym__list_marker_minus] = ACTIONS(733), + [sym__list_marker_plus] = ACTIONS(733), + [sym__list_marker_star] = ACTIONS(733), + [sym__list_marker_parenthesis] = ACTIONS(733), + [sym__list_marker_dot] = ACTIONS(733), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(733), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(733), + [sym__list_marker_star_dont_interrupt] = ACTIONS(733), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(733), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(733), + [sym__fenced_code_block_start_backtick] = ACTIONS(733), + [sym__fenced_code_block_start_tilde] = ACTIONS(733), + [sym__blank_line_start] = ACTIONS(733), + [sym__code_span_start] = ACTIONS(733), + [sym__emphasis_open_star] = ACTIONS(733), + [sym__emphasis_open_underscore] = ACTIONS(733), + [sym__last_token_whitespace] = ACTIONS(737), + }, + [122] = { + [sym__soft_line_break] = STATE(257), + [sym__link_text] = STATE(2126), + [sym__link_text_non_empty] = STATE(716), + [sym_shortcut_link] = STATE(257), + [sym_full_reference_link] = STATE(257), + [sym_collapsed_reference_link] = STATE(257), + [sym_inline_link] = STATE(257), + [sym_image] = STATE(257), + [sym__image_inline_link] = STATE(663), + [sym__image_shortcut_link] = STATE(663), + [sym__image_full_reference_link] = STATE(663), + [sym__image_collapsed_reference_link] = STATE(663), + [sym__image_description] = STATE(2134), + [sym__image_description_non_empty] = STATE(705), + [sym_html_tag] = STATE(257), + [sym__open_tag] = STATE(702), + [sym__closing_tag] = STATE(702), + [sym__html_comment] = STATE(702), + [sym__processing_instruction] = STATE(702), + [sym__declaration] = STATE(702), + [sym__cdata_section] = STATE(702), + [sym_hard_line_break] = STATE(257), + [sym__whitespace] = STATE(257), + [sym__word] = STATE(257), + [sym__newline] = STATE(2143), + [sym__inline_element_no_underscore] = STATE(257), + [aux_sym__inline_no_underscore] = STATE(257), + [sym__text_inline_no_underscore] = STATE(257), + [sym__emphasis_star] = STATE(800), + [sym__strong_emphasis_star] = STATE(257), + [sym__emphasis_underscore] = STATE(800), + [sym__strong_emphasis_underscore] = STATE(257), + [sym__code_span] = STATE(257), + [anon_sym_BANG] = ACTIONS(559), + [anon_sym_DQUOTE] = ACTIONS(561), + [anon_sym_POUND] = ACTIONS(561), + [anon_sym_DOLLAR] = ACTIONS(561), + [anon_sym_PERCENT] = ACTIONS(561), + [anon_sym_AMP] = ACTIONS(563), + [anon_sym_SQUOTE] = ACTIONS(561), + [anon_sym_LPAREN] = ACTIONS(561), + [anon_sym_RPAREN] = ACTIONS(561), + [anon_sym_STAR] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_COMMA] = ACTIONS(561), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_DOT] = ACTIONS(561), + [anon_sym_SLASH] = ACTIONS(561), + [anon_sym_COLON] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(561), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_EQ] = ACTIONS(561), + [anon_sym_GT] = ACTIONS(561), + [anon_sym_QMARK] = ACTIONS(561), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_BSLASH] = ACTIONS(569), + [anon_sym_RBRACK] = ACTIONS(561), + [anon_sym_CARET] = ACTIONS(561), + [anon_sym__] = ACTIONS(561), + [anon_sym_BQUOTE] = ACTIONS(561), + [anon_sym_LBRACE] = ACTIONS(561), + [anon_sym_PIPE] = ACTIONS(561), + [anon_sym_RBRACE] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(571), + [anon_sym_LT_QMARK] = ACTIONS(573), + [aux_sym__html_block_4_token1] = ACTIONS(575), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(577), + [sym_backslash_escape] = ACTIONS(579), + [sym_entity_reference] = ACTIONS(579), + [sym_numeric_character_reference] = ACTIONS(579), + [sym_uri_autolink] = ACTIONS(579), + [sym_email_autolink] = ACTIONS(579), + [sym__whitespace_ge_2] = ACTIONS(581), + [aux_sym__whitespace_token1] = ACTIONS(583), + [sym__word_no_digit] = ACTIONS(579), + [sym__digits] = ACTIONS(579), [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(737), - [sym__emphasis_open_star] = ACTIONS(739), - [sym__emphasis_open_underscore] = ACTIONS(741), - [sym__emphasis_close_underscore] = ACTIONS(743), + [sym__code_span_start] = ACTIONS(585), + [sym__emphasis_open_star] = ACTIONS(587), + [sym__emphasis_open_underscore] = ACTIONS(589), + [sym__emphasis_close_underscore] = ACTIONS(739), }, [123] = { - [aux_sym__ignore_matching_tokens] = STATE(149), - [ts_builtin_sym_end] = ACTIONS(745), - [anon_sym_BANG] = ACTIONS(745), - [anon_sym_DQUOTE] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(745), - [anon_sym_DOLLAR] = ACTIONS(745), - [anon_sym_PERCENT] = ACTIONS(745), - [anon_sym_AMP] = ACTIONS(747), - [anon_sym_SQUOTE] = ACTIONS(745), - [anon_sym_LPAREN] = ACTIONS(745), - [anon_sym_RPAREN] = ACTIONS(745), - [anon_sym_STAR] = ACTIONS(745), - [anon_sym_PLUS] = ACTIONS(745), - [anon_sym_COMMA] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), - [anon_sym_DOT] = ACTIONS(745), - [anon_sym_SLASH] = ACTIONS(745), - [anon_sym_COLON] = ACTIONS(745), - [anon_sym_SEMI] = ACTIONS(745), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_EQ] = ACTIONS(745), - [anon_sym_GT] = ACTIONS(745), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(745), - [anon_sym_BSLASH] = ACTIONS(747), - [anon_sym_RBRACK] = ACTIONS(745), - [anon_sym_CARET] = ACTIONS(745), - [anon_sym__] = ACTIONS(745), - [anon_sym_BQUOTE] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(745), - [anon_sym_PIPE] = ACTIONS(745), - [anon_sym_RBRACE] = ACTIONS(745), - [anon_sym_TILDE] = ACTIONS(745), - [aux_sym__html_block_1_token1] = ACTIONS(745), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(747), - [anon_sym_LT_QMARK] = ACTIONS(747), - [aux_sym__html_block_4_token1] = ACTIONS(747), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(745), - [aux_sym__html_block_6_token1] = ACTIONS(747), - [aux_sym__html_block_6_token2] = ACTIONS(745), - [sym__open_tag_html_block] = ACTIONS(745), - [sym__open_tag_html_block_newline] = ACTIONS(745), - [sym__closing_tag_html_block] = ACTIONS(745), - [sym__closing_tag_html_block_newline] = ACTIONS(745), - [sym_backslash_escape] = ACTIONS(745), - [sym_entity_reference] = ACTIONS(745), - [sym_numeric_character_reference] = ACTIONS(745), - [sym_uri_autolink] = ACTIONS(745), - [sym_email_autolink] = ACTIONS(745), - [sym__whitespace_ge_2] = ACTIONS(745), - [aux_sym__whitespace_token1] = ACTIONS(747), - [sym__word_no_digit] = ACTIONS(745), - [sym__digits] = ACTIONS(745), - [aux_sym__newline_token1] = ACTIONS(745), - [sym__block_continuation] = ACTIONS(749), - [sym__block_quote_continuation] = ACTIONS(749), - [sym__block_quote_start] = ACTIONS(745), - [sym__indented_chunk_start] = ACTIONS(745), - [sym_atx_h1_marker] = ACTIONS(745), - [sym_atx_h2_marker] = ACTIONS(745), - [sym_atx_h3_marker] = ACTIONS(745), - [sym_atx_h4_marker] = ACTIONS(745), - [sym_atx_h5_marker] = ACTIONS(745), - [sym_atx_h6_marker] = ACTIONS(745), - [sym__thematic_break] = ACTIONS(745), - [sym__list_marker_minus] = ACTIONS(745), - [sym__list_marker_plus] = ACTIONS(745), - [sym__list_marker_star] = ACTIONS(745), - [sym__list_marker_parenthesis] = ACTIONS(745), - [sym__list_marker_dot] = ACTIONS(745), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(745), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(745), - [sym__list_marker_star_dont_interrupt] = ACTIONS(745), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(745), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(745), - [sym__fenced_code_block_start_backtick] = ACTIONS(745), - [sym__fenced_code_block_start_tilde] = ACTIONS(745), - [sym__blank_line_start] = ACTIONS(745), - [sym__code_span_start] = ACTIONS(745), - [sym__emphasis_open_star] = ACTIONS(745), - [sym__emphasis_open_underscore] = ACTIONS(745), - [sym__last_token_whitespace] = ACTIONS(749), + [aux_sym__ignore_matching_tokens] = STATE(250), + [anon_sym_BANG] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_POUND] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(741), + [anon_sym_PERCENT] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(743), + [anon_sym_SQUOTE] = ACTIONS(741), + [anon_sym_LPAREN] = ACTIONS(741), + [anon_sym_RPAREN] = ACTIONS(741), + [anon_sym_STAR] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(741), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_DASH] = ACTIONS(741), + [anon_sym_DOT] = ACTIONS(741), + [anon_sym_SLASH] = ACTIONS(741), + [anon_sym_COLON] = ACTIONS(741), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(743), + [anon_sym_EQ] = ACTIONS(741), + [anon_sym_GT] = ACTIONS(741), + [anon_sym_QMARK] = ACTIONS(741), + [anon_sym_AT] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(741), + [anon_sym_BSLASH] = ACTIONS(743), + [anon_sym_RBRACK] = ACTIONS(741), + [anon_sym_CARET] = ACTIONS(741), + [anon_sym__] = ACTIONS(741), + [anon_sym_BQUOTE] = ACTIONS(741), + [anon_sym_LBRACE] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(741), + [anon_sym_RBRACE] = ACTIONS(741), + [anon_sym_TILDE] = ACTIONS(741), + [aux_sym__html_block_1_token1] = ACTIONS(741), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(743), + [anon_sym_LT_QMARK] = ACTIONS(743), + [aux_sym__html_block_4_token1] = ACTIONS(743), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(741), + [aux_sym__html_block_6_token1] = ACTIONS(743), + [aux_sym__html_block_6_token2] = ACTIONS(741), + [sym__open_tag_html_block] = ACTIONS(741), + [sym__open_tag_html_block_newline] = ACTIONS(741), + [sym__closing_tag_html_block] = ACTIONS(741), + [sym__closing_tag_html_block_newline] = ACTIONS(741), + [sym_backslash_escape] = ACTIONS(741), + [sym_entity_reference] = ACTIONS(741), + [sym_numeric_character_reference] = ACTIONS(741), + [sym_uri_autolink] = ACTIONS(741), + [sym_email_autolink] = ACTIONS(741), + [sym__whitespace_ge_2] = ACTIONS(741), + [aux_sym__whitespace_token1] = ACTIONS(743), + [sym__word_no_digit] = ACTIONS(741), + [sym__digits] = ACTIONS(741), + [aux_sym__newline_token1] = ACTIONS(741), + [sym__block_close] = ACTIONS(741), + [sym__block_continuation] = ACTIONS(745), + [sym__block_quote_continuation] = ACTIONS(745), + [sym__block_quote_start] = ACTIONS(741), + [sym__indented_chunk_start] = ACTIONS(741), + [sym_atx_h1_marker] = ACTIONS(741), + [sym_atx_h2_marker] = ACTIONS(741), + [sym_atx_h3_marker] = ACTIONS(741), + [sym_atx_h4_marker] = ACTIONS(741), + [sym_atx_h5_marker] = ACTIONS(741), + [sym_atx_h6_marker] = ACTIONS(741), + [sym__thematic_break] = ACTIONS(741), + [sym__list_marker_minus] = ACTIONS(741), + [sym__list_marker_plus] = ACTIONS(741), + [sym__list_marker_star] = ACTIONS(741), + [sym__list_marker_parenthesis] = ACTIONS(741), + [sym__list_marker_dot] = ACTIONS(741), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(741), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(741), + [sym__list_marker_star_dont_interrupt] = ACTIONS(741), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(741), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(741), + [sym__fenced_code_block_start_backtick] = ACTIONS(741), + [sym__fenced_code_block_start_tilde] = ACTIONS(741), + [sym__blank_line_start] = ACTIONS(741), + [sym__code_span_start] = ACTIONS(741), + [sym__emphasis_open_star] = ACTIONS(741), + [sym__emphasis_open_underscore] = ACTIONS(741), + [sym__last_token_whitespace] = ACTIONS(745), }, [124] = { - [aux_sym__ignore_matching_tokens] = STATE(202), - [ts_builtin_sym_end] = ACTIONS(745), - [anon_sym_BANG] = ACTIONS(745), - [anon_sym_DQUOTE] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(745), - [anon_sym_DOLLAR] = ACTIONS(745), - [anon_sym_PERCENT] = ACTIONS(745), - [anon_sym_AMP] = ACTIONS(747), - [anon_sym_SQUOTE] = ACTIONS(745), - [anon_sym_LPAREN] = ACTIONS(745), - [anon_sym_RPAREN] = ACTIONS(745), - [anon_sym_STAR] = ACTIONS(745), - [anon_sym_PLUS] = ACTIONS(745), - [anon_sym_COMMA] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), - [anon_sym_DOT] = ACTIONS(745), - [anon_sym_SLASH] = ACTIONS(745), - [anon_sym_COLON] = ACTIONS(745), - [anon_sym_SEMI] = ACTIONS(745), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_EQ] = ACTIONS(745), - [anon_sym_GT] = ACTIONS(745), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(745), - [anon_sym_BSLASH] = ACTIONS(747), - [anon_sym_RBRACK] = ACTIONS(745), - [anon_sym_CARET] = ACTIONS(745), - [anon_sym__] = ACTIONS(745), - [anon_sym_BQUOTE] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(745), - [anon_sym_PIPE] = ACTIONS(745), - [anon_sym_RBRACE] = ACTIONS(745), - [anon_sym_TILDE] = ACTIONS(745), - [aux_sym__html_block_1_token1] = ACTIONS(745), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(747), - [anon_sym_LT_QMARK] = ACTIONS(747), - [aux_sym__html_block_4_token1] = ACTIONS(747), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(745), - [aux_sym__html_block_6_token1] = ACTIONS(747), - [aux_sym__html_block_6_token2] = ACTIONS(745), - [sym__open_tag_html_block] = ACTIONS(745), - [sym__open_tag_html_block_newline] = ACTIONS(745), - [sym__closing_tag_html_block] = ACTIONS(745), - [sym__closing_tag_html_block_newline] = ACTIONS(745), - [sym_backslash_escape] = ACTIONS(745), - [sym_entity_reference] = ACTIONS(745), - [sym_numeric_character_reference] = ACTIONS(745), - [sym_uri_autolink] = ACTIONS(745), - [sym_email_autolink] = ACTIONS(745), - [sym__whitespace_ge_2] = ACTIONS(745), - [aux_sym__whitespace_token1] = ACTIONS(747), - [sym__word_no_digit] = ACTIONS(745), - [sym__digits] = ACTIONS(745), - [aux_sym__newline_token1] = ACTIONS(745), - [sym__block_continuation] = ACTIONS(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(745), - [sym__indented_chunk_start] = ACTIONS(745), - [sym_atx_h1_marker] = ACTIONS(745), - [sym_atx_h2_marker] = ACTIONS(745), - [sym_atx_h3_marker] = ACTIONS(745), - [sym_atx_h4_marker] = ACTIONS(745), - [sym_atx_h5_marker] = ACTIONS(745), - [sym_atx_h6_marker] = ACTIONS(745), - [sym__thematic_break] = ACTIONS(745), - [sym__list_marker_minus] = ACTIONS(745), - [sym__list_marker_plus] = ACTIONS(745), - [sym__list_marker_star] = ACTIONS(745), - [sym__list_marker_parenthesis] = ACTIONS(745), - [sym__list_marker_dot] = ACTIONS(745), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(745), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(745), - [sym__list_marker_star_dont_interrupt] = ACTIONS(745), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(745), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(745), - [sym__fenced_code_block_start_backtick] = ACTIONS(745), - [sym__fenced_code_block_start_tilde] = ACTIONS(745), - [sym__blank_line_start] = ACTIONS(745), - [sym__code_span_start] = ACTIONS(745), - [sym__emphasis_open_star] = ACTIONS(745), - [sym__emphasis_open_underscore] = ACTIONS(745), - [sym__last_token_whitespace] = ACTIONS(111), + [aux_sym__ignore_matching_tokens] = STATE(245), + [anon_sym_BANG] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(747), + [anon_sym_POUND] = ACTIONS(747), + [anon_sym_DOLLAR] = ACTIONS(747), + [anon_sym_PERCENT] = ACTIONS(747), + [anon_sym_AMP] = ACTIONS(749), + [anon_sym_SQUOTE] = ACTIONS(747), + [anon_sym_LPAREN] = ACTIONS(747), + [anon_sym_RPAREN] = ACTIONS(747), + [anon_sym_STAR] = ACTIONS(747), + [anon_sym_PLUS] = ACTIONS(747), + [anon_sym_COMMA] = ACTIONS(747), + [anon_sym_DASH] = ACTIONS(747), + [anon_sym_DOT] = ACTIONS(747), + [anon_sym_SLASH] = ACTIONS(747), + [anon_sym_COLON] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(747), + [anon_sym_LT] = ACTIONS(749), + [anon_sym_EQ] = ACTIONS(747), + [anon_sym_GT] = ACTIONS(747), + [anon_sym_QMARK] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_LBRACK] = ACTIONS(747), + [anon_sym_BSLASH] = ACTIONS(749), + [anon_sym_RBRACK] = ACTIONS(747), + [anon_sym_CARET] = ACTIONS(747), + [anon_sym__] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(747), + [anon_sym_LBRACE] = ACTIONS(747), + [anon_sym_PIPE] = ACTIONS(747), + [anon_sym_RBRACE] = ACTIONS(747), + [anon_sym_TILDE] = ACTIONS(747), + [aux_sym__html_block_1_token1] = ACTIONS(747), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(749), + [anon_sym_LT_QMARK] = ACTIONS(749), + [aux_sym__html_block_4_token1] = ACTIONS(749), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(747), + [aux_sym__html_block_6_token1] = ACTIONS(749), + [aux_sym__html_block_6_token2] = ACTIONS(747), + [sym__open_tag_html_block] = ACTIONS(747), + [sym__open_tag_html_block_newline] = ACTIONS(747), + [sym__closing_tag_html_block] = ACTIONS(747), + [sym__closing_tag_html_block_newline] = ACTIONS(747), + [sym_backslash_escape] = ACTIONS(747), + [sym_entity_reference] = ACTIONS(747), + [sym_numeric_character_reference] = ACTIONS(747), + [sym_uri_autolink] = ACTIONS(747), + [sym_email_autolink] = ACTIONS(747), + [sym__whitespace_ge_2] = ACTIONS(747), + [aux_sym__whitespace_token1] = ACTIONS(749), + [sym__word_no_digit] = ACTIONS(747), + [sym__digits] = ACTIONS(747), + [aux_sym__newline_token1] = ACTIONS(747), + [sym__block_close] = ACTIONS(747), + [sym__block_continuation] = ACTIONS(751), + [sym__block_quote_continuation] = ACTIONS(751), + [sym__block_quote_start] = ACTIONS(747), + [sym__indented_chunk_start] = ACTIONS(747), + [sym_atx_h1_marker] = ACTIONS(747), + [sym_atx_h2_marker] = ACTIONS(747), + [sym_atx_h3_marker] = ACTIONS(747), + [sym_atx_h4_marker] = ACTIONS(747), + [sym_atx_h5_marker] = ACTIONS(747), + [sym_atx_h6_marker] = ACTIONS(747), + [sym__thematic_break] = ACTIONS(747), + [sym__list_marker_minus] = ACTIONS(747), + [sym__list_marker_plus] = ACTIONS(747), + [sym__list_marker_star] = ACTIONS(747), + [sym__list_marker_parenthesis] = ACTIONS(747), + [sym__list_marker_dot] = ACTIONS(747), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(747), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(747), + [sym__list_marker_star_dont_interrupt] = ACTIONS(747), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(747), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(747), + [sym__fenced_code_block_start_backtick] = ACTIONS(747), + [sym__fenced_code_block_start_tilde] = ACTIONS(747), + [sym__blank_line_start] = ACTIONS(747), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(747), + [sym__emphasis_open_underscore] = ACTIONS(747), + [sym__last_token_whitespace] = ACTIONS(751), }, [125] = { - [aux_sym__ignore_matching_tokens] = STATE(115), - [anon_sym_BANG] = ACTIONS(751), - [anon_sym_DQUOTE] = ACTIONS(751), - [anon_sym_POUND] = ACTIONS(751), - [anon_sym_DOLLAR] = ACTIONS(751), - [anon_sym_PERCENT] = ACTIONS(751), - [anon_sym_AMP] = ACTIONS(753), - [anon_sym_SQUOTE] = ACTIONS(751), - [anon_sym_LPAREN] = ACTIONS(751), - [anon_sym_RPAREN] = ACTIONS(751), - [anon_sym_STAR] = ACTIONS(751), - [anon_sym_PLUS] = ACTIONS(751), - [anon_sym_COMMA] = ACTIONS(751), - [anon_sym_DASH] = ACTIONS(751), - [anon_sym_DOT] = ACTIONS(751), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_COLON] = ACTIONS(751), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_LT] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(751), - [anon_sym_QMARK] = ACTIONS(751), - [anon_sym_AT] = ACTIONS(751), - [anon_sym_LBRACK] = ACTIONS(751), - [anon_sym_BSLASH] = ACTIONS(753), - [anon_sym_RBRACK] = ACTIONS(751), - [anon_sym_CARET] = ACTIONS(751), - [anon_sym__] = ACTIONS(751), - [anon_sym_BQUOTE] = ACTIONS(751), - [anon_sym_LBRACE] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_RBRACE] = ACTIONS(751), - [anon_sym_TILDE] = ACTIONS(751), - [aux_sym__html_block_1_token1] = ACTIONS(751), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(753), - [anon_sym_LT_QMARK] = ACTIONS(753), - [aux_sym__html_block_4_token1] = ACTIONS(753), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(751), - [aux_sym__html_block_6_token1] = ACTIONS(753), - [aux_sym__html_block_6_token2] = ACTIONS(751), - [sym__open_tag_html_block] = ACTIONS(751), - [sym__open_tag_html_block_newline] = ACTIONS(751), - [sym__closing_tag_html_block] = ACTIONS(751), - [sym__closing_tag_html_block_newline] = ACTIONS(751), - [sym_backslash_escape] = ACTIONS(751), - [sym_entity_reference] = ACTIONS(751), - [sym_numeric_character_reference] = ACTIONS(751), - [sym_uri_autolink] = ACTIONS(751), - [sym_email_autolink] = ACTIONS(751), - [sym__whitespace_ge_2] = ACTIONS(751), - [aux_sym__whitespace_token1] = ACTIONS(753), - [sym__word_no_digit] = ACTIONS(751), - [sym__digits] = ACTIONS(751), - [aux_sym__newline_token1] = ACTIONS(751), - [sym__block_close] = ACTIONS(751), - [sym__block_continuation] = ACTIONS(755), - [sym__block_quote_continuation] = ACTIONS(755), - [sym__block_quote_start] = ACTIONS(751), - [sym__indented_chunk_start] = ACTIONS(751), - [sym_atx_h1_marker] = ACTIONS(751), - [sym_atx_h2_marker] = ACTIONS(751), - [sym_atx_h3_marker] = ACTIONS(751), - [sym_atx_h4_marker] = ACTIONS(751), - [sym_atx_h5_marker] = ACTIONS(751), - [sym_atx_h6_marker] = ACTIONS(751), - [sym__thematic_break] = ACTIONS(751), - [sym__list_marker_minus] = ACTIONS(751), - [sym__list_marker_plus] = ACTIONS(751), - [sym__list_marker_star] = ACTIONS(751), - [sym__list_marker_parenthesis] = ACTIONS(751), - [sym__list_marker_dot] = ACTIONS(751), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(751), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(751), - [sym__list_marker_star_dont_interrupt] = ACTIONS(751), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(751), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(751), - [sym__fenced_code_block_start_backtick] = ACTIONS(751), - [sym__fenced_code_block_start_tilde] = ACTIONS(751), - [sym__blank_line_start] = ACTIONS(751), - [sym__code_span_start] = ACTIONS(751), - [sym__emphasis_open_star] = ACTIONS(751), - [sym__emphasis_open_underscore] = ACTIONS(751), - [sym__last_token_whitespace] = ACTIONS(755), + [aux_sym__ignore_matching_tokens] = STATE(227), + [anon_sym_BANG] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(753), + [anon_sym_DOLLAR] = ACTIONS(753), + [anon_sym_PERCENT] = ACTIONS(753), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_LPAREN] = ACTIONS(753), + [anon_sym_RPAREN] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_COMMA] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(753), + [anon_sym_SLASH] = ACTIONS(753), + [anon_sym_COLON] = ACTIONS(753), + [anon_sym_SEMI] = ACTIONS(753), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_EQ] = ACTIONS(753), + [anon_sym_GT] = ACTIONS(753), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_AT] = ACTIONS(753), + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_BSLASH] = ACTIONS(755), + [anon_sym_RBRACK] = ACTIONS(753), + [anon_sym_CARET] = ACTIONS(753), + [anon_sym__] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(753), + [anon_sym_LBRACE] = ACTIONS(753), + [anon_sym_PIPE] = ACTIONS(753), + [anon_sym_RBRACE] = ACTIONS(753), + [anon_sym_TILDE] = ACTIONS(753), + [aux_sym__html_block_1_token1] = ACTIONS(753), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(755), + [anon_sym_LT_QMARK] = ACTIONS(755), + [aux_sym__html_block_4_token1] = ACTIONS(755), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(753), + [aux_sym__html_block_6_token1] = ACTIONS(755), + [aux_sym__html_block_6_token2] = ACTIONS(753), + [sym__open_tag_html_block] = ACTIONS(753), + [sym__open_tag_html_block_newline] = ACTIONS(753), + [sym__closing_tag_html_block] = ACTIONS(753), + [sym__closing_tag_html_block_newline] = ACTIONS(753), + [sym_backslash_escape] = ACTIONS(753), + [sym_entity_reference] = ACTIONS(753), + [sym_numeric_character_reference] = ACTIONS(753), + [sym_uri_autolink] = ACTIONS(753), + [sym_email_autolink] = ACTIONS(753), + [sym__whitespace_ge_2] = ACTIONS(753), + [aux_sym__whitespace_token1] = ACTIONS(755), + [sym__word_no_digit] = ACTIONS(753), + [sym__digits] = ACTIONS(753), + [aux_sym__newline_token1] = ACTIONS(753), + [sym__block_close] = ACTIONS(753), + [sym__block_continuation] = ACTIONS(757), + [sym__block_quote_continuation] = ACTIONS(757), + [sym__block_quote_start] = ACTIONS(753), + [sym__indented_chunk_start] = ACTIONS(753), + [sym_atx_h1_marker] = ACTIONS(753), + [sym_atx_h2_marker] = ACTIONS(753), + [sym_atx_h3_marker] = ACTIONS(753), + [sym_atx_h4_marker] = ACTIONS(753), + [sym_atx_h5_marker] = ACTIONS(753), + [sym_atx_h6_marker] = ACTIONS(753), + [sym__thematic_break] = ACTIONS(753), + [sym__list_marker_minus] = ACTIONS(753), + [sym__list_marker_plus] = ACTIONS(753), + [sym__list_marker_star] = ACTIONS(753), + [sym__list_marker_parenthesis] = ACTIONS(753), + [sym__list_marker_dot] = ACTIONS(753), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(753), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(753), + [sym__list_marker_star_dont_interrupt] = ACTIONS(753), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(753), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(753), + [sym__fenced_code_block_start_backtick] = ACTIONS(753), + [sym__fenced_code_block_start_tilde] = ACTIONS(753), + [sym__blank_line_start] = ACTIONS(753), + [sym__code_span_start] = ACTIONS(753), + [sym__emphasis_open_star] = ACTIONS(753), + [sym__emphasis_open_underscore] = ACTIONS(753), + [sym__last_token_whitespace] = ACTIONS(757), }, [126] = { - [aux_sym__ignore_matching_tokens] = STATE(145), - [ts_builtin_sym_end] = ACTIONS(757), - [anon_sym_BANG] = ACTIONS(757), - [anon_sym_DQUOTE] = ACTIONS(757), - [anon_sym_POUND] = ACTIONS(757), - [anon_sym_DOLLAR] = ACTIONS(757), - [anon_sym_PERCENT] = ACTIONS(757), - [anon_sym_AMP] = ACTIONS(759), - [anon_sym_SQUOTE] = ACTIONS(757), - [anon_sym_LPAREN] = ACTIONS(757), - [anon_sym_RPAREN] = ACTIONS(757), - [anon_sym_STAR] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(757), - [anon_sym_COMMA] = ACTIONS(757), - [anon_sym_DASH] = ACTIONS(757), - [anon_sym_DOT] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(757), - [anon_sym_SEMI] = ACTIONS(757), - [anon_sym_LT] = ACTIONS(759), - [anon_sym_EQ] = ACTIONS(757), - [anon_sym_GT] = ACTIONS(757), - [anon_sym_QMARK] = ACTIONS(757), - [anon_sym_AT] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(757), - [anon_sym_BSLASH] = ACTIONS(759), - [anon_sym_RBRACK] = ACTIONS(757), - [anon_sym_CARET] = ACTIONS(757), - [anon_sym__] = ACTIONS(757), - [anon_sym_BQUOTE] = ACTIONS(757), - [anon_sym_LBRACE] = ACTIONS(757), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_RBRACE] = ACTIONS(757), - [anon_sym_TILDE] = ACTIONS(757), - [aux_sym__html_block_1_token1] = ACTIONS(757), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(759), - [anon_sym_LT_QMARK] = ACTIONS(759), - [aux_sym__html_block_4_token1] = ACTIONS(759), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(757), - [aux_sym__html_block_6_token1] = ACTIONS(759), - [aux_sym__html_block_6_token2] = ACTIONS(757), - [sym__open_tag_html_block] = ACTIONS(757), - [sym__open_tag_html_block_newline] = ACTIONS(757), - [sym__closing_tag_html_block] = ACTIONS(757), - [sym__closing_tag_html_block_newline] = ACTIONS(757), - [sym_backslash_escape] = ACTIONS(757), - [sym_entity_reference] = ACTIONS(757), - [sym_numeric_character_reference] = ACTIONS(757), - [sym_uri_autolink] = ACTIONS(757), - [sym_email_autolink] = ACTIONS(757), - [sym__whitespace_ge_2] = ACTIONS(757), - [aux_sym__whitespace_token1] = ACTIONS(759), - [sym__word_no_digit] = ACTIONS(757), - [sym__digits] = ACTIONS(757), - [aux_sym__newline_token1] = ACTIONS(757), - [sym__block_continuation] = ACTIONS(761), - [sym__block_quote_continuation] = ACTIONS(761), - [sym__block_quote_start] = ACTIONS(757), - [sym__indented_chunk_start] = ACTIONS(757), - [sym_atx_h1_marker] = ACTIONS(757), - [sym_atx_h2_marker] = ACTIONS(757), - [sym_atx_h3_marker] = ACTIONS(757), - [sym_atx_h4_marker] = ACTIONS(757), - [sym_atx_h5_marker] = ACTIONS(757), - [sym_atx_h6_marker] = ACTIONS(757), - [sym__thematic_break] = ACTIONS(757), - [sym__list_marker_minus] = ACTIONS(757), - [sym__list_marker_plus] = ACTIONS(757), - [sym__list_marker_star] = ACTIONS(757), - [sym__list_marker_parenthesis] = ACTIONS(757), - [sym__list_marker_dot] = ACTIONS(757), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(757), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(757), - [sym__list_marker_star_dont_interrupt] = ACTIONS(757), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(757), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(757), - [sym__fenced_code_block_start_backtick] = ACTIONS(757), - [sym__fenced_code_block_start_tilde] = ACTIONS(757), - [sym__blank_line_start] = ACTIONS(757), - [sym__code_span_start] = ACTIONS(757), - [sym__emphasis_open_star] = ACTIONS(757), - [sym__emphasis_open_underscore] = ACTIONS(757), - [sym__last_token_whitespace] = ACTIONS(761), + [aux_sym__ignore_matching_tokens] = STATE(201), + [ts_builtin_sym_end] = ACTIONS(733), + [anon_sym_BANG] = ACTIONS(733), + [anon_sym_DQUOTE] = ACTIONS(733), + [anon_sym_POUND] = ACTIONS(733), + [anon_sym_DOLLAR] = ACTIONS(733), + [anon_sym_PERCENT] = ACTIONS(733), + [anon_sym_AMP] = ACTIONS(735), + [anon_sym_SQUOTE] = ACTIONS(733), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_RPAREN] = ACTIONS(733), + [anon_sym_STAR] = ACTIONS(733), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_COMMA] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_DOT] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(733), + [anon_sym_COLON] = ACTIONS(733), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LT] = ACTIONS(735), + [anon_sym_EQ] = ACTIONS(733), + [anon_sym_GT] = ACTIONS(733), + [anon_sym_QMARK] = ACTIONS(733), + [anon_sym_AT] = ACTIONS(733), + [anon_sym_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH] = ACTIONS(735), + [anon_sym_RBRACK] = ACTIONS(733), + [anon_sym_CARET] = ACTIONS(733), + [anon_sym__] = ACTIONS(733), + [anon_sym_BQUOTE] = ACTIONS(733), + [anon_sym_LBRACE] = ACTIONS(733), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_RBRACE] = ACTIONS(733), + [anon_sym_TILDE] = ACTIONS(733), + [aux_sym__html_block_1_token1] = ACTIONS(733), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(735), + [anon_sym_LT_QMARK] = ACTIONS(735), + [aux_sym__html_block_4_token1] = ACTIONS(735), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(733), + [aux_sym__html_block_6_token1] = ACTIONS(735), + [aux_sym__html_block_6_token2] = ACTIONS(733), + [sym__open_tag_html_block] = ACTIONS(733), + [sym__open_tag_html_block_newline] = ACTIONS(733), + [sym__closing_tag_html_block] = ACTIONS(733), + [sym__closing_tag_html_block_newline] = ACTIONS(733), + [sym_backslash_escape] = ACTIONS(733), + [sym_entity_reference] = ACTIONS(733), + [sym_numeric_character_reference] = ACTIONS(733), + [sym_uri_autolink] = ACTIONS(733), + [sym_email_autolink] = ACTIONS(733), + [sym__whitespace_ge_2] = ACTIONS(733), + [aux_sym__whitespace_token1] = ACTIONS(735), + [sym__word_no_digit] = ACTIONS(733), + [sym__digits] = ACTIONS(733), + [aux_sym__newline_token1] = ACTIONS(733), + [sym__block_continuation] = ACTIONS(109), + [sym__block_quote_continuation] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(733), + [sym__indented_chunk_start] = ACTIONS(733), + [sym_atx_h1_marker] = ACTIONS(733), + [sym_atx_h2_marker] = ACTIONS(733), + [sym_atx_h3_marker] = ACTIONS(733), + [sym_atx_h4_marker] = ACTIONS(733), + [sym_atx_h5_marker] = ACTIONS(733), + [sym_atx_h6_marker] = ACTIONS(733), + [sym__thematic_break] = ACTIONS(733), + [sym__list_marker_minus] = ACTIONS(733), + [sym__list_marker_plus] = ACTIONS(733), + [sym__list_marker_star] = ACTIONS(733), + [sym__list_marker_parenthesis] = ACTIONS(733), + [sym__list_marker_dot] = ACTIONS(733), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(733), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(733), + [sym__list_marker_star_dont_interrupt] = ACTIONS(733), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(733), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(733), + [sym__fenced_code_block_start_backtick] = ACTIONS(733), + [sym__fenced_code_block_start_tilde] = ACTIONS(733), + [sym__blank_line_start] = ACTIONS(733), + [sym__code_span_start] = ACTIONS(733), + [sym__emphasis_open_star] = ACTIONS(733), + [sym__emphasis_open_underscore] = ACTIONS(733), + [sym__last_token_whitespace] = ACTIONS(109), }, [127] = { - [aux_sym__ignore_matching_tokens] = STATE(275), - [anon_sym_BANG] = ACTIONS(751), - [anon_sym_DQUOTE] = ACTIONS(751), - [anon_sym_POUND] = ACTIONS(751), - [anon_sym_DOLLAR] = ACTIONS(751), - [anon_sym_PERCENT] = ACTIONS(751), - [anon_sym_AMP] = ACTIONS(753), - [anon_sym_SQUOTE] = ACTIONS(751), - [anon_sym_LPAREN] = ACTIONS(751), - [anon_sym_RPAREN] = ACTIONS(751), - [anon_sym_STAR] = ACTIONS(751), - [anon_sym_PLUS] = ACTIONS(751), - [anon_sym_COMMA] = ACTIONS(751), - [anon_sym_DASH] = ACTIONS(751), - [anon_sym_DOT] = ACTIONS(751), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_COLON] = ACTIONS(751), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_LT] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(751), - [anon_sym_QMARK] = ACTIONS(751), - [anon_sym_AT] = ACTIONS(751), - [anon_sym_LBRACK] = ACTIONS(751), - [anon_sym_BSLASH] = ACTIONS(753), - [anon_sym_RBRACK] = ACTIONS(751), - [anon_sym_CARET] = ACTIONS(751), - [anon_sym__] = ACTIONS(751), - [anon_sym_BQUOTE] = ACTIONS(751), - [anon_sym_LBRACE] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_RBRACE] = ACTIONS(751), - [anon_sym_TILDE] = ACTIONS(751), - [aux_sym__html_block_1_token1] = ACTIONS(751), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(753), - [anon_sym_LT_QMARK] = ACTIONS(753), - [aux_sym__html_block_4_token1] = ACTIONS(753), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(751), - [aux_sym__html_block_6_token1] = ACTIONS(753), - [aux_sym__html_block_6_token2] = ACTIONS(751), - [sym__open_tag_html_block] = ACTIONS(751), - [sym__open_tag_html_block_newline] = ACTIONS(751), - [sym__closing_tag_html_block] = ACTIONS(751), - [sym__closing_tag_html_block_newline] = ACTIONS(751), - [sym_backslash_escape] = ACTIONS(751), - [sym_entity_reference] = ACTIONS(751), - [sym_numeric_character_reference] = ACTIONS(751), - [sym_uri_autolink] = ACTIONS(751), - [sym_email_autolink] = ACTIONS(751), - [sym__whitespace_ge_2] = ACTIONS(751), - [aux_sym__whitespace_token1] = ACTIONS(753), - [sym__word_no_digit] = ACTIONS(751), - [sym__digits] = ACTIONS(751), - [aux_sym__newline_token1] = ACTIONS(751), - [sym__block_close] = ACTIONS(751), - [sym__block_continuation] = ACTIONS(125), - [sym__block_quote_continuation] = ACTIONS(125), - [sym__block_quote_start] = ACTIONS(751), - [sym__indented_chunk_start] = ACTIONS(751), - [sym_atx_h1_marker] = ACTIONS(751), - [sym_atx_h2_marker] = ACTIONS(751), - [sym_atx_h3_marker] = ACTIONS(751), - [sym_atx_h4_marker] = ACTIONS(751), - [sym_atx_h5_marker] = ACTIONS(751), - [sym_atx_h6_marker] = ACTIONS(751), - [sym__thematic_break] = ACTIONS(751), - [sym__list_marker_minus] = ACTIONS(751), - [sym__list_marker_plus] = ACTIONS(751), - [sym__list_marker_star] = ACTIONS(751), - [sym__list_marker_parenthesis] = ACTIONS(751), - [sym__list_marker_dot] = ACTIONS(751), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(751), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(751), - [sym__list_marker_star_dont_interrupt] = ACTIONS(751), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(751), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(751), - [sym__fenced_code_block_start_backtick] = ACTIONS(751), - [sym__fenced_code_block_start_tilde] = ACTIONS(751), - [sym__blank_line_start] = ACTIONS(751), - [sym__code_span_start] = ACTIONS(751), - [sym__emphasis_open_star] = ACTIONS(751), - [sym__emphasis_open_underscore] = ACTIONS(751), - [sym__last_token_whitespace] = ACTIONS(125), + [aux_sym__ignore_matching_tokens] = STATE(176), + [ts_builtin_sym_end] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(759), + [anon_sym_POUND] = ACTIONS(759), + [anon_sym_DOLLAR] = ACTIONS(759), + [anon_sym_PERCENT] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(761), + [anon_sym_SQUOTE] = ACTIONS(759), + [anon_sym_LPAREN] = ACTIONS(759), + [anon_sym_RPAREN] = ACTIONS(759), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_COMMA] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(759), + [anon_sym_DOT] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_COLON] = ACTIONS(759), + [anon_sym_SEMI] = ACTIONS(759), + [anon_sym_LT] = ACTIONS(761), + [anon_sym_EQ] = ACTIONS(759), + [anon_sym_GT] = ACTIONS(759), + [anon_sym_QMARK] = ACTIONS(759), + [anon_sym_AT] = ACTIONS(759), + [anon_sym_LBRACK] = ACTIONS(759), + [anon_sym_BSLASH] = ACTIONS(761), + [anon_sym_RBRACK] = ACTIONS(759), + [anon_sym_CARET] = ACTIONS(759), + [anon_sym__] = ACTIONS(759), + [anon_sym_BQUOTE] = ACTIONS(759), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_PIPE] = ACTIONS(759), + [anon_sym_RBRACE] = ACTIONS(759), + [anon_sym_TILDE] = ACTIONS(759), + [aux_sym__html_block_1_token1] = ACTIONS(759), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(761), + [anon_sym_LT_QMARK] = ACTIONS(761), + [aux_sym__html_block_4_token1] = ACTIONS(761), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(759), + [aux_sym__html_block_6_token1] = ACTIONS(761), + [aux_sym__html_block_6_token2] = ACTIONS(759), + [sym__open_tag_html_block] = ACTIONS(759), + [sym__open_tag_html_block_newline] = ACTIONS(759), + [sym__closing_tag_html_block] = ACTIONS(759), + [sym__closing_tag_html_block_newline] = ACTIONS(759), + [sym_backslash_escape] = ACTIONS(759), + [sym_entity_reference] = ACTIONS(759), + [sym_numeric_character_reference] = ACTIONS(759), + [sym_uri_autolink] = ACTIONS(759), + [sym_email_autolink] = ACTIONS(759), + [sym__whitespace_ge_2] = ACTIONS(759), + [aux_sym__whitespace_token1] = ACTIONS(761), + [sym__word_no_digit] = ACTIONS(759), + [sym__digits] = ACTIONS(759), + [aux_sym__newline_token1] = ACTIONS(759), + [sym__block_continuation] = ACTIONS(763), + [sym__block_quote_continuation] = ACTIONS(763), + [sym__block_quote_start] = ACTIONS(759), + [sym__indented_chunk_start] = ACTIONS(759), + [sym_atx_h1_marker] = ACTIONS(759), + [sym_atx_h2_marker] = ACTIONS(759), + [sym_atx_h3_marker] = ACTIONS(759), + [sym_atx_h4_marker] = ACTIONS(759), + [sym_atx_h5_marker] = ACTIONS(759), + [sym_atx_h6_marker] = ACTIONS(759), + [sym__thematic_break] = ACTIONS(759), + [sym__list_marker_minus] = ACTIONS(759), + [sym__list_marker_plus] = ACTIONS(759), + [sym__list_marker_star] = ACTIONS(759), + [sym__list_marker_parenthesis] = ACTIONS(759), + [sym__list_marker_dot] = ACTIONS(759), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(759), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(759), + [sym__list_marker_star_dont_interrupt] = ACTIONS(759), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(759), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(759), + [sym__fenced_code_block_start_backtick] = ACTIONS(759), + [sym__fenced_code_block_start_tilde] = ACTIONS(759), + [sym__blank_line_start] = ACTIONS(759), + [sym__code_span_start] = ACTIONS(759), + [sym__emphasis_open_star] = ACTIONS(759), + [sym__emphasis_open_underscore] = ACTIONS(759), + [sym__last_token_whitespace] = ACTIONS(763), }, [128] = { - [aux_sym__ignore_matching_tokens] = STATE(117), - [anon_sym_BANG] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_POUND] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(763), - [anon_sym_PERCENT] = ACTIONS(763), - [anon_sym_AMP] = ACTIONS(765), - [anon_sym_SQUOTE] = ACTIONS(763), - [anon_sym_LPAREN] = ACTIONS(763), - [anon_sym_RPAREN] = ACTIONS(763), - [anon_sym_STAR] = ACTIONS(763), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_COMMA] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_DOT] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(763), - [anon_sym_COLON] = ACTIONS(763), - [anon_sym_SEMI] = ACTIONS(763), - [anon_sym_LT] = ACTIONS(765), - [anon_sym_EQ] = ACTIONS(763), - [anon_sym_GT] = ACTIONS(763), - [anon_sym_QMARK] = ACTIONS(763), - [anon_sym_AT] = ACTIONS(763), - [anon_sym_LBRACK] = ACTIONS(763), - [anon_sym_BSLASH] = ACTIONS(765), - [anon_sym_RBRACK] = ACTIONS(763), - [anon_sym_CARET] = ACTIONS(763), - [anon_sym__] = ACTIONS(763), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LBRACE] = ACTIONS(763), - [anon_sym_PIPE] = ACTIONS(763), - [anon_sym_RBRACE] = ACTIONS(763), - [anon_sym_TILDE] = ACTIONS(763), - [aux_sym__html_block_1_token1] = ACTIONS(763), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(765), - [anon_sym_LT_QMARK] = ACTIONS(765), - [aux_sym__html_block_4_token1] = ACTIONS(765), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(763), - [aux_sym__html_block_6_token1] = ACTIONS(765), - [aux_sym__html_block_6_token2] = ACTIONS(763), - [sym__open_tag_html_block] = ACTIONS(763), - [sym__open_tag_html_block_newline] = ACTIONS(763), - [sym__closing_tag_html_block] = ACTIONS(763), - [sym__closing_tag_html_block_newline] = ACTIONS(763), - [sym_backslash_escape] = ACTIONS(763), - [sym_entity_reference] = ACTIONS(763), - [sym_numeric_character_reference] = ACTIONS(763), - [sym_uri_autolink] = ACTIONS(763), - [sym_email_autolink] = ACTIONS(763), - [sym__whitespace_ge_2] = ACTIONS(763), - [aux_sym__whitespace_token1] = ACTIONS(765), - [sym__word_no_digit] = ACTIONS(763), - [sym__digits] = ACTIONS(763), - [aux_sym__newline_token1] = ACTIONS(763), - [sym__block_close] = ACTIONS(763), - [sym__block_continuation] = ACTIONS(767), - [sym__block_quote_continuation] = ACTIONS(767), - [sym__block_quote_start] = ACTIONS(763), - [sym__indented_chunk_start] = ACTIONS(763), - [sym_atx_h1_marker] = ACTIONS(763), - [sym_atx_h2_marker] = ACTIONS(763), - [sym_atx_h3_marker] = ACTIONS(763), - [sym_atx_h4_marker] = ACTIONS(763), - [sym_atx_h5_marker] = ACTIONS(763), - [sym_atx_h6_marker] = ACTIONS(763), - [sym__thematic_break] = ACTIONS(763), - [sym__list_marker_minus] = ACTIONS(763), - [sym__list_marker_plus] = ACTIONS(763), - [sym__list_marker_star] = ACTIONS(763), - [sym__list_marker_parenthesis] = ACTIONS(763), - [sym__list_marker_dot] = ACTIONS(763), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(763), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(763), - [sym__list_marker_star_dont_interrupt] = ACTIONS(763), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(763), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(763), - [sym__fenced_code_block_start_backtick] = ACTIONS(763), - [sym__fenced_code_block_start_tilde] = ACTIONS(763), - [sym__blank_line_start] = ACTIONS(763), - [sym__code_span_start] = ACTIONS(763), - [sym__emphasis_open_star] = ACTIONS(763), - [sym__emphasis_open_underscore] = ACTIONS(763), - [sym__last_token_whitespace] = ACTIONS(767), + [aux_sym__ignore_matching_tokens] = STATE(201), + [ts_builtin_sym_end] = ACTIONS(759), + [anon_sym_BANG] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(759), + [anon_sym_POUND] = ACTIONS(759), + [anon_sym_DOLLAR] = ACTIONS(759), + [anon_sym_PERCENT] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(761), + [anon_sym_SQUOTE] = ACTIONS(759), + [anon_sym_LPAREN] = ACTIONS(759), + [anon_sym_RPAREN] = ACTIONS(759), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_COMMA] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(759), + [anon_sym_DOT] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_COLON] = ACTIONS(759), + [anon_sym_SEMI] = ACTIONS(759), + [anon_sym_LT] = ACTIONS(761), + [anon_sym_EQ] = ACTIONS(759), + [anon_sym_GT] = ACTIONS(759), + [anon_sym_QMARK] = ACTIONS(759), + [anon_sym_AT] = ACTIONS(759), + [anon_sym_LBRACK] = ACTIONS(759), + [anon_sym_BSLASH] = ACTIONS(761), + [anon_sym_RBRACK] = ACTIONS(759), + [anon_sym_CARET] = ACTIONS(759), + [anon_sym__] = ACTIONS(759), + [anon_sym_BQUOTE] = ACTIONS(759), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_PIPE] = ACTIONS(759), + [anon_sym_RBRACE] = ACTIONS(759), + [anon_sym_TILDE] = ACTIONS(759), + [aux_sym__html_block_1_token1] = ACTIONS(759), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(761), + [anon_sym_LT_QMARK] = ACTIONS(761), + [aux_sym__html_block_4_token1] = ACTIONS(761), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(759), + [aux_sym__html_block_6_token1] = ACTIONS(761), + [aux_sym__html_block_6_token2] = ACTIONS(759), + [sym__open_tag_html_block] = ACTIONS(759), + [sym__open_tag_html_block_newline] = ACTIONS(759), + [sym__closing_tag_html_block] = ACTIONS(759), + [sym__closing_tag_html_block_newline] = ACTIONS(759), + [sym_backslash_escape] = ACTIONS(759), + [sym_entity_reference] = ACTIONS(759), + [sym_numeric_character_reference] = ACTIONS(759), + [sym_uri_autolink] = ACTIONS(759), + [sym_email_autolink] = ACTIONS(759), + [sym__whitespace_ge_2] = ACTIONS(759), + [aux_sym__whitespace_token1] = ACTIONS(761), + [sym__word_no_digit] = ACTIONS(759), + [sym__digits] = ACTIONS(759), + [aux_sym__newline_token1] = ACTIONS(759), + [sym__block_continuation] = ACTIONS(109), + [sym__block_quote_continuation] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(759), + [sym__indented_chunk_start] = ACTIONS(759), + [sym_atx_h1_marker] = ACTIONS(759), + [sym_atx_h2_marker] = ACTIONS(759), + [sym_atx_h3_marker] = ACTIONS(759), + [sym_atx_h4_marker] = ACTIONS(759), + [sym_atx_h5_marker] = ACTIONS(759), + [sym_atx_h6_marker] = ACTIONS(759), + [sym__thematic_break] = ACTIONS(759), + [sym__list_marker_minus] = ACTIONS(759), + [sym__list_marker_plus] = ACTIONS(759), + [sym__list_marker_star] = ACTIONS(759), + [sym__list_marker_parenthesis] = ACTIONS(759), + [sym__list_marker_dot] = ACTIONS(759), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(759), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(759), + [sym__list_marker_star_dont_interrupt] = ACTIONS(759), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(759), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(759), + [sym__fenced_code_block_start_backtick] = ACTIONS(759), + [sym__fenced_code_block_start_tilde] = ACTIONS(759), + [sym__blank_line_start] = ACTIONS(759), + [sym__code_span_start] = ACTIONS(759), + [sym__emphasis_open_star] = ACTIONS(759), + [sym__emphasis_open_underscore] = ACTIONS(759), + [sym__last_token_whitespace] = ACTIONS(109), }, [129] = { - [aux_sym__ignore_matching_tokens] = STATE(275), - [anon_sym_BANG] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_POUND] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(763), - [anon_sym_PERCENT] = ACTIONS(763), - [anon_sym_AMP] = ACTIONS(765), - [anon_sym_SQUOTE] = ACTIONS(763), - [anon_sym_LPAREN] = ACTIONS(763), - [anon_sym_RPAREN] = ACTIONS(763), - [anon_sym_STAR] = ACTIONS(763), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_COMMA] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_DOT] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(763), - [anon_sym_COLON] = ACTIONS(763), - [anon_sym_SEMI] = ACTIONS(763), - [anon_sym_LT] = ACTIONS(765), - [anon_sym_EQ] = ACTIONS(763), - [anon_sym_GT] = ACTIONS(763), - [anon_sym_QMARK] = ACTIONS(763), - [anon_sym_AT] = ACTIONS(763), - [anon_sym_LBRACK] = ACTIONS(763), - [anon_sym_BSLASH] = ACTIONS(765), - [anon_sym_RBRACK] = ACTIONS(763), - [anon_sym_CARET] = ACTIONS(763), - [anon_sym__] = ACTIONS(763), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LBRACE] = ACTIONS(763), - [anon_sym_PIPE] = ACTIONS(763), - [anon_sym_RBRACE] = ACTIONS(763), - [anon_sym_TILDE] = ACTIONS(763), - [aux_sym__html_block_1_token1] = ACTIONS(763), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(765), - [anon_sym_LT_QMARK] = ACTIONS(765), - [aux_sym__html_block_4_token1] = ACTIONS(765), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(763), - [aux_sym__html_block_6_token1] = ACTIONS(765), - [aux_sym__html_block_6_token2] = ACTIONS(763), - [sym__open_tag_html_block] = ACTIONS(763), - [sym__open_tag_html_block_newline] = ACTIONS(763), - [sym__closing_tag_html_block] = ACTIONS(763), - [sym__closing_tag_html_block_newline] = ACTIONS(763), - [sym_backslash_escape] = ACTIONS(763), - [sym_entity_reference] = ACTIONS(763), - [sym_numeric_character_reference] = ACTIONS(763), - [sym_uri_autolink] = ACTIONS(763), - [sym_email_autolink] = ACTIONS(763), - [sym__whitespace_ge_2] = ACTIONS(763), - [aux_sym__whitespace_token1] = ACTIONS(765), - [sym__word_no_digit] = ACTIONS(763), - [sym__digits] = ACTIONS(763), - [aux_sym__newline_token1] = ACTIONS(763), - [sym__block_close] = ACTIONS(763), - [sym__block_continuation] = ACTIONS(125), - [sym__block_quote_continuation] = ACTIONS(125), - [sym__block_quote_start] = ACTIONS(763), - [sym__indented_chunk_start] = ACTIONS(763), - [sym_atx_h1_marker] = ACTIONS(763), - [sym_atx_h2_marker] = ACTIONS(763), - [sym_atx_h3_marker] = ACTIONS(763), - [sym_atx_h4_marker] = ACTIONS(763), - [sym_atx_h5_marker] = ACTIONS(763), - [sym_atx_h6_marker] = ACTIONS(763), - [sym__thematic_break] = ACTIONS(763), - [sym__list_marker_minus] = ACTIONS(763), - [sym__list_marker_plus] = ACTIONS(763), - [sym__list_marker_star] = ACTIONS(763), - [sym__list_marker_parenthesis] = ACTIONS(763), - [sym__list_marker_dot] = ACTIONS(763), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(763), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(763), - [sym__list_marker_star_dont_interrupt] = ACTIONS(763), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(763), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(763), - [sym__fenced_code_block_start_backtick] = ACTIONS(763), - [sym__fenced_code_block_start_tilde] = ACTIONS(763), - [sym__blank_line_start] = ACTIONS(763), - [sym__code_span_start] = ACTIONS(763), - [sym__emphasis_open_star] = ACTIONS(763), - [sym__emphasis_open_underscore] = ACTIONS(763), - [sym__last_token_whitespace] = ACTIONS(125), + [aux_sym__ignore_matching_tokens] = STATE(170), + [ts_builtin_sym_end] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(765), + [anon_sym_DOLLAR] = ACTIONS(765), + [anon_sym_PERCENT] = ACTIONS(765), + [anon_sym_AMP] = ACTIONS(767), + [anon_sym_SQUOTE] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(765), + [anon_sym_RPAREN] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_COMMA] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DOT] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(765), + [anon_sym_COLON] = ACTIONS(765), + [anon_sym_SEMI] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_EQ] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(765), + [anon_sym_QMARK] = ACTIONS(765), + [anon_sym_AT] = ACTIONS(765), + [anon_sym_LBRACK] = ACTIONS(765), + [anon_sym_BSLASH] = ACTIONS(767), + [anon_sym_RBRACK] = ACTIONS(765), + [anon_sym_CARET] = ACTIONS(765), + [anon_sym__] = ACTIONS(765), + [anon_sym_BQUOTE] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(765), + [anon_sym_PIPE] = ACTIONS(765), + [anon_sym_RBRACE] = ACTIONS(765), + [anon_sym_TILDE] = ACTIONS(765), + [aux_sym__html_block_1_token1] = ACTIONS(765), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(767), + [anon_sym_LT_QMARK] = ACTIONS(767), + [aux_sym__html_block_4_token1] = ACTIONS(767), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(765), + [aux_sym__html_block_6_token1] = ACTIONS(767), + [aux_sym__html_block_6_token2] = ACTIONS(765), + [sym__open_tag_html_block] = ACTIONS(765), + [sym__open_tag_html_block_newline] = ACTIONS(765), + [sym__closing_tag_html_block] = ACTIONS(765), + [sym__closing_tag_html_block_newline] = ACTIONS(765), + [sym_backslash_escape] = ACTIONS(765), + [sym_entity_reference] = ACTIONS(765), + [sym_numeric_character_reference] = ACTIONS(765), + [sym_uri_autolink] = ACTIONS(765), + [sym_email_autolink] = ACTIONS(765), + [sym__whitespace_ge_2] = ACTIONS(765), + [aux_sym__whitespace_token1] = ACTIONS(767), + [sym__word_no_digit] = ACTIONS(765), + [sym__digits] = ACTIONS(765), + [aux_sym__newline_token1] = ACTIONS(765), + [sym__block_continuation] = ACTIONS(769), + [sym__block_quote_continuation] = ACTIONS(769), + [sym__block_quote_start] = ACTIONS(765), + [sym__indented_chunk_start] = ACTIONS(765), + [sym_atx_h1_marker] = ACTIONS(765), + [sym_atx_h2_marker] = ACTIONS(765), + [sym_atx_h3_marker] = ACTIONS(765), + [sym_atx_h4_marker] = ACTIONS(765), + [sym_atx_h5_marker] = ACTIONS(765), + [sym_atx_h6_marker] = ACTIONS(765), + [sym__thematic_break] = ACTIONS(765), + [sym__list_marker_minus] = ACTIONS(765), + [sym__list_marker_plus] = ACTIONS(765), + [sym__list_marker_star] = ACTIONS(765), + [sym__list_marker_parenthesis] = ACTIONS(765), + [sym__list_marker_dot] = ACTIONS(765), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(765), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(765), + [sym__list_marker_star_dont_interrupt] = ACTIONS(765), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(765), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(765), + [sym__fenced_code_block_start_backtick] = ACTIONS(765), + [sym__fenced_code_block_start_tilde] = ACTIONS(765), + [sym__blank_line_start] = ACTIONS(765), + [sym__code_span_start] = ACTIONS(765), + [sym__emphasis_open_star] = ACTIONS(765), + [sym__emphasis_open_underscore] = ACTIONS(765), + [sym__last_token_whitespace] = ACTIONS(769), }, [130] = { - [aux_sym__ignore_matching_tokens] = STATE(202), - [ts_builtin_sym_end] = ACTIONS(757), - [anon_sym_BANG] = ACTIONS(757), - [anon_sym_DQUOTE] = ACTIONS(757), - [anon_sym_POUND] = ACTIONS(757), - [anon_sym_DOLLAR] = ACTIONS(757), - [anon_sym_PERCENT] = ACTIONS(757), - [anon_sym_AMP] = ACTIONS(759), - [anon_sym_SQUOTE] = ACTIONS(757), - [anon_sym_LPAREN] = ACTIONS(757), - [anon_sym_RPAREN] = ACTIONS(757), - [anon_sym_STAR] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(757), - [anon_sym_COMMA] = ACTIONS(757), - [anon_sym_DASH] = ACTIONS(757), - [anon_sym_DOT] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(757), - [anon_sym_SEMI] = ACTIONS(757), - [anon_sym_LT] = ACTIONS(759), - [anon_sym_EQ] = ACTIONS(757), - [anon_sym_GT] = ACTIONS(757), - [anon_sym_QMARK] = ACTIONS(757), - [anon_sym_AT] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(757), - [anon_sym_BSLASH] = ACTIONS(759), - [anon_sym_RBRACK] = ACTIONS(757), - [anon_sym_CARET] = ACTIONS(757), - [anon_sym__] = ACTIONS(757), - [anon_sym_BQUOTE] = ACTIONS(757), - [anon_sym_LBRACE] = ACTIONS(757), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_RBRACE] = ACTIONS(757), - [anon_sym_TILDE] = ACTIONS(757), - [aux_sym__html_block_1_token1] = ACTIONS(757), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(759), - [anon_sym_LT_QMARK] = ACTIONS(759), - [aux_sym__html_block_4_token1] = ACTIONS(759), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(757), - [aux_sym__html_block_6_token1] = ACTIONS(759), - [aux_sym__html_block_6_token2] = ACTIONS(757), - [sym__open_tag_html_block] = ACTIONS(757), - [sym__open_tag_html_block_newline] = ACTIONS(757), - [sym__closing_tag_html_block] = ACTIONS(757), - [sym__closing_tag_html_block_newline] = ACTIONS(757), - [sym_backslash_escape] = ACTIONS(757), - [sym_entity_reference] = ACTIONS(757), - [sym_numeric_character_reference] = ACTIONS(757), - [sym_uri_autolink] = ACTIONS(757), - [sym_email_autolink] = ACTIONS(757), - [sym__whitespace_ge_2] = ACTIONS(757), - [aux_sym__whitespace_token1] = ACTIONS(759), - [sym__word_no_digit] = ACTIONS(757), - [sym__digits] = ACTIONS(757), - [aux_sym__newline_token1] = ACTIONS(757), - [sym__block_continuation] = ACTIONS(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(757), - [sym__indented_chunk_start] = ACTIONS(757), - [sym_atx_h1_marker] = ACTIONS(757), - [sym_atx_h2_marker] = ACTIONS(757), - [sym_atx_h3_marker] = ACTIONS(757), - [sym_atx_h4_marker] = ACTIONS(757), - [sym_atx_h5_marker] = ACTIONS(757), - [sym_atx_h6_marker] = ACTIONS(757), - [sym__thematic_break] = ACTIONS(757), - [sym__list_marker_minus] = ACTIONS(757), - [sym__list_marker_plus] = ACTIONS(757), - [sym__list_marker_star] = ACTIONS(757), - [sym__list_marker_parenthesis] = ACTIONS(757), - [sym__list_marker_dot] = ACTIONS(757), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(757), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(757), - [sym__list_marker_star_dont_interrupt] = ACTIONS(757), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(757), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(757), - [sym__fenced_code_block_start_backtick] = ACTIONS(757), - [sym__fenced_code_block_start_tilde] = ACTIONS(757), - [sym__blank_line_start] = ACTIONS(757), - [sym__code_span_start] = ACTIONS(757), - [sym__emphasis_open_star] = ACTIONS(757), - [sym__emphasis_open_underscore] = ACTIONS(757), - [sym__last_token_whitespace] = ACTIONS(111), + [aux_sym__ignore_matching_tokens] = STATE(201), + [ts_builtin_sym_end] = ACTIONS(765), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(765), + [anon_sym_DOLLAR] = ACTIONS(765), + [anon_sym_PERCENT] = ACTIONS(765), + [anon_sym_AMP] = ACTIONS(767), + [anon_sym_SQUOTE] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(765), + [anon_sym_RPAREN] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_COMMA] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DOT] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(765), + [anon_sym_COLON] = ACTIONS(765), + [anon_sym_SEMI] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_EQ] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(765), + [anon_sym_QMARK] = ACTIONS(765), + [anon_sym_AT] = ACTIONS(765), + [anon_sym_LBRACK] = ACTIONS(765), + [anon_sym_BSLASH] = ACTIONS(767), + [anon_sym_RBRACK] = ACTIONS(765), + [anon_sym_CARET] = ACTIONS(765), + [anon_sym__] = ACTIONS(765), + [anon_sym_BQUOTE] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(765), + [anon_sym_PIPE] = ACTIONS(765), + [anon_sym_RBRACE] = ACTIONS(765), + [anon_sym_TILDE] = ACTIONS(765), + [aux_sym__html_block_1_token1] = ACTIONS(765), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(767), + [anon_sym_LT_QMARK] = ACTIONS(767), + [aux_sym__html_block_4_token1] = ACTIONS(767), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(765), + [aux_sym__html_block_6_token1] = ACTIONS(767), + [aux_sym__html_block_6_token2] = ACTIONS(765), + [sym__open_tag_html_block] = ACTIONS(765), + [sym__open_tag_html_block_newline] = ACTIONS(765), + [sym__closing_tag_html_block] = ACTIONS(765), + [sym__closing_tag_html_block_newline] = ACTIONS(765), + [sym_backslash_escape] = ACTIONS(765), + [sym_entity_reference] = ACTIONS(765), + [sym_numeric_character_reference] = ACTIONS(765), + [sym_uri_autolink] = ACTIONS(765), + [sym_email_autolink] = ACTIONS(765), + [sym__whitespace_ge_2] = ACTIONS(765), + [aux_sym__whitespace_token1] = ACTIONS(767), + [sym__word_no_digit] = ACTIONS(765), + [sym__digits] = ACTIONS(765), + [aux_sym__newline_token1] = ACTIONS(765), + [sym__block_continuation] = ACTIONS(109), + [sym__block_quote_continuation] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(765), + [sym__indented_chunk_start] = ACTIONS(765), + [sym_atx_h1_marker] = ACTIONS(765), + [sym_atx_h2_marker] = ACTIONS(765), + [sym_atx_h3_marker] = ACTIONS(765), + [sym_atx_h4_marker] = ACTIONS(765), + [sym_atx_h5_marker] = ACTIONS(765), + [sym_atx_h6_marker] = ACTIONS(765), + [sym__thematic_break] = ACTIONS(765), + [sym__list_marker_minus] = ACTIONS(765), + [sym__list_marker_plus] = ACTIONS(765), + [sym__list_marker_star] = ACTIONS(765), + [sym__list_marker_parenthesis] = ACTIONS(765), + [sym__list_marker_dot] = ACTIONS(765), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(765), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(765), + [sym__list_marker_star_dont_interrupt] = ACTIONS(765), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(765), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(765), + [sym__fenced_code_block_start_backtick] = ACTIONS(765), + [sym__fenced_code_block_start_tilde] = ACTIONS(765), + [sym__blank_line_start] = ACTIONS(765), + [sym__code_span_start] = ACTIONS(765), + [sym__emphasis_open_star] = ACTIONS(765), + [sym__emphasis_open_underscore] = ACTIONS(765), + [sym__last_token_whitespace] = ACTIONS(109), }, [131] = { - [sym__soft_line_break] = STATE(258), - [sym__link_text] = STATE(2133), - [sym__link_text_non_empty] = STATE(795), - [sym_shortcut_link] = STATE(258), - [sym_full_reference_link] = STATE(258), - [sym_collapsed_reference_link] = STATE(258), - [sym_inline_link] = STATE(258), - [sym_image] = STATE(258), - [sym__image_inline_link] = STATE(801), - [sym__image_shortcut_link] = STATE(801), - [sym__image_full_reference_link] = STATE(801), - [sym__image_collapsed_reference_link] = STATE(801), - [sym__image_description] = STATE(2122), - [sym__image_description_non_empty] = STATE(802), - [sym_html_tag] = STATE(258), - [sym__open_tag] = STATE(683), - [sym__closing_tag] = STATE(683), - [sym__html_comment] = STATE(683), - [sym__processing_instruction] = STATE(683), - [sym__declaration] = STATE(683), - [sym__cdata_section] = STATE(683), - [sym_hard_line_break] = STATE(258), - [sym__whitespace] = STATE(258), - [sym__word] = STATE(258), - [sym__newline] = STATE(2123), - [sym__inline_element_no_underscore] = STATE(258), - [aux_sym__inline_no_underscore] = STATE(258), - [sym__text_inline_no_underscore] = STATE(258), - [sym__emphasis_star] = STATE(761), - [sym__strong_emphasis_star] = STATE(258), - [sym__emphasis_underscore] = STATE(761), - [sym__strong_emphasis_underscore] = STATE(258), - [sym__code_span] = STATE(258), - [anon_sym_BANG] = ACTIONS(711), - [anon_sym_DQUOTE] = ACTIONS(713), - [anon_sym_POUND] = ACTIONS(713), - [anon_sym_DOLLAR] = ACTIONS(713), - [anon_sym_PERCENT] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(713), - [anon_sym_LPAREN] = ACTIONS(713), - [anon_sym_RPAREN] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(713), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_COMMA] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_DOT] = ACTIONS(713), - [anon_sym_SLASH] = ACTIONS(713), - [anon_sym_COLON] = ACTIONS(713), - [anon_sym_SEMI] = ACTIONS(713), - [anon_sym_LT] = ACTIONS(717), - [anon_sym_EQ] = ACTIONS(713), - [anon_sym_GT] = ACTIONS(713), - [anon_sym_QMARK] = ACTIONS(713), - [anon_sym_AT] = ACTIONS(713), - [anon_sym_LBRACK] = ACTIONS(719), - [anon_sym_BSLASH] = ACTIONS(721), - [anon_sym_RBRACK] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym__] = ACTIONS(713), - [anon_sym_BQUOTE] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(713), - [anon_sym_PIPE] = ACTIONS(713), - [anon_sym_RBRACE] = ACTIONS(713), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(723), - [anon_sym_LT_QMARK] = ACTIONS(725), - [aux_sym__html_block_4_token1] = ACTIONS(727), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(729), - [sym_backslash_escape] = ACTIONS(731), - [sym_entity_reference] = ACTIONS(731), - [sym_numeric_character_reference] = ACTIONS(731), - [sym_uri_autolink] = ACTIONS(731), - [sym_email_autolink] = ACTIONS(731), - [sym__whitespace_ge_2] = ACTIONS(733), - [aux_sym__whitespace_token1] = ACTIONS(735), - [sym__word_no_digit] = ACTIONS(731), - [sym__digits] = ACTIONS(731), - [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(737), - [sym__emphasis_open_star] = ACTIONS(739), - [sym__emphasis_open_underscore] = ACTIONS(741), - [sym__emphasis_close_underscore] = ACTIONS(769), + [aux_sym__ignore_matching_tokens] = STATE(138), + [anon_sym_BANG] = ACTIONS(389), + [anon_sym_DQUOTE] = ACTIONS(389), + [anon_sym_POUND] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(391), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_RPAREN] = ACTIONS(389), + [anon_sym_STAR] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_COMMA] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_DOT] = ACTIONS(389), + [anon_sym_SLASH] = ACTIONS(389), + [anon_sym_COLON] = ACTIONS(389), + [anon_sym_SEMI] = ACTIONS(389), + [anon_sym_LT] = ACTIONS(391), + [anon_sym_EQ] = ACTIONS(389), + [anon_sym_GT] = ACTIONS(389), + [anon_sym_QMARK] = ACTIONS(389), + [anon_sym_AT] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_BSLASH] = ACTIONS(391), + [anon_sym_RBRACK] = ACTIONS(389), + [anon_sym_CARET] = ACTIONS(389), + [anon_sym__] = ACTIONS(389), + [anon_sym_BQUOTE] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_PIPE] = ACTIONS(389), + [anon_sym_RBRACE] = ACTIONS(389), + [anon_sym_TILDE] = ACTIONS(389), + [aux_sym__html_block_1_token1] = ACTIONS(389), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(391), + [anon_sym_LT_QMARK] = ACTIONS(391), + [aux_sym__html_block_4_token1] = ACTIONS(391), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(389), + [aux_sym__html_block_6_token1] = ACTIONS(391), + [aux_sym__html_block_6_token2] = ACTIONS(389), + [sym__open_tag_html_block] = ACTIONS(389), + [sym__open_tag_html_block_newline] = ACTIONS(389), + [sym__closing_tag_html_block] = ACTIONS(389), + [sym__closing_tag_html_block_newline] = ACTIONS(389), + [sym_backslash_escape] = ACTIONS(389), + [sym_entity_reference] = ACTIONS(389), + [sym_numeric_character_reference] = ACTIONS(389), + [sym_uri_autolink] = ACTIONS(389), + [sym_email_autolink] = ACTIONS(389), + [sym__whitespace_ge_2] = ACTIONS(389), + [aux_sym__whitespace_token1] = ACTIONS(391), + [sym__word_no_digit] = ACTIONS(389), + [sym__digits] = ACTIONS(389), + [aux_sym__newline_token1] = ACTIONS(389), + [sym__block_close] = ACTIONS(389), + [sym__block_continuation] = ACTIONS(771), + [sym__block_quote_continuation] = ACTIONS(771), + [sym__block_quote_start] = ACTIONS(389), + [sym__indented_chunk_start] = ACTIONS(389), + [sym_atx_h1_marker] = ACTIONS(389), + [sym_atx_h2_marker] = ACTIONS(389), + [sym_atx_h3_marker] = ACTIONS(389), + [sym_atx_h4_marker] = ACTIONS(389), + [sym_atx_h5_marker] = ACTIONS(389), + [sym_atx_h6_marker] = ACTIONS(389), + [sym__thematic_break] = ACTIONS(389), + [sym__list_marker_minus] = ACTIONS(389), + [sym__list_marker_plus] = ACTIONS(389), + [sym__list_marker_star] = ACTIONS(389), + [sym__list_marker_parenthesis] = ACTIONS(389), + [sym__list_marker_dot] = ACTIONS(389), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(389), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(389), + [sym__list_marker_star_dont_interrupt] = ACTIONS(389), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(389), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(389), + [sym__fenced_code_block_start_backtick] = ACTIONS(389), + [sym__fenced_code_block_start_tilde] = ACTIONS(389), + [sym__blank_line_start] = ACTIONS(389), + [sym__code_span_start] = ACTIONS(389), + [sym__emphasis_open_star] = ACTIONS(389), + [sym__emphasis_open_underscore] = ACTIONS(389), + [sym__last_token_whitespace] = ACTIONS(771), }, [132] = { - [sym__soft_line_break] = STATE(254), - [sym__link_text] = STATE(2135), - [sym__link_text_non_empty] = STATE(707), - [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(708), - [sym__image_shortcut_link] = STATE(708), - [sym__image_full_reference_link] = STATE(708), - [sym__image_collapsed_reference_link] = STATE(708), - [sym__image_description] = STATE(2137), - [sym__image_description_non_empty] = STATE(709), - [sym_html_tag] = STATE(254), - [sym__open_tag] = STATE(710), - [sym__closing_tag] = STATE(710), - [sym__html_comment] = STATE(710), - [sym__processing_instruction] = STATE(710), - [sym__declaration] = STATE(710), - [sym__cdata_section] = STATE(710), - [sym_hard_line_break] = STATE(254), - [sym__whitespace] = STATE(254), - [sym__word] = STATE(254), - [sym__newline] = STATE(2120), - [sym__inline_element_no_star] = STATE(254), - [aux_sym__inline_no_star] = STATE(254), - [sym__text_inline_no_star] = STATE(254), - [sym__emphasis_star] = STATE(777), - [sym__strong_emphasis_star] = STATE(254), - [sym__emphasis_underscore] = STATE(777), - [sym__strong_emphasis_underscore] = STATE(254), - [sym__code_span] = STATE(254), - [anon_sym_BANG] = ACTIONS(578), - [anon_sym_DQUOTE] = ACTIONS(580), - [anon_sym_POUND] = ACTIONS(580), - [anon_sym_DOLLAR] = ACTIONS(580), - [anon_sym_PERCENT] = ACTIONS(580), - [anon_sym_AMP] = ACTIONS(582), - [anon_sym_SQUOTE] = ACTIONS(580), - [anon_sym_LPAREN] = ACTIONS(580), - [anon_sym_RPAREN] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(580), - [anon_sym_COMMA] = ACTIONS(580), - [anon_sym_DASH] = ACTIONS(580), - [anon_sym_DOT] = ACTIONS(580), - [anon_sym_SLASH] = ACTIONS(580), - [anon_sym_COLON] = ACTIONS(580), - [anon_sym_SEMI] = ACTIONS(580), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_EQ] = ACTIONS(580), - [anon_sym_GT] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(580), - [anon_sym_AT] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_BSLASH] = ACTIONS(588), - [anon_sym_RBRACK] = ACTIONS(580), - [anon_sym_CARET] = ACTIONS(580), - [anon_sym__] = ACTIONS(580), - [anon_sym_BQUOTE] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(580), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_RBRACE] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(580), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(590), - [anon_sym_LT_QMARK] = ACTIONS(592), - [aux_sym__html_block_4_token1] = ACTIONS(594), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(596), - [sym_backslash_escape] = ACTIONS(598), - [sym_entity_reference] = ACTIONS(598), - [sym_numeric_character_reference] = ACTIONS(598), - [sym_uri_autolink] = ACTIONS(598), - [sym_email_autolink] = ACTIONS(598), - [sym__whitespace_ge_2] = ACTIONS(600), - [aux_sym__whitespace_token1] = ACTIONS(602), - [sym__word_no_digit] = ACTIONS(598), - [sym__digits] = ACTIONS(598), - [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(604), - [sym__emphasis_open_star] = ACTIONS(606), - [sym__emphasis_open_underscore] = ACTIONS(608), - [sym__emphasis_close_star] = ACTIONS(771), + [aux_sym__paragraph_end_newline_repeat1] = STATE(132), + [ts_builtin_sym_end] = ACTIONS(773), + [anon_sym_BANG] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(773), + [anon_sym_POUND] = ACTIONS(773), + [anon_sym_DOLLAR] = ACTIONS(773), + [anon_sym_PERCENT] = ACTIONS(773), + [anon_sym_AMP] = ACTIONS(775), + [anon_sym_SQUOTE] = ACTIONS(773), + [anon_sym_LPAREN] = ACTIONS(773), + [anon_sym_RPAREN] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(773), + [anon_sym_PLUS] = ACTIONS(773), + [anon_sym_COMMA] = ACTIONS(773), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_SLASH] = ACTIONS(773), + [anon_sym_COLON] = ACTIONS(773), + [anon_sym_SEMI] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_EQ] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(773), + [anon_sym_QMARK] = ACTIONS(773), + [anon_sym_AT] = ACTIONS(773), + [anon_sym_LBRACK] = ACTIONS(773), + [anon_sym_BSLASH] = ACTIONS(775), + [anon_sym_RBRACK] = ACTIONS(773), + [anon_sym_CARET] = ACTIONS(773), + [anon_sym__] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(773), + [anon_sym_PIPE] = ACTIONS(773), + [anon_sym_RBRACE] = ACTIONS(773), + [anon_sym_TILDE] = ACTIONS(773), + [aux_sym__html_block_1_token1] = ACTIONS(773), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(775), + [anon_sym_LT_QMARK] = ACTIONS(775), + [aux_sym__html_block_4_token1] = ACTIONS(775), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(773), + [aux_sym__html_block_6_token1] = ACTIONS(775), + [aux_sym__html_block_6_token2] = ACTIONS(773), + [sym__open_tag_html_block] = ACTIONS(773), + [sym__open_tag_html_block_newline] = ACTIONS(773), + [sym__closing_tag_html_block] = ACTIONS(773), + [sym__closing_tag_html_block_newline] = ACTIONS(773), + [sym_backslash_escape] = ACTIONS(773), + [sym_entity_reference] = ACTIONS(773), + [sym_numeric_character_reference] = ACTIONS(773), + [sym_uri_autolink] = ACTIONS(773), + [sym_email_autolink] = ACTIONS(773), + [sym__whitespace_ge_2] = ACTIONS(773), + [aux_sym__whitespace_token1] = ACTIONS(775), + [sym__word_no_digit] = ACTIONS(773), + [sym__digits] = ACTIONS(773), + [aux_sym__newline_token1] = ACTIONS(773), + [sym__block_quote_start] = ACTIONS(773), + [sym__indented_chunk_start] = ACTIONS(773), + [sym_atx_h1_marker] = ACTIONS(773), + [sym_atx_h2_marker] = ACTIONS(773), + [sym_atx_h3_marker] = ACTIONS(773), + [sym_atx_h4_marker] = ACTIONS(773), + [sym_atx_h5_marker] = ACTIONS(773), + [sym_atx_h6_marker] = ACTIONS(773), + [sym_setext_h1_underline] = ACTIONS(773), + [sym_setext_h2_underline] = ACTIONS(773), + [sym__thematic_break] = ACTIONS(773), + [sym__list_marker_minus] = ACTIONS(773), + [sym__list_marker_plus] = ACTIONS(773), + [sym__list_marker_star] = ACTIONS(773), + [sym__list_marker_parenthesis] = ACTIONS(773), + [sym__list_marker_dot] = ACTIONS(773), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(773), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(773), + [sym__list_marker_star_dont_interrupt] = ACTIONS(773), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(773), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(773), + [sym__fenced_code_block_start_backtick] = ACTIONS(773), + [sym__fenced_code_block_start_tilde] = ACTIONS(773), + [sym__blank_line_start] = ACTIONS(773), + [sym__split_token] = ACTIONS(777), + [sym__code_span_start] = ACTIONS(773), + [sym__emphasis_open_star] = ACTIONS(773), + [sym__emphasis_open_underscore] = ACTIONS(773), }, [133] = { - [aux_sym__ignore_matching_tokens] = STATE(209), - [ts_builtin_sym_end] = ACTIONS(681), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_DQUOTE] = ACTIONS(681), - [anon_sym_POUND] = ACTIONS(681), - [anon_sym_DOLLAR] = ACTIONS(681), - [anon_sym_PERCENT] = ACTIONS(681), - [anon_sym_AMP] = ACTIONS(683), - [anon_sym_SQUOTE] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(681), - [anon_sym_RPAREN] = ACTIONS(681), - [anon_sym_STAR] = ACTIONS(681), - [anon_sym_PLUS] = ACTIONS(681), - [anon_sym_COMMA] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(681), - [anon_sym_DOT] = ACTIONS(681), - [anon_sym_SLASH] = ACTIONS(681), - [anon_sym_COLON] = ACTIONS(681), - [anon_sym_SEMI] = ACTIONS(681), - [anon_sym_LT] = ACTIONS(683), - [anon_sym_EQ] = ACTIONS(681), - [anon_sym_GT] = ACTIONS(681), - [anon_sym_QMARK] = ACTIONS(681), - [anon_sym_AT] = ACTIONS(681), - [anon_sym_LBRACK] = ACTIONS(681), - [anon_sym_BSLASH] = ACTIONS(683), - [anon_sym_RBRACK] = ACTIONS(681), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym__] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(681), - [anon_sym_PIPE] = ACTIONS(681), - [anon_sym_RBRACE] = ACTIONS(681), - [anon_sym_TILDE] = ACTIONS(681), - [aux_sym__html_block_1_token1] = ACTIONS(681), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(683), - [anon_sym_LT_QMARK] = ACTIONS(683), - [aux_sym__html_block_4_token1] = ACTIONS(683), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(681), - [aux_sym__html_block_6_token1] = ACTIONS(683), - [aux_sym__html_block_6_token2] = ACTIONS(681), - [sym__open_tag_html_block] = ACTIONS(681), - [sym__open_tag_html_block_newline] = ACTIONS(681), - [sym__closing_tag_html_block] = ACTIONS(681), - [sym__closing_tag_html_block_newline] = ACTIONS(681), - [sym_backslash_escape] = ACTIONS(681), - [sym_entity_reference] = ACTIONS(681), - [sym_numeric_character_reference] = ACTIONS(681), - [sym_uri_autolink] = ACTIONS(681), - [sym_email_autolink] = ACTIONS(681), - [sym__whitespace_ge_2] = ACTIONS(681), - [aux_sym__whitespace_token1] = ACTIONS(683), - [sym__word_no_digit] = ACTIONS(681), - [sym__digits] = ACTIONS(681), - [aux_sym__newline_token1] = ACTIONS(681), - [sym__block_continuation] = ACTIONS(773), - [sym__block_quote_continuation] = ACTIONS(773), - [sym__block_quote_start] = ACTIONS(681), - [sym__indented_chunk_start] = ACTIONS(681), - [sym_atx_h1_marker] = ACTIONS(681), - [sym_atx_h2_marker] = ACTIONS(681), - [sym_atx_h3_marker] = ACTIONS(681), - [sym_atx_h4_marker] = ACTIONS(681), - [sym_atx_h5_marker] = ACTIONS(681), - [sym_atx_h6_marker] = ACTIONS(681), - [sym__thematic_break] = ACTIONS(681), - [sym__list_marker_minus] = ACTIONS(681), - [sym__list_marker_plus] = ACTIONS(681), - [sym__list_marker_star] = ACTIONS(681), - [sym__list_marker_parenthesis] = ACTIONS(681), - [sym__list_marker_dot] = ACTIONS(681), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(681), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(681), - [sym__list_marker_star_dont_interrupt] = ACTIONS(681), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(681), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(681), - [sym__fenced_code_block_start_backtick] = ACTIONS(681), - [sym__fenced_code_block_start_tilde] = ACTIONS(681), - [sym__blank_line_start] = ACTIONS(681), - [sym__code_span_start] = ACTIONS(681), - [sym__emphasis_open_star] = ACTIONS(681), - [sym__emphasis_open_underscore] = ACTIONS(681), - [sym__last_token_whitespace] = ACTIONS(773), + [aux_sym__ignore_matching_tokens] = STATE(201), + [ts_builtin_sym_end] = 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), + [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(780), + [sym_numeric_character_reference] = ACTIONS(780), + [sym_uri_autolink] = ACTIONS(780), + [sym_email_autolink] = 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(109), + [sym__block_quote_continuation] = ACTIONS(109), + [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__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__emphasis_open_star] = ACTIONS(780), + [sym__emphasis_open_underscore] = ACTIONS(780), + [sym__last_token_whitespace] = ACTIONS(109), }, [134] = { - [aux_sym__ignore_matching_tokens] = STATE(140), - [ts_builtin_sym_end] = ACTIONS(775), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_DQUOTE] = ACTIONS(775), - [anon_sym_POUND] = ACTIONS(775), - [anon_sym_DOLLAR] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(777), - [anon_sym_SQUOTE] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_RPAREN] = ACTIONS(775), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_COMMA] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(775), - [anon_sym_SEMI] = ACTIONS(775), - [anon_sym_LT] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_QMARK] = ACTIONS(775), - [anon_sym_AT] = ACTIONS(775), - [anon_sym_LBRACK] = ACTIONS(775), - [anon_sym_BSLASH] = ACTIONS(777), - [anon_sym_RBRACK] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym__] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(775), - [anon_sym_LBRACE] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_RBRACE] = ACTIONS(775), - [anon_sym_TILDE] = ACTIONS(775), - [aux_sym__html_block_1_token1] = ACTIONS(775), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(777), - [anon_sym_LT_QMARK] = ACTIONS(777), - [aux_sym__html_block_4_token1] = ACTIONS(777), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(775), - [aux_sym__html_block_6_token1] = ACTIONS(777), - [aux_sym__html_block_6_token2] = ACTIONS(775), - [sym__open_tag_html_block] = ACTIONS(775), - [sym__open_tag_html_block_newline] = ACTIONS(775), - [sym__closing_tag_html_block] = ACTIONS(775), - [sym__closing_tag_html_block_newline] = ACTIONS(775), - [sym_backslash_escape] = ACTIONS(775), - [sym_entity_reference] = ACTIONS(775), - [sym_numeric_character_reference] = ACTIONS(775), - [sym_uri_autolink] = ACTIONS(775), - [sym_email_autolink] = ACTIONS(775), - [sym__whitespace_ge_2] = ACTIONS(775), - [aux_sym__whitespace_token1] = ACTIONS(777), - [sym__word_no_digit] = ACTIONS(775), - [sym__digits] = ACTIONS(775), - [aux_sym__newline_token1] = ACTIONS(775), - [sym__block_continuation] = ACTIONS(779), - [sym__block_quote_continuation] = ACTIONS(779), - [sym__block_quote_start] = ACTIONS(775), - [sym__indented_chunk_start] = ACTIONS(775), - [sym_atx_h1_marker] = ACTIONS(775), - [sym_atx_h2_marker] = ACTIONS(775), - [sym_atx_h3_marker] = ACTIONS(775), - [sym_atx_h4_marker] = ACTIONS(775), - [sym_atx_h5_marker] = ACTIONS(775), - [sym_atx_h6_marker] = ACTIONS(775), - [sym__thematic_break] = ACTIONS(775), - [sym__list_marker_minus] = ACTIONS(775), - [sym__list_marker_plus] = ACTIONS(775), - [sym__list_marker_star] = ACTIONS(775), - [sym__list_marker_parenthesis] = ACTIONS(775), - [sym__list_marker_dot] = ACTIONS(775), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(775), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(775), - [sym__list_marker_star_dont_interrupt] = ACTIONS(775), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(775), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(775), - [sym__fenced_code_block_start_backtick] = ACTIONS(775), - [sym__fenced_code_block_start_tilde] = ACTIONS(775), - [sym__blank_line_start] = ACTIONS(775), - [sym__code_span_start] = ACTIONS(775), - [sym__emphasis_open_star] = ACTIONS(775), - [sym__emphasis_open_underscore] = ACTIONS(775), - [sym__last_token_whitespace] = ACTIONS(779), + [aux_sym__ignore_matching_tokens] = STATE(225), + [anon_sym_BANG] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(784), + [anon_sym_POUND] = ACTIONS(784), + [anon_sym_DOLLAR] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(784), + [anon_sym_AMP] = ACTIONS(786), + [anon_sym_SQUOTE] = ACTIONS(784), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_RPAREN] = ACTIONS(784), + [anon_sym_STAR] = ACTIONS(784), + [anon_sym_PLUS] = ACTIONS(784), + [anon_sym_COMMA] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(784), + [anon_sym_DOT] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_COLON] = ACTIONS(784), + [anon_sym_SEMI] = ACTIONS(784), + [anon_sym_LT] = ACTIONS(786), + [anon_sym_EQ] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(784), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_AT] = ACTIONS(784), + [anon_sym_LBRACK] = ACTIONS(784), + [anon_sym_BSLASH] = ACTIONS(786), + [anon_sym_RBRACK] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(784), + [anon_sym__] = ACTIONS(784), + [anon_sym_BQUOTE] = ACTIONS(784), + [anon_sym_LBRACE] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(784), + [anon_sym_RBRACE] = ACTIONS(784), + [anon_sym_TILDE] = ACTIONS(784), + [aux_sym__html_block_1_token1] = ACTIONS(784), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(786), + [anon_sym_LT_QMARK] = ACTIONS(786), + [aux_sym__html_block_4_token1] = ACTIONS(786), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(784), + [aux_sym__html_block_6_token1] = ACTIONS(786), + [aux_sym__html_block_6_token2] = ACTIONS(784), + [sym__open_tag_html_block] = ACTIONS(784), + [sym__open_tag_html_block_newline] = ACTIONS(784), + [sym__closing_tag_html_block] = ACTIONS(784), + [sym__closing_tag_html_block_newline] = ACTIONS(784), + [sym_backslash_escape] = ACTIONS(784), + [sym_entity_reference] = ACTIONS(784), + [sym_numeric_character_reference] = ACTIONS(784), + [sym_uri_autolink] = ACTIONS(784), + [sym_email_autolink] = ACTIONS(784), + [sym__whitespace_ge_2] = ACTIONS(784), + [aux_sym__whitespace_token1] = ACTIONS(786), + [sym__word_no_digit] = ACTIONS(784), + [sym__digits] = ACTIONS(784), + [aux_sym__newline_token1] = ACTIONS(784), + [sym__block_close] = ACTIONS(784), + [sym__block_continuation] = ACTIONS(788), + [sym__block_quote_continuation] = ACTIONS(788), + [sym__block_quote_start] = ACTIONS(784), + [sym__indented_chunk_start] = ACTIONS(784), + [sym_atx_h1_marker] = ACTIONS(784), + [sym_atx_h2_marker] = ACTIONS(784), + [sym_atx_h3_marker] = ACTIONS(784), + [sym_atx_h4_marker] = ACTIONS(784), + [sym_atx_h5_marker] = ACTIONS(784), + [sym_atx_h6_marker] = ACTIONS(784), + [sym__thematic_break] = ACTIONS(784), + [sym__list_marker_minus] = ACTIONS(784), + [sym__list_marker_plus] = ACTIONS(784), + [sym__list_marker_star] = ACTIONS(784), + [sym__list_marker_parenthesis] = ACTIONS(784), + [sym__list_marker_dot] = ACTIONS(784), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(784), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(784), + [sym__list_marker_star_dont_interrupt] = ACTIONS(784), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(784), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(784), + [sym__fenced_code_block_start_backtick] = ACTIONS(784), + [sym__fenced_code_block_start_tilde] = ACTIONS(784), + [sym__blank_line_start] = ACTIONS(784), + [sym__code_span_start] = ACTIONS(784), + [sym__emphasis_open_star] = ACTIONS(784), + [sym__emphasis_open_underscore] = ACTIONS(784), + [sym__last_token_whitespace] = ACTIONS(788), }, [135] = { - [aux_sym__ignore_matching_tokens] = STATE(202), - [ts_builtin_sym_end] = ACTIONS(775), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_DQUOTE] = ACTIONS(775), - [anon_sym_POUND] = ACTIONS(775), - [anon_sym_DOLLAR] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(777), - [anon_sym_SQUOTE] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_RPAREN] = ACTIONS(775), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_COMMA] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(775), - [anon_sym_SEMI] = ACTIONS(775), - [anon_sym_LT] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_QMARK] = ACTIONS(775), - [anon_sym_AT] = ACTIONS(775), - [anon_sym_LBRACK] = ACTIONS(775), - [anon_sym_BSLASH] = ACTIONS(777), - [anon_sym_RBRACK] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym__] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(775), - [anon_sym_LBRACE] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_RBRACE] = ACTIONS(775), - [anon_sym_TILDE] = ACTIONS(775), - [aux_sym__html_block_1_token1] = ACTIONS(775), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(777), - [anon_sym_LT_QMARK] = ACTIONS(777), - [aux_sym__html_block_4_token1] = ACTIONS(777), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(775), - [aux_sym__html_block_6_token1] = ACTIONS(777), - [aux_sym__html_block_6_token2] = ACTIONS(775), - [sym__open_tag_html_block] = ACTIONS(775), - [sym__open_tag_html_block_newline] = ACTIONS(775), - [sym__closing_tag_html_block] = ACTIONS(775), - [sym__closing_tag_html_block_newline] = ACTIONS(775), - [sym_backslash_escape] = ACTIONS(775), - [sym_entity_reference] = ACTIONS(775), - [sym_numeric_character_reference] = ACTIONS(775), - [sym_uri_autolink] = ACTIONS(775), - [sym_email_autolink] = ACTIONS(775), - [sym__whitespace_ge_2] = ACTIONS(775), - [aux_sym__whitespace_token1] = ACTIONS(777), - [sym__word_no_digit] = ACTIONS(775), - [sym__digits] = ACTIONS(775), - [aux_sym__newline_token1] = ACTIONS(775), - [sym__block_continuation] = ACTIONS(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(775), - [sym__indented_chunk_start] = ACTIONS(775), - [sym_atx_h1_marker] = ACTIONS(775), - [sym_atx_h2_marker] = ACTIONS(775), - [sym_atx_h3_marker] = ACTIONS(775), - [sym_atx_h4_marker] = ACTIONS(775), - [sym_atx_h5_marker] = ACTIONS(775), - [sym_atx_h6_marker] = ACTIONS(775), - [sym__thematic_break] = ACTIONS(775), - [sym__list_marker_minus] = ACTIONS(775), - [sym__list_marker_plus] = ACTIONS(775), - [sym__list_marker_star] = ACTIONS(775), - [sym__list_marker_parenthesis] = ACTIONS(775), - [sym__list_marker_dot] = ACTIONS(775), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(775), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(775), - [sym__list_marker_star_dont_interrupt] = ACTIONS(775), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(775), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(775), - [sym__fenced_code_block_start_backtick] = ACTIONS(775), - [sym__fenced_code_block_start_tilde] = ACTIONS(775), - [sym__blank_line_start] = ACTIONS(775), - [sym__code_span_start] = ACTIONS(775), - [sym__emphasis_open_star] = ACTIONS(775), - [sym__emphasis_open_underscore] = ACTIONS(775), - [sym__last_token_whitespace] = ACTIONS(111), + [aux_sym__ignore_matching_tokens] = STATE(218), + [anon_sym_BANG] = ACTIONS(790), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_POUND] = ACTIONS(790), + [anon_sym_DOLLAR] = ACTIONS(790), + [anon_sym_PERCENT] = ACTIONS(790), + [anon_sym_AMP] = ACTIONS(792), + [anon_sym_SQUOTE] = ACTIONS(790), + [anon_sym_LPAREN] = ACTIONS(790), + [anon_sym_RPAREN] = ACTIONS(790), + [anon_sym_STAR] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(790), + [anon_sym_COMMA] = ACTIONS(790), + [anon_sym_DASH] = ACTIONS(790), + [anon_sym_DOT] = ACTIONS(790), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_COLON] = ACTIONS(790), + [anon_sym_SEMI] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(792), + [anon_sym_EQ] = ACTIONS(790), + [anon_sym_GT] = ACTIONS(790), + [anon_sym_QMARK] = ACTIONS(790), + [anon_sym_AT] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_BSLASH] = ACTIONS(792), + [anon_sym_RBRACK] = ACTIONS(790), + [anon_sym_CARET] = ACTIONS(790), + [anon_sym__] = ACTIONS(790), + [anon_sym_BQUOTE] = ACTIONS(790), + [anon_sym_LBRACE] = ACTIONS(790), + [anon_sym_PIPE] = ACTIONS(790), + [anon_sym_RBRACE] = ACTIONS(790), + [anon_sym_TILDE] = ACTIONS(790), + [aux_sym__html_block_1_token1] = ACTIONS(790), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(792), + [anon_sym_LT_QMARK] = ACTIONS(792), + [aux_sym__html_block_4_token1] = ACTIONS(792), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(790), + [aux_sym__html_block_6_token1] = ACTIONS(792), + [aux_sym__html_block_6_token2] = ACTIONS(790), + [sym__open_tag_html_block] = ACTIONS(790), + [sym__open_tag_html_block_newline] = ACTIONS(790), + [sym__closing_tag_html_block] = ACTIONS(790), + [sym__closing_tag_html_block_newline] = ACTIONS(790), + [sym_backslash_escape] = ACTIONS(790), + [sym_entity_reference] = ACTIONS(790), + [sym_numeric_character_reference] = ACTIONS(790), + [sym_uri_autolink] = ACTIONS(790), + [sym_email_autolink] = ACTIONS(790), + [sym__whitespace_ge_2] = ACTIONS(790), + [aux_sym__whitespace_token1] = ACTIONS(792), + [sym__word_no_digit] = ACTIONS(790), + [sym__digits] = ACTIONS(790), + [aux_sym__newline_token1] = ACTIONS(790), + [sym__block_close] = ACTIONS(790), + [sym__block_continuation] = ACTIONS(794), + [sym__block_quote_continuation] = ACTIONS(794), + [sym__block_quote_start] = ACTIONS(790), + [sym__indented_chunk_start] = ACTIONS(790), + [sym_atx_h1_marker] = ACTIONS(790), + [sym_atx_h2_marker] = ACTIONS(790), + [sym_atx_h3_marker] = ACTIONS(790), + [sym_atx_h4_marker] = ACTIONS(790), + [sym_atx_h5_marker] = ACTIONS(790), + [sym_atx_h6_marker] = ACTIONS(790), + [sym__thematic_break] = ACTIONS(790), + [sym__list_marker_minus] = ACTIONS(790), + [sym__list_marker_plus] = ACTIONS(790), + [sym__list_marker_star] = ACTIONS(790), + [sym__list_marker_parenthesis] = ACTIONS(790), + [sym__list_marker_dot] = ACTIONS(790), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(790), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(790), + [sym__list_marker_star_dont_interrupt] = ACTIONS(790), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(790), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(790), + [sym__fenced_code_block_start_backtick] = ACTIONS(790), + [sym__fenced_code_block_start_tilde] = ACTIONS(790), + [sym__blank_line_start] = ACTIONS(790), + [sym__code_span_start] = ACTIONS(790), + [sym__emphasis_open_star] = ACTIONS(790), + [sym__emphasis_open_underscore] = ACTIONS(790), + [sym__last_token_whitespace] = ACTIONS(794), }, [136] = { - [aux_sym__ignore_matching_tokens] = STATE(127), - [anon_sym_BANG] = ACTIONS(781), - [anon_sym_DQUOTE] = ACTIONS(781), - [anon_sym_POUND] = ACTIONS(781), - [anon_sym_DOLLAR] = ACTIONS(781), - [anon_sym_PERCENT] = ACTIONS(781), - [anon_sym_AMP] = ACTIONS(783), - [anon_sym_SQUOTE] = ACTIONS(781), - [anon_sym_LPAREN] = ACTIONS(781), - [anon_sym_RPAREN] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_COMMA] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_DOT] = ACTIONS(781), - [anon_sym_SLASH] = ACTIONS(781), - [anon_sym_COLON] = ACTIONS(781), - [anon_sym_SEMI] = ACTIONS(781), - [anon_sym_LT] = ACTIONS(783), - [anon_sym_EQ] = ACTIONS(781), - [anon_sym_GT] = ACTIONS(781), - [anon_sym_QMARK] = ACTIONS(781), - [anon_sym_AT] = ACTIONS(781), - [anon_sym_LBRACK] = ACTIONS(781), - [anon_sym_BSLASH] = ACTIONS(783), - [anon_sym_RBRACK] = ACTIONS(781), - [anon_sym_CARET] = ACTIONS(781), - [anon_sym__] = ACTIONS(781), - [anon_sym_BQUOTE] = ACTIONS(781), - [anon_sym_LBRACE] = ACTIONS(781), - [anon_sym_PIPE] = ACTIONS(781), - [anon_sym_RBRACE] = ACTIONS(781), - [anon_sym_TILDE] = ACTIONS(781), - [aux_sym__html_block_1_token1] = ACTIONS(781), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(783), - [anon_sym_LT_QMARK] = ACTIONS(783), - [aux_sym__html_block_4_token1] = ACTIONS(783), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(781), - [aux_sym__html_block_6_token1] = ACTIONS(783), - [aux_sym__html_block_6_token2] = ACTIONS(781), - [sym__open_tag_html_block] = ACTIONS(781), - [sym__open_tag_html_block_newline] = ACTIONS(781), - [sym__closing_tag_html_block] = ACTIONS(781), - [sym__closing_tag_html_block_newline] = ACTIONS(781), - [sym_backslash_escape] = ACTIONS(781), - [sym_entity_reference] = ACTIONS(781), - [sym_numeric_character_reference] = ACTIONS(781), - [sym_uri_autolink] = ACTIONS(781), - [sym_email_autolink] = ACTIONS(781), - [sym__whitespace_ge_2] = ACTIONS(781), - [aux_sym__whitespace_token1] = ACTIONS(783), - [sym__word_no_digit] = ACTIONS(781), - [sym__digits] = ACTIONS(781), - [aux_sym__newline_token1] = ACTIONS(781), - [sym__block_close] = ACTIONS(781), - [sym__block_continuation] = ACTIONS(785), - [sym__block_quote_continuation] = ACTIONS(785), - [sym__block_quote_start] = ACTIONS(781), - [sym__indented_chunk_start] = ACTIONS(781), - [sym_atx_h1_marker] = ACTIONS(781), - [sym_atx_h2_marker] = ACTIONS(781), - [sym_atx_h3_marker] = ACTIONS(781), - [sym_atx_h4_marker] = ACTIONS(781), - [sym_atx_h5_marker] = ACTIONS(781), - [sym_atx_h6_marker] = ACTIONS(781), - [sym__thematic_break] = ACTIONS(781), - [sym__list_marker_minus] = ACTIONS(781), - [sym__list_marker_plus] = ACTIONS(781), - [sym__list_marker_star] = ACTIONS(781), - [sym__list_marker_parenthesis] = ACTIONS(781), - [sym__list_marker_dot] = ACTIONS(781), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(781), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(781), - [sym__list_marker_star_dont_interrupt] = ACTIONS(781), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(781), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(781), - [sym__fenced_code_block_start_backtick] = ACTIONS(781), - [sym__fenced_code_block_start_tilde] = ACTIONS(781), - [sym__blank_line_start] = ACTIONS(781), - [sym__code_span_start] = ACTIONS(781), - [sym__emphasis_open_star] = ACTIONS(781), - [sym__emphasis_open_underscore] = ACTIONS(781), - [sym__last_token_whitespace] = ACTIONS(785), + [aux_sym__ignore_matching_tokens] = STATE(204), + [anon_sym_BANG] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(796), + [anon_sym_POUND] = ACTIONS(796), + [anon_sym_DOLLAR] = ACTIONS(796), + [anon_sym_PERCENT] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(798), + [anon_sym_SQUOTE] = ACTIONS(796), + [anon_sym_LPAREN] = ACTIONS(796), + [anon_sym_RPAREN] = ACTIONS(796), + [anon_sym_STAR] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(796), + [anon_sym_COMMA] = ACTIONS(796), + [anon_sym_DASH] = ACTIONS(796), + [anon_sym_DOT] = ACTIONS(796), + [anon_sym_SLASH] = ACTIONS(796), + [anon_sym_COLON] = ACTIONS(796), + [anon_sym_SEMI] = ACTIONS(796), + [anon_sym_LT] = ACTIONS(798), + [anon_sym_EQ] = ACTIONS(796), + [anon_sym_GT] = ACTIONS(796), + [anon_sym_QMARK] = ACTIONS(796), + [anon_sym_AT] = ACTIONS(796), + [anon_sym_LBRACK] = ACTIONS(796), + [anon_sym_BSLASH] = ACTIONS(798), + [anon_sym_RBRACK] = ACTIONS(796), + [anon_sym_CARET] = ACTIONS(796), + [anon_sym__] = ACTIONS(796), + [anon_sym_BQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(796), + [anon_sym_PIPE] = ACTIONS(796), + [anon_sym_RBRACE] = ACTIONS(796), + [anon_sym_TILDE] = ACTIONS(796), + [aux_sym__html_block_1_token1] = ACTIONS(796), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(798), + [anon_sym_LT_QMARK] = ACTIONS(798), + [aux_sym__html_block_4_token1] = ACTIONS(798), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(796), + [aux_sym__html_block_6_token1] = ACTIONS(798), + [aux_sym__html_block_6_token2] = ACTIONS(796), + [sym__open_tag_html_block] = ACTIONS(796), + [sym__open_tag_html_block_newline] = ACTIONS(796), + [sym__closing_tag_html_block] = ACTIONS(796), + [sym__closing_tag_html_block_newline] = ACTIONS(796), + [sym_backslash_escape] = ACTIONS(796), + [sym_entity_reference] = ACTIONS(796), + [sym_numeric_character_reference] = ACTIONS(796), + [sym_uri_autolink] = ACTIONS(796), + [sym_email_autolink] = ACTIONS(796), + [sym__whitespace_ge_2] = ACTIONS(796), + [aux_sym__whitespace_token1] = ACTIONS(798), + [sym__word_no_digit] = ACTIONS(796), + [sym__digits] = ACTIONS(796), + [aux_sym__newline_token1] = ACTIONS(796), + [sym__block_close] = ACTIONS(796), + [sym__block_continuation] = ACTIONS(800), + [sym__block_quote_continuation] = ACTIONS(800), + [sym__block_quote_start] = ACTIONS(796), + [sym__indented_chunk_start] = ACTIONS(796), + [sym_atx_h1_marker] = ACTIONS(796), + [sym_atx_h2_marker] = ACTIONS(796), + [sym_atx_h3_marker] = ACTIONS(796), + [sym_atx_h4_marker] = ACTIONS(796), + [sym_atx_h5_marker] = ACTIONS(796), + [sym_atx_h6_marker] = ACTIONS(796), + [sym__thematic_break] = ACTIONS(796), + [sym__list_marker_minus] = ACTIONS(796), + [sym__list_marker_plus] = ACTIONS(796), + [sym__list_marker_star] = ACTIONS(796), + [sym__list_marker_parenthesis] = ACTIONS(796), + [sym__list_marker_dot] = ACTIONS(796), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(796), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(796), + [sym__list_marker_star_dont_interrupt] = ACTIONS(796), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(796), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(796), + [sym__fenced_code_block_start_backtick] = ACTIONS(796), + [sym__fenced_code_block_start_tilde] = ACTIONS(796), + [sym__blank_line_start] = ACTIONS(796), + [sym__code_span_start] = ACTIONS(796), + [sym__emphasis_open_star] = ACTIONS(796), + [sym__emphasis_open_underscore] = ACTIONS(796), + [sym__last_token_whitespace] = ACTIONS(800), }, [137] = { - [aux_sym__ignore_matching_tokens] = STATE(275), - [anon_sym_BANG] = ACTIONS(781), - [anon_sym_DQUOTE] = ACTIONS(781), - [anon_sym_POUND] = ACTIONS(781), - [anon_sym_DOLLAR] = ACTIONS(781), - [anon_sym_PERCENT] = ACTIONS(781), - [anon_sym_AMP] = ACTIONS(783), - [anon_sym_SQUOTE] = ACTIONS(781), - [anon_sym_LPAREN] = ACTIONS(781), - [anon_sym_RPAREN] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_COMMA] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_DOT] = ACTIONS(781), - [anon_sym_SLASH] = ACTIONS(781), - [anon_sym_COLON] = ACTIONS(781), - [anon_sym_SEMI] = ACTIONS(781), - [anon_sym_LT] = ACTIONS(783), - [anon_sym_EQ] = ACTIONS(781), - [anon_sym_GT] = ACTIONS(781), - [anon_sym_QMARK] = ACTIONS(781), - [anon_sym_AT] = ACTIONS(781), - [anon_sym_LBRACK] = ACTIONS(781), - [anon_sym_BSLASH] = ACTIONS(783), - [anon_sym_RBRACK] = ACTIONS(781), - [anon_sym_CARET] = ACTIONS(781), - [anon_sym__] = ACTIONS(781), - [anon_sym_BQUOTE] = ACTIONS(781), - [anon_sym_LBRACE] = ACTIONS(781), - [anon_sym_PIPE] = ACTIONS(781), - [anon_sym_RBRACE] = ACTIONS(781), - [anon_sym_TILDE] = ACTIONS(781), - [aux_sym__html_block_1_token1] = ACTIONS(781), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(783), - [anon_sym_LT_QMARK] = ACTIONS(783), - [aux_sym__html_block_4_token1] = ACTIONS(783), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(781), - [aux_sym__html_block_6_token1] = ACTIONS(783), - [aux_sym__html_block_6_token2] = ACTIONS(781), - [sym__open_tag_html_block] = ACTIONS(781), - [sym__open_tag_html_block_newline] = ACTIONS(781), - [sym__closing_tag_html_block] = ACTIONS(781), - [sym__closing_tag_html_block_newline] = ACTIONS(781), - [sym_backslash_escape] = ACTIONS(781), - [sym_entity_reference] = ACTIONS(781), - [sym_numeric_character_reference] = ACTIONS(781), - [sym_uri_autolink] = ACTIONS(781), - [sym_email_autolink] = ACTIONS(781), - [sym__whitespace_ge_2] = ACTIONS(781), - [aux_sym__whitespace_token1] = ACTIONS(783), - [sym__word_no_digit] = ACTIONS(781), - [sym__digits] = ACTIONS(781), - [aux_sym__newline_token1] = ACTIONS(781), - [sym__block_close] = ACTIONS(781), - [sym__block_continuation] = ACTIONS(125), - [sym__block_quote_continuation] = ACTIONS(125), - [sym__block_quote_start] = ACTIONS(781), - [sym__indented_chunk_start] = ACTIONS(781), - [sym_atx_h1_marker] = ACTIONS(781), - [sym_atx_h2_marker] = ACTIONS(781), - [sym_atx_h3_marker] = ACTIONS(781), - [sym_atx_h4_marker] = ACTIONS(781), - [sym_atx_h5_marker] = ACTIONS(781), - [sym_atx_h6_marker] = ACTIONS(781), - [sym__thematic_break] = ACTIONS(781), - [sym__list_marker_minus] = ACTIONS(781), - [sym__list_marker_plus] = ACTIONS(781), - [sym__list_marker_star] = ACTIONS(781), - [sym__list_marker_parenthesis] = ACTIONS(781), - [sym__list_marker_dot] = ACTIONS(781), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(781), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(781), - [sym__list_marker_star_dont_interrupt] = ACTIONS(781), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(781), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(781), - [sym__fenced_code_block_start_backtick] = ACTIONS(781), - [sym__fenced_code_block_start_tilde] = ACTIONS(781), - [sym__blank_line_start] = ACTIONS(781), - [sym__code_span_start] = ACTIONS(781), - [sym__emphasis_open_star] = ACTIONS(781), - [sym__emphasis_open_underscore] = ACTIONS(781), - [sym__last_token_whitespace] = ACTIONS(125), + [aux_sym__ignore_matching_tokens] = STATE(172), + [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), + [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(802), + [sym_numeric_character_reference] = ACTIONS(802), + [sym_uri_autolink] = ACTIONS(802), + [sym_email_autolink] = 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(806), + [sym__block_quote_continuation] = ACTIONS(806), + [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__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__emphasis_open_star] = ACTIONS(802), + [sym__emphasis_open_underscore] = ACTIONS(802), + [sym__last_token_whitespace] = ACTIONS(806), }, [138] = { - [aux_sym__ignore_matching_tokens] = STATE(129), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(787), - [anon_sym_POUND] = ACTIONS(787), - [anon_sym_DOLLAR] = ACTIONS(787), - [anon_sym_PERCENT] = ACTIONS(787), - [anon_sym_AMP] = ACTIONS(789), - [anon_sym_SQUOTE] = ACTIONS(787), - [anon_sym_LPAREN] = ACTIONS(787), - [anon_sym_RPAREN] = ACTIONS(787), - [anon_sym_STAR] = ACTIONS(787), - [anon_sym_PLUS] = ACTIONS(787), - [anon_sym_COMMA] = ACTIONS(787), - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_DOT] = ACTIONS(787), - [anon_sym_SLASH] = ACTIONS(787), - [anon_sym_COLON] = ACTIONS(787), - [anon_sym_SEMI] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(789), - [anon_sym_EQ] = ACTIONS(787), - [anon_sym_GT] = ACTIONS(787), - [anon_sym_QMARK] = ACTIONS(787), - [anon_sym_AT] = ACTIONS(787), - [anon_sym_LBRACK] = ACTIONS(787), - [anon_sym_BSLASH] = ACTIONS(789), - [anon_sym_RBRACK] = ACTIONS(787), - [anon_sym_CARET] = ACTIONS(787), - [anon_sym__] = ACTIONS(787), - [anon_sym_BQUOTE] = ACTIONS(787), - [anon_sym_LBRACE] = ACTIONS(787), - [anon_sym_PIPE] = ACTIONS(787), - [anon_sym_RBRACE] = ACTIONS(787), - [anon_sym_TILDE] = ACTIONS(787), - [aux_sym__html_block_1_token1] = ACTIONS(787), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(789), - [anon_sym_LT_QMARK] = ACTIONS(789), - [aux_sym__html_block_4_token1] = ACTIONS(789), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(787), - [aux_sym__html_block_6_token1] = ACTIONS(789), - [aux_sym__html_block_6_token2] = ACTIONS(787), - [sym__open_tag_html_block] = ACTIONS(787), - [sym__open_tag_html_block_newline] = ACTIONS(787), - [sym__closing_tag_html_block] = ACTIONS(787), - [sym__closing_tag_html_block_newline] = ACTIONS(787), - [sym_backslash_escape] = ACTIONS(787), - [sym_entity_reference] = ACTIONS(787), - [sym_numeric_character_reference] = ACTIONS(787), - [sym_uri_autolink] = ACTIONS(787), - [sym_email_autolink] = ACTIONS(787), - [sym__whitespace_ge_2] = ACTIONS(787), - [aux_sym__whitespace_token1] = ACTIONS(789), - [sym__word_no_digit] = ACTIONS(787), - [sym__digits] = ACTIONS(787), - [aux_sym__newline_token1] = ACTIONS(787), - [sym__block_close] = ACTIONS(787), - [sym__block_continuation] = ACTIONS(791), - [sym__block_quote_continuation] = ACTIONS(791), - [sym__block_quote_start] = ACTIONS(787), - [sym__indented_chunk_start] = ACTIONS(787), - [sym_atx_h1_marker] = ACTIONS(787), - [sym_atx_h2_marker] = ACTIONS(787), - [sym_atx_h3_marker] = ACTIONS(787), - [sym_atx_h4_marker] = ACTIONS(787), - [sym_atx_h5_marker] = ACTIONS(787), - [sym_atx_h6_marker] = ACTIONS(787), - [sym__thematic_break] = ACTIONS(787), - [sym__list_marker_minus] = ACTIONS(787), - [sym__list_marker_plus] = ACTIONS(787), - [sym__list_marker_star] = ACTIONS(787), - [sym__list_marker_parenthesis] = ACTIONS(787), - [sym__list_marker_dot] = ACTIONS(787), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(787), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(787), - [sym__list_marker_star_dont_interrupt] = ACTIONS(787), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(787), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(787), - [sym__fenced_code_block_start_backtick] = ACTIONS(787), - [sym__fenced_code_block_start_tilde] = ACTIONS(787), - [sym__blank_line_start] = ACTIONS(787), - [sym__code_span_start] = ACTIONS(787), - [sym__emphasis_open_star] = ACTIONS(787), - [sym__emphasis_open_underscore] = ACTIONS(787), - [sym__last_token_whitespace] = ACTIONS(791), - }, - [139] = { - [aux_sym__ignore_matching_tokens] = STATE(275), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(787), - [anon_sym_POUND] = ACTIONS(787), - [anon_sym_DOLLAR] = ACTIONS(787), - [anon_sym_PERCENT] = ACTIONS(787), - [anon_sym_AMP] = ACTIONS(789), - [anon_sym_SQUOTE] = ACTIONS(787), - [anon_sym_LPAREN] = ACTIONS(787), - [anon_sym_RPAREN] = ACTIONS(787), - [anon_sym_STAR] = ACTIONS(787), - [anon_sym_PLUS] = ACTIONS(787), - [anon_sym_COMMA] = ACTIONS(787), - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_DOT] = ACTIONS(787), - [anon_sym_SLASH] = ACTIONS(787), - [anon_sym_COLON] = ACTIONS(787), - [anon_sym_SEMI] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(789), - [anon_sym_EQ] = ACTIONS(787), - [anon_sym_GT] = ACTIONS(787), - [anon_sym_QMARK] = ACTIONS(787), - [anon_sym_AT] = ACTIONS(787), - [anon_sym_LBRACK] = ACTIONS(787), - [anon_sym_BSLASH] = ACTIONS(789), - [anon_sym_RBRACK] = ACTIONS(787), - [anon_sym_CARET] = ACTIONS(787), - [anon_sym__] = ACTIONS(787), - [anon_sym_BQUOTE] = ACTIONS(787), - [anon_sym_LBRACE] = ACTIONS(787), - [anon_sym_PIPE] = ACTIONS(787), - [anon_sym_RBRACE] = ACTIONS(787), - [anon_sym_TILDE] = ACTIONS(787), - [aux_sym__html_block_1_token1] = ACTIONS(787), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(789), - [anon_sym_LT_QMARK] = ACTIONS(789), - [aux_sym__html_block_4_token1] = ACTIONS(789), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(787), - [aux_sym__html_block_6_token1] = ACTIONS(789), - [aux_sym__html_block_6_token2] = ACTIONS(787), - [sym__open_tag_html_block] = ACTIONS(787), - [sym__open_tag_html_block_newline] = ACTIONS(787), - [sym__closing_tag_html_block] = ACTIONS(787), - [sym__closing_tag_html_block_newline] = ACTIONS(787), - [sym_backslash_escape] = ACTIONS(787), - [sym_entity_reference] = ACTIONS(787), - [sym_numeric_character_reference] = ACTIONS(787), - [sym_uri_autolink] = ACTIONS(787), - [sym_email_autolink] = ACTIONS(787), - [sym__whitespace_ge_2] = ACTIONS(787), - [aux_sym__whitespace_token1] = ACTIONS(789), - [sym__word_no_digit] = ACTIONS(787), - [sym__digits] = ACTIONS(787), - [aux_sym__newline_token1] = ACTIONS(787), - [sym__block_close] = ACTIONS(787), - [sym__block_continuation] = ACTIONS(125), - [sym__block_quote_continuation] = ACTIONS(125), - [sym__block_quote_start] = ACTIONS(787), - [sym__indented_chunk_start] = ACTIONS(787), - [sym_atx_h1_marker] = ACTIONS(787), - [sym_atx_h2_marker] = ACTIONS(787), - [sym_atx_h3_marker] = ACTIONS(787), - [sym_atx_h4_marker] = ACTIONS(787), - [sym_atx_h5_marker] = ACTIONS(787), - [sym_atx_h6_marker] = ACTIONS(787), - [sym__thematic_break] = ACTIONS(787), - [sym__list_marker_minus] = ACTIONS(787), - [sym__list_marker_plus] = ACTIONS(787), - [sym__list_marker_star] = ACTIONS(787), - [sym__list_marker_parenthesis] = ACTIONS(787), - [sym__list_marker_dot] = ACTIONS(787), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(787), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(787), - [sym__list_marker_star_dont_interrupt] = ACTIONS(787), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(787), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(787), - [sym__fenced_code_block_start_backtick] = ACTIONS(787), - [sym__fenced_code_block_start_tilde] = ACTIONS(787), - [sym__blank_line_start] = ACTIONS(787), - [sym__code_span_start] = ACTIONS(787), - [sym__emphasis_open_star] = ACTIONS(787), - [sym__emphasis_open_underscore] = ACTIONS(787), - [sym__last_token_whitespace] = ACTIONS(125), - }, - [140] = { - [aux_sym__ignore_matching_tokens] = STATE(202), - [ts_builtin_sym_end] = ACTIONS(793), - [anon_sym_BANG] = ACTIONS(793), - [anon_sym_DQUOTE] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(793), - [anon_sym_PERCENT] = ACTIONS(793), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_SQUOTE] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_RPAREN] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_COMMA] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_DOT] = ACTIONS(793), - [anon_sym_SLASH] = ACTIONS(793), - [anon_sym_COLON] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_LT] = ACTIONS(795), - [anon_sym_EQ] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(793), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_AT] = ACTIONS(793), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_BSLASH] = ACTIONS(795), - [anon_sym_RBRACK] = ACTIONS(793), - [anon_sym_CARET] = ACTIONS(793), - [anon_sym__] = ACTIONS(793), - [anon_sym_BQUOTE] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_RBRACE] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(793), - [aux_sym__html_block_1_token1] = ACTIONS(793), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(795), - [anon_sym_LT_QMARK] = ACTIONS(795), - [aux_sym__html_block_4_token1] = ACTIONS(795), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(793), - [aux_sym__html_block_6_token1] = ACTIONS(795), - [aux_sym__html_block_6_token2] = ACTIONS(793), - [sym__open_tag_html_block] = ACTIONS(793), - [sym__open_tag_html_block_newline] = ACTIONS(793), - [sym__closing_tag_html_block] = ACTIONS(793), - [sym__closing_tag_html_block_newline] = ACTIONS(793), - [sym_backslash_escape] = ACTIONS(793), - [sym_entity_reference] = ACTIONS(793), - [sym_numeric_character_reference] = ACTIONS(793), - [sym_uri_autolink] = ACTIONS(793), - [sym_email_autolink] = ACTIONS(793), - [sym__whitespace_ge_2] = ACTIONS(793), - [aux_sym__whitespace_token1] = ACTIONS(795), - [sym__word_no_digit] = ACTIONS(793), - [sym__digits] = ACTIONS(793), - [aux_sym__newline_token1] = ACTIONS(793), - [sym__block_continuation] = ACTIONS(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(793), - [sym__indented_chunk_start] = ACTIONS(793), - [sym_atx_h1_marker] = ACTIONS(793), - [sym_atx_h2_marker] = ACTIONS(793), - [sym_atx_h3_marker] = ACTIONS(793), - [sym_atx_h4_marker] = ACTIONS(793), - [sym_atx_h5_marker] = ACTIONS(793), - [sym_atx_h6_marker] = ACTIONS(793), - [sym__thematic_break] = ACTIONS(793), - [sym__list_marker_minus] = ACTIONS(793), - [sym__list_marker_plus] = ACTIONS(793), - [sym__list_marker_star] = ACTIONS(793), - [sym__list_marker_parenthesis] = ACTIONS(793), - [sym__list_marker_dot] = ACTIONS(793), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(793), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(793), - [sym__list_marker_star_dont_interrupt] = ACTIONS(793), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(793), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(793), - [sym__fenced_code_block_start_backtick] = ACTIONS(793), - [sym__fenced_code_block_start_tilde] = ACTIONS(793), - [sym__blank_line_start] = ACTIONS(793), - [sym__code_span_start] = ACTIONS(793), - [sym__emphasis_open_star] = ACTIONS(793), - [sym__emphasis_open_underscore] = ACTIONS(793), - [sym__last_token_whitespace] = ACTIONS(111), - }, - [141] = { - [aux_sym__ignore_matching_tokens] = STATE(211), - [ts_builtin_sym_end] = ACTIONS(793), - [anon_sym_BANG] = ACTIONS(793), - [anon_sym_DQUOTE] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(793), - [anon_sym_PERCENT] = ACTIONS(793), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_SQUOTE] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_RPAREN] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_COMMA] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_DOT] = ACTIONS(793), - [anon_sym_SLASH] = ACTIONS(793), - [anon_sym_COLON] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_LT] = ACTIONS(795), - [anon_sym_EQ] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(793), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_AT] = ACTIONS(793), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_BSLASH] = ACTIONS(795), - [anon_sym_RBRACK] = ACTIONS(793), - [anon_sym_CARET] = ACTIONS(793), - [anon_sym__] = ACTIONS(793), - [anon_sym_BQUOTE] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_RBRACE] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(793), - [aux_sym__html_block_1_token1] = ACTIONS(793), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(795), - [anon_sym_LT_QMARK] = ACTIONS(795), - [aux_sym__html_block_4_token1] = ACTIONS(795), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(793), - [aux_sym__html_block_6_token1] = ACTIONS(795), - [aux_sym__html_block_6_token2] = ACTIONS(793), - [sym__open_tag_html_block] = ACTIONS(793), - [sym__open_tag_html_block_newline] = ACTIONS(793), - [sym__closing_tag_html_block] = ACTIONS(793), - [sym__closing_tag_html_block_newline] = ACTIONS(793), - [sym_backslash_escape] = ACTIONS(793), - [sym_entity_reference] = ACTIONS(793), - [sym_numeric_character_reference] = ACTIONS(793), - [sym_uri_autolink] = ACTIONS(793), - [sym_email_autolink] = ACTIONS(793), - [sym__whitespace_ge_2] = ACTIONS(793), - [aux_sym__whitespace_token1] = ACTIONS(795), - [sym__word_no_digit] = ACTIONS(793), - [sym__digits] = ACTIONS(793), - [aux_sym__newline_token1] = ACTIONS(793), - [sym__block_continuation] = ACTIONS(797), - [sym__block_quote_continuation] = ACTIONS(797), - [sym__block_quote_start] = ACTIONS(793), - [sym__indented_chunk_start] = ACTIONS(793), - [sym_atx_h1_marker] = ACTIONS(793), - [sym_atx_h2_marker] = ACTIONS(793), - [sym_atx_h3_marker] = ACTIONS(793), - [sym_atx_h4_marker] = ACTIONS(793), - [sym_atx_h5_marker] = ACTIONS(793), - [sym_atx_h6_marker] = ACTIONS(793), - [sym__thematic_break] = ACTIONS(793), - [sym__list_marker_minus] = ACTIONS(793), - [sym__list_marker_plus] = ACTIONS(793), - [sym__list_marker_star] = ACTIONS(793), - [sym__list_marker_parenthesis] = ACTIONS(793), - [sym__list_marker_dot] = ACTIONS(793), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(793), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(793), - [sym__list_marker_star_dont_interrupt] = ACTIONS(793), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(793), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(793), - [sym__fenced_code_block_start_backtick] = ACTIONS(793), - [sym__fenced_code_block_start_tilde] = ACTIONS(793), - [sym__blank_line_start] = ACTIONS(793), - [sym__code_span_start] = ACTIONS(793), - [sym__emphasis_open_star] = ACTIONS(793), - [sym__emphasis_open_underscore] = ACTIONS(793), - [sym__last_token_whitespace] = ACTIONS(797), - }, - [142] = { - [aux_sym__ignore_matching_tokens] = STATE(113), - [ts_builtin_sym_end] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_DQUOTE] = ACTIONS(799), - [anon_sym_POUND] = ACTIONS(799), - [anon_sym_DOLLAR] = ACTIONS(799), - [anon_sym_PERCENT] = ACTIONS(799), - [anon_sym_AMP] = ACTIONS(801), - [anon_sym_SQUOTE] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(799), - [anon_sym_RPAREN] = ACTIONS(799), - [anon_sym_STAR] = ACTIONS(799), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_COMMA] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_DOT] = ACTIONS(799), - [anon_sym_SLASH] = ACTIONS(799), - [anon_sym_COLON] = ACTIONS(799), - [anon_sym_SEMI] = ACTIONS(799), - [anon_sym_LT] = ACTIONS(801), - [anon_sym_EQ] = ACTIONS(799), - [anon_sym_GT] = ACTIONS(799), - [anon_sym_QMARK] = ACTIONS(799), - [anon_sym_AT] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(799), - [anon_sym_BSLASH] = ACTIONS(801), - [anon_sym_RBRACK] = ACTIONS(799), - [anon_sym_CARET] = ACTIONS(799), - [anon_sym__] = ACTIONS(799), - [anon_sym_BQUOTE] = ACTIONS(799), - [anon_sym_LBRACE] = ACTIONS(799), - [anon_sym_PIPE] = ACTIONS(799), - [anon_sym_RBRACE] = ACTIONS(799), - [anon_sym_TILDE] = ACTIONS(799), - [aux_sym__html_block_1_token1] = ACTIONS(799), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(801), - [anon_sym_LT_QMARK] = ACTIONS(801), - [aux_sym__html_block_4_token1] = ACTIONS(801), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(799), - [aux_sym__html_block_6_token1] = ACTIONS(801), - [aux_sym__html_block_6_token2] = ACTIONS(799), - [sym__open_tag_html_block] = ACTIONS(799), - [sym__open_tag_html_block_newline] = ACTIONS(799), - [sym__closing_tag_html_block] = ACTIONS(799), - [sym__closing_tag_html_block_newline] = ACTIONS(799), - [sym_backslash_escape] = ACTIONS(799), - [sym_entity_reference] = ACTIONS(799), - [sym_numeric_character_reference] = ACTIONS(799), - [sym_uri_autolink] = ACTIONS(799), - [sym_email_autolink] = ACTIONS(799), - [sym__whitespace_ge_2] = ACTIONS(799), - [aux_sym__whitespace_token1] = ACTIONS(801), - [sym__word_no_digit] = ACTIONS(799), - [sym__digits] = ACTIONS(799), - [aux_sym__newline_token1] = ACTIONS(799), - [sym__block_continuation] = ACTIONS(803), - [sym__block_quote_continuation] = ACTIONS(803), - [sym__block_quote_start] = ACTIONS(799), - [sym__indented_chunk_start] = ACTIONS(799), - [sym_atx_h1_marker] = ACTIONS(799), - [sym_atx_h2_marker] = ACTIONS(799), - [sym_atx_h3_marker] = ACTIONS(799), - [sym_atx_h4_marker] = ACTIONS(799), - [sym_atx_h5_marker] = ACTIONS(799), - [sym_atx_h6_marker] = ACTIONS(799), - [sym__thematic_break] = ACTIONS(799), - [sym__list_marker_minus] = ACTIONS(799), - [sym__list_marker_plus] = ACTIONS(799), - [sym__list_marker_star] = ACTIONS(799), - [sym__list_marker_parenthesis] = ACTIONS(799), - [sym__list_marker_dot] = ACTIONS(799), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(799), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(799), - [sym__list_marker_star_dont_interrupt] = ACTIONS(799), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(799), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(799), - [sym__fenced_code_block_start_backtick] = ACTIONS(799), - [sym__fenced_code_block_start_tilde] = ACTIONS(799), - [sym__blank_line_start] = ACTIONS(799), - [sym__code_span_start] = ACTIONS(799), - [sym__emphasis_open_star] = ACTIONS(799), - [sym__emphasis_open_underscore] = ACTIONS(799), - [sym__last_token_whitespace] = ACTIONS(803), - }, - [143] = { - [aux_sym__ignore_matching_tokens] = STATE(275), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_DQUOTE] = ACTIONS(557), - [anon_sym_POUND] = ACTIONS(557), - [anon_sym_DOLLAR] = ACTIONS(557), - [anon_sym_PERCENT] = ACTIONS(557), - [anon_sym_AMP] = ACTIONS(559), - [anon_sym_SQUOTE] = ACTIONS(557), - [anon_sym_LPAREN] = ACTIONS(557), - [anon_sym_RPAREN] = ACTIONS(557), - [anon_sym_STAR] = ACTIONS(557), - [anon_sym_PLUS] = ACTIONS(557), - [anon_sym_COMMA] = ACTIONS(557), - [anon_sym_DASH] = ACTIONS(557), - [anon_sym_DOT] = ACTIONS(557), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_COLON] = ACTIONS(557), - [anon_sym_SEMI] = ACTIONS(557), - [anon_sym_LT] = ACTIONS(559), - [anon_sym_EQ] = ACTIONS(557), - [anon_sym_GT] = ACTIONS(557), - [anon_sym_QMARK] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(557), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(559), - [anon_sym_RBRACK] = ACTIONS(557), - [anon_sym_CARET] = ACTIONS(557), - [anon_sym__] = ACTIONS(557), - [anon_sym_BQUOTE] = ACTIONS(557), - [anon_sym_LBRACE] = ACTIONS(557), - [anon_sym_PIPE] = ACTIONS(557), - [anon_sym_RBRACE] = ACTIONS(557), - [anon_sym_TILDE] = ACTIONS(557), - [aux_sym__html_block_1_token1] = ACTIONS(557), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(559), - [anon_sym_LT_QMARK] = ACTIONS(559), - [aux_sym__html_block_4_token1] = ACTIONS(559), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(557), - [aux_sym__html_block_6_token1] = ACTIONS(559), - [aux_sym__html_block_6_token2] = ACTIONS(557), - [sym__open_tag_html_block] = ACTIONS(557), - [sym__open_tag_html_block_newline] = ACTIONS(557), - [sym__closing_tag_html_block] = ACTIONS(557), - [sym__closing_tag_html_block_newline] = ACTIONS(557), - [sym_backslash_escape] = ACTIONS(557), - [sym_entity_reference] = ACTIONS(557), - [sym_numeric_character_reference] = ACTIONS(557), - [sym_uri_autolink] = ACTIONS(557), - [sym_email_autolink] = ACTIONS(557), - [sym__whitespace_ge_2] = ACTIONS(557), - [aux_sym__whitespace_token1] = ACTIONS(559), - [sym__word_no_digit] = ACTIONS(557), - [sym__digits] = ACTIONS(557), - [aux_sym__newline_token1] = ACTIONS(557), - [sym__block_close] = ACTIONS(557), - [sym__block_continuation] = ACTIONS(125), - [sym__block_quote_continuation] = ACTIONS(125), - [sym__block_quote_start] = ACTIONS(557), - [sym__indented_chunk_start] = ACTIONS(557), - [sym_atx_h1_marker] = ACTIONS(557), - [sym_atx_h2_marker] = ACTIONS(557), - [sym_atx_h3_marker] = ACTIONS(557), - [sym_atx_h4_marker] = ACTIONS(557), - [sym_atx_h5_marker] = ACTIONS(557), - [sym_atx_h6_marker] = ACTIONS(557), - [sym__thematic_break] = ACTIONS(557), - [sym__list_marker_minus] = ACTIONS(557), - [sym__list_marker_plus] = ACTIONS(557), - [sym__list_marker_star] = ACTIONS(557), - [sym__list_marker_parenthesis] = ACTIONS(557), - [sym__list_marker_dot] = ACTIONS(557), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(557), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(557), - [sym__list_marker_star_dont_interrupt] = ACTIONS(557), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(557), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(557), - [sym__fenced_code_block_start_backtick] = ACTIONS(557), - [sym__fenced_code_block_start_tilde] = ACTIONS(557), - [sym__blank_line_start] = ACTIONS(557), - [sym__code_span_start] = ACTIONS(557), - [sym__emphasis_open_star] = ACTIONS(557), - [sym__emphasis_open_underscore] = ACTIONS(557), - [sym__last_token_whitespace] = ACTIONS(125), - }, - [144] = { - [aux_sym__ignore_matching_tokens] = STATE(137), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_DQUOTE] = ACTIONS(557), - [anon_sym_POUND] = ACTIONS(557), - [anon_sym_DOLLAR] = ACTIONS(557), - [anon_sym_PERCENT] = ACTIONS(557), - [anon_sym_AMP] = ACTIONS(559), - [anon_sym_SQUOTE] = ACTIONS(557), - [anon_sym_LPAREN] = ACTIONS(557), - [anon_sym_RPAREN] = ACTIONS(557), - [anon_sym_STAR] = ACTIONS(557), - [anon_sym_PLUS] = ACTIONS(557), - [anon_sym_COMMA] = ACTIONS(557), - [anon_sym_DASH] = ACTIONS(557), - [anon_sym_DOT] = ACTIONS(557), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_COLON] = ACTIONS(557), - [anon_sym_SEMI] = ACTIONS(557), - [anon_sym_LT] = ACTIONS(559), - [anon_sym_EQ] = ACTIONS(557), - [anon_sym_GT] = ACTIONS(557), - [anon_sym_QMARK] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(557), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(559), - [anon_sym_RBRACK] = ACTIONS(557), - [anon_sym_CARET] = ACTIONS(557), - [anon_sym__] = ACTIONS(557), - [anon_sym_BQUOTE] = ACTIONS(557), - [anon_sym_LBRACE] = ACTIONS(557), - [anon_sym_PIPE] = ACTIONS(557), - [anon_sym_RBRACE] = ACTIONS(557), - [anon_sym_TILDE] = ACTIONS(557), - [aux_sym__html_block_1_token1] = ACTIONS(557), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(559), - [anon_sym_LT_QMARK] = ACTIONS(559), - [aux_sym__html_block_4_token1] = ACTIONS(559), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(557), - [aux_sym__html_block_6_token1] = ACTIONS(559), - [aux_sym__html_block_6_token2] = ACTIONS(557), - [sym__open_tag_html_block] = ACTIONS(557), - [sym__open_tag_html_block_newline] = ACTIONS(557), - [sym__closing_tag_html_block] = ACTIONS(557), - [sym__closing_tag_html_block_newline] = ACTIONS(557), - [sym_backslash_escape] = ACTIONS(557), - [sym_entity_reference] = ACTIONS(557), - [sym_numeric_character_reference] = ACTIONS(557), - [sym_uri_autolink] = ACTIONS(557), - [sym_email_autolink] = ACTIONS(557), - [sym__whitespace_ge_2] = ACTIONS(557), - [aux_sym__whitespace_token1] = ACTIONS(559), - [sym__word_no_digit] = ACTIONS(557), - [sym__digits] = ACTIONS(557), - [aux_sym__newline_token1] = ACTIONS(557), - [sym__block_close] = ACTIONS(557), - [sym__block_continuation] = ACTIONS(805), - [sym__block_quote_continuation] = ACTIONS(805), - [sym__block_quote_start] = ACTIONS(557), - [sym__indented_chunk_start] = ACTIONS(557), - [sym_atx_h1_marker] = ACTIONS(557), - [sym_atx_h2_marker] = ACTIONS(557), - [sym_atx_h3_marker] = ACTIONS(557), - [sym_atx_h4_marker] = ACTIONS(557), - [sym_atx_h5_marker] = ACTIONS(557), - [sym_atx_h6_marker] = ACTIONS(557), - [sym__thematic_break] = ACTIONS(557), - [sym__list_marker_minus] = ACTIONS(557), - [sym__list_marker_plus] = ACTIONS(557), - [sym__list_marker_star] = ACTIONS(557), - [sym__list_marker_parenthesis] = ACTIONS(557), - [sym__list_marker_dot] = ACTIONS(557), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(557), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(557), - [sym__list_marker_star_dont_interrupt] = ACTIONS(557), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(557), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(557), - [sym__fenced_code_block_start_backtick] = ACTIONS(557), - [sym__fenced_code_block_start_tilde] = ACTIONS(557), - [sym__blank_line_start] = ACTIONS(557), - [sym__code_span_start] = ACTIONS(557), - [sym__emphasis_open_star] = ACTIONS(557), - [sym__emphasis_open_underscore] = ACTIONS(557), - [sym__last_token_whitespace] = ACTIONS(805), - }, - [145] = { - [aux_sym__ignore_matching_tokens] = STATE(202), - [ts_builtin_sym_end] = 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), - [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(807), - [sym_numeric_character_reference] = ACTIONS(807), - [sym_uri_autolink] = ACTIONS(807), - [sym_email_autolink] = 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(111), - [sym__block_quote_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__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__emphasis_open_star] = ACTIONS(807), - [sym__emphasis_open_underscore] = ACTIONS(807), - [sym__last_token_whitespace] = ACTIONS(111), - }, - [146] = { - [aux_sym__ignore_matching_tokens] = STATE(275), - [anon_sym_BANG] = ACTIONS(811), - [anon_sym_DQUOTE] = ACTIONS(811), - [anon_sym_POUND] = ACTIONS(811), - [anon_sym_DOLLAR] = ACTIONS(811), - [anon_sym_PERCENT] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(813), - [anon_sym_SQUOTE] = ACTIONS(811), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_RPAREN] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_PLUS] = ACTIONS(811), - [anon_sym_COMMA] = ACTIONS(811), - [anon_sym_DASH] = ACTIONS(811), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_SLASH] = ACTIONS(811), - [anon_sym_COLON] = ACTIONS(811), - [anon_sym_SEMI] = ACTIONS(811), - [anon_sym_LT] = ACTIONS(813), - [anon_sym_EQ] = ACTIONS(811), - [anon_sym_GT] = ACTIONS(811), - [anon_sym_QMARK] = ACTIONS(811), - [anon_sym_AT] = ACTIONS(811), - [anon_sym_LBRACK] = ACTIONS(811), - [anon_sym_BSLASH] = ACTIONS(813), - [anon_sym_RBRACK] = ACTIONS(811), - [anon_sym_CARET] = ACTIONS(811), - [anon_sym__] = ACTIONS(811), - [anon_sym_BQUOTE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(811), - [anon_sym_PIPE] = ACTIONS(811), - [anon_sym_RBRACE] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(811), - [aux_sym__html_block_1_token1] = ACTIONS(811), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(813), - [anon_sym_LT_QMARK] = ACTIONS(813), - [aux_sym__html_block_4_token1] = ACTIONS(813), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(811), - [aux_sym__html_block_6_token1] = ACTIONS(813), - [aux_sym__html_block_6_token2] = ACTIONS(811), - [sym__open_tag_html_block] = ACTIONS(811), - [sym__open_tag_html_block_newline] = ACTIONS(811), - [sym__closing_tag_html_block] = ACTIONS(811), - [sym__closing_tag_html_block_newline] = ACTIONS(811), - [sym_backslash_escape] = ACTIONS(811), - [sym_entity_reference] = ACTIONS(811), - [sym_numeric_character_reference] = ACTIONS(811), - [sym_uri_autolink] = ACTIONS(811), - [sym_email_autolink] = ACTIONS(811), - [sym__whitespace_ge_2] = ACTIONS(811), - [aux_sym__whitespace_token1] = ACTIONS(813), - [sym__word_no_digit] = ACTIONS(811), - [sym__digits] = ACTIONS(811), - [aux_sym__newline_token1] = ACTIONS(811), - [sym__block_close] = ACTIONS(811), - [sym__block_continuation] = ACTIONS(125), - [sym__block_quote_continuation] = ACTIONS(125), - [sym__block_quote_start] = ACTIONS(811), - [sym__indented_chunk_start] = ACTIONS(811), - [sym_atx_h1_marker] = ACTIONS(811), - [sym_atx_h2_marker] = ACTIONS(811), - [sym_atx_h3_marker] = ACTIONS(811), - [sym_atx_h4_marker] = ACTIONS(811), - [sym_atx_h5_marker] = ACTIONS(811), - [sym_atx_h6_marker] = ACTIONS(811), - [sym__thematic_break] = ACTIONS(811), - [sym__list_marker_minus] = ACTIONS(811), - [sym__list_marker_plus] = ACTIONS(811), - [sym__list_marker_star] = ACTIONS(811), - [sym__list_marker_parenthesis] = ACTIONS(811), - [sym__list_marker_dot] = ACTIONS(811), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(811), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(811), - [sym__list_marker_star_dont_interrupt] = ACTIONS(811), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(811), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(811), - [sym__fenced_code_block_start_backtick] = ACTIONS(811), - [sym__fenced_code_block_start_tilde] = ACTIONS(811), - [sym__blank_line_start] = ACTIONS(811), - [sym__code_span_start] = ACTIONS(811), - [sym__emphasis_open_star] = ACTIONS(811), - [sym__emphasis_open_underscore] = ACTIONS(811), - [sym__last_token_whitespace] = ACTIONS(125), - }, - [147] = { - [aux_sym__ignore_matching_tokens] = STATE(139), - [anon_sym_BANG] = ACTIONS(811), - [anon_sym_DQUOTE] = ACTIONS(811), - [anon_sym_POUND] = ACTIONS(811), - [anon_sym_DOLLAR] = ACTIONS(811), - [anon_sym_PERCENT] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(813), - [anon_sym_SQUOTE] = ACTIONS(811), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_RPAREN] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_PLUS] = ACTIONS(811), - [anon_sym_COMMA] = ACTIONS(811), - [anon_sym_DASH] = ACTIONS(811), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_SLASH] = ACTIONS(811), - [anon_sym_COLON] = ACTIONS(811), - [anon_sym_SEMI] = ACTIONS(811), - [anon_sym_LT] = ACTIONS(813), - [anon_sym_EQ] = ACTIONS(811), - [anon_sym_GT] = ACTIONS(811), - [anon_sym_QMARK] = ACTIONS(811), - [anon_sym_AT] = ACTIONS(811), - [anon_sym_LBRACK] = ACTIONS(811), - [anon_sym_BSLASH] = ACTIONS(813), - [anon_sym_RBRACK] = ACTIONS(811), - [anon_sym_CARET] = ACTIONS(811), - [anon_sym__] = ACTIONS(811), - [anon_sym_BQUOTE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(811), - [anon_sym_PIPE] = ACTIONS(811), - [anon_sym_RBRACE] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(811), - [aux_sym__html_block_1_token1] = ACTIONS(811), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(813), - [anon_sym_LT_QMARK] = ACTIONS(813), - [aux_sym__html_block_4_token1] = ACTIONS(813), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(811), - [aux_sym__html_block_6_token1] = ACTIONS(813), - [aux_sym__html_block_6_token2] = ACTIONS(811), - [sym__open_tag_html_block] = ACTIONS(811), - [sym__open_tag_html_block_newline] = ACTIONS(811), - [sym__closing_tag_html_block] = ACTIONS(811), - [sym__closing_tag_html_block_newline] = ACTIONS(811), - [sym_backslash_escape] = ACTIONS(811), - [sym_entity_reference] = ACTIONS(811), - [sym_numeric_character_reference] = ACTIONS(811), - [sym_uri_autolink] = ACTIONS(811), - [sym_email_autolink] = ACTIONS(811), - [sym__whitespace_ge_2] = ACTIONS(811), - [aux_sym__whitespace_token1] = ACTIONS(813), - [sym__word_no_digit] = ACTIONS(811), - [sym__digits] = ACTIONS(811), - [aux_sym__newline_token1] = ACTIONS(811), - [sym__block_close] = ACTIONS(811), - [sym__block_continuation] = ACTIONS(815), - [sym__block_quote_continuation] = ACTIONS(815), - [sym__block_quote_start] = ACTIONS(811), - [sym__indented_chunk_start] = ACTIONS(811), - [sym_atx_h1_marker] = ACTIONS(811), - [sym_atx_h2_marker] = ACTIONS(811), - [sym_atx_h3_marker] = ACTIONS(811), - [sym_atx_h4_marker] = ACTIONS(811), - [sym_atx_h5_marker] = ACTIONS(811), - [sym_atx_h6_marker] = ACTIONS(811), - [sym__thematic_break] = ACTIONS(811), - [sym__list_marker_minus] = ACTIONS(811), - [sym__list_marker_plus] = ACTIONS(811), - [sym__list_marker_star] = ACTIONS(811), - [sym__list_marker_parenthesis] = ACTIONS(811), - [sym__list_marker_dot] = ACTIONS(811), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(811), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(811), - [sym__list_marker_star_dont_interrupt] = ACTIONS(811), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(811), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(811), - [sym__fenced_code_block_start_backtick] = ACTIONS(811), - [sym__fenced_code_block_start_tilde] = ACTIONS(811), - [sym__blank_line_start] = ACTIONS(811), - [sym__code_span_start] = ACTIONS(811), - [sym__emphasis_open_star] = ACTIONS(811), - [sym__emphasis_open_underscore] = ACTIONS(811), - [sym__last_token_whitespace] = ACTIONS(815), - }, - [148] = { - [aux_sym__ignore_matching_tokens] = STATE(202), - [ts_builtin_sym_end] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_DQUOTE] = ACTIONS(799), - [anon_sym_POUND] = ACTIONS(799), - [anon_sym_DOLLAR] = ACTIONS(799), - [anon_sym_PERCENT] = ACTIONS(799), - [anon_sym_AMP] = ACTIONS(801), - [anon_sym_SQUOTE] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(799), - [anon_sym_RPAREN] = ACTIONS(799), - [anon_sym_STAR] = ACTIONS(799), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_COMMA] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_DOT] = ACTIONS(799), - [anon_sym_SLASH] = ACTIONS(799), - [anon_sym_COLON] = ACTIONS(799), - [anon_sym_SEMI] = ACTIONS(799), - [anon_sym_LT] = ACTIONS(801), - [anon_sym_EQ] = ACTIONS(799), - [anon_sym_GT] = ACTIONS(799), - [anon_sym_QMARK] = ACTIONS(799), - [anon_sym_AT] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(799), - [anon_sym_BSLASH] = ACTIONS(801), - [anon_sym_RBRACK] = ACTIONS(799), - [anon_sym_CARET] = ACTIONS(799), - [anon_sym__] = ACTIONS(799), - [anon_sym_BQUOTE] = ACTIONS(799), - [anon_sym_LBRACE] = ACTIONS(799), - [anon_sym_PIPE] = ACTIONS(799), - [anon_sym_RBRACE] = ACTIONS(799), - [anon_sym_TILDE] = ACTIONS(799), - [aux_sym__html_block_1_token1] = ACTIONS(799), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(801), - [anon_sym_LT_QMARK] = ACTIONS(801), - [aux_sym__html_block_4_token1] = ACTIONS(801), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(799), - [aux_sym__html_block_6_token1] = ACTIONS(801), - [aux_sym__html_block_6_token2] = ACTIONS(799), - [sym__open_tag_html_block] = ACTIONS(799), - [sym__open_tag_html_block_newline] = ACTIONS(799), - [sym__closing_tag_html_block] = ACTIONS(799), - [sym__closing_tag_html_block_newline] = ACTIONS(799), - [sym_backslash_escape] = ACTIONS(799), - [sym_entity_reference] = ACTIONS(799), - [sym_numeric_character_reference] = ACTIONS(799), - [sym_uri_autolink] = ACTIONS(799), - [sym_email_autolink] = ACTIONS(799), - [sym__whitespace_ge_2] = ACTIONS(799), - [aux_sym__whitespace_token1] = ACTIONS(801), - [sym__word_no_digit] = ACTIONS(799), - [sym__digits] = ACTIONS(799), - [aux_sym__newline_token1] = ACTIONS(799), - [sym__block_continuation] = ACTIONS(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(799), - [sym__indented_chunk_start] = ACTIONS(799), - [sym_atx_h1_marker] = ACTIONS(799), - [sym_atx_h2_marker] = ACTIONS(799), - [sym_atx_h3_marker] = ACTIONS(799), - [sym_atx_h4_marker] = ACTIONS(799), - [sym_atx_h5_marker] = ACTIONS(799), - [sym_atx_h6_marker] = ACTIONS(799), - [sym__thematic_break] = ACTIONS(799), - [sym__list_marker_minus] = ACTIONS(799), - [sym__list_marker_plus] = ACTIONS(799), - [sym__list_marker_star] = ACTIONS(799), - [sym__list_marker_parenthesis] = ACTIONS(799), - [sym__list_marker_dot] = ACTIONS(799), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(799), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(799), - [sym__list_marker_star_dont_interrupt] = ACTIONS(799), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(799), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(799), - [sym__fenced_code_block_start_backtick] = ACTIONS(799), - [sym__fenced_code_block_start_tilde] = ACTIONS(799), - [sym__blank_line_start] = ACTIONS(799), - [sym__code_span_start] = ACTIONS(799), - [sym__emphasis_open_star] = ACTIONS(799), - [sym__emphasis_open_underscore] = ACTIONS(799), - [sym__last_token_whitespace] = ACTIONS(111), - }, - [149] = { - [aux_sym__ignore_matching_tokens] = STATE(202), - [ts_builtin_sym_end] = ACTIONS(817), - [anon_sym_BANG] = ACTIONS(817), - [anon_sym_DQUOTE] = ACTIONS(817), - [anon_sym_POUND] = ACTIONS(817), - [anon_sym_DOLLAR] = ACTIONS(817), - [anon_sym_PERCENT] = ACTIONS(817), - [anon_sym_AMP] = ACTIONS(819), - [anon_sym_SQUOTE] = ACTIONS(817), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(817), - [anon_sym_STAR] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_COMMA] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_DOT] = ACTIONS(817), - [anon_sym_SLASH] = ACTIONS(817), - [anon_sym_COLON] = ACTIONS(817), - [anon_sym_SEMI] = ACTIONS(817), - [anon_sym_LT] = ACTIONS(819), - [anon_sym_EQ] = ACTIONS(817), - [anon_sym_GT] = ACTIONS(817), - [anon_sym_QMARK] = ACTIONS(817), - [anon_sym_AT] = ACTIONS(817), - [anon_sym_LBRACK] = ACTIONS(817), - [anon_sym_BSLASH] = ACTIONS(819), - [anon_sym_RBRACK] = ACTIONS(817), - [anon_sym_CARET] = ACTIONS(817), - [anon_sym__] = ACTIONS(817), - [anon_sym_BQUOTE] = ACTIONS(817), - [anon_sym_LBRACE] = ACTIONS(817), - [anon_sym_PIPE] = ACTIONS(817), - [anon_sym_RBRACE] = ACTIONS(817), - [anon_sym_TILDE] = ACTIONS(817), - [aux_sym__html_block_1_token1] = ACTIONS(817), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(819), - [anon_sym_LT_QMARK] = ACTIONS(819), - [aux_sym__html_block_4_token1] = ACTIONS(819), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(817), - [aux_sym__html_block_6_token1] = ACTIONS(819), - [aux_sym__html_block_6_token2] = ACTIONS(817), - [sym__open_tag_html_block] = ACTIONS(817), - [sym__open_tag_html_block_newline] = ACTIONS(817), - [sym__closing_tag_html_block] = ACTIONS(817), - [sym__closing_tag_html_block_newline] = ACTIONS(817), - [sym_backslash_escape] = ACTIONS(817), - [sym_entity_reference] = ACTIONS(817), - [sym_numeric_character_reference] = ACTIONS(817), - [sym_uri_autolink] = ACTIONS(817), - [sym_email_autolink] = ACTIONS(817), - [sym__whitespace_ge_2] = ACTIONS(817), - [aux_sym__whitespace_token1] = ACTIONS(819), - [sym__word_no_digit] = ACTIONS(817), - [sym__digits] = ACTIONS(817), - [aux_sym__newline_token1] = ACTIONS(817), - [sym__block_continuation] = ACTIONS(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(817), - [sym__indented_chunk_start] = ACTIONS(817), - [sym_atx_h1_marker] = ACTIONS(817), - [sym_atx_h2_marker] = ACTIONS(817), - [sym_atx_h3_marker] = ACTIONS(817), - [sym_atx_h4_marker] = ACTIONS(817), - [sym_atx_h5_marker] = ACTIONS(817), - [sym_atx_h6_marker] = ACTIONS(817), - [sym__thematic_break] = ACTIONS(817), - [sym__list_marker_minus] = ACTIONS(817), - [sym__list_marker_plus] = ACTIONS(817), - [sym__list_marker_star] = ACTIONS(817), - [sym__list_marker_parenthesis] = ACTIONS(817), - [sym__list_marker_dot] = ACTIONS(817), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(817), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(817), - [sym__list_marker_star_dont_interrupt] = ACTIONS(817), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(817), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(817), - [sym__fenced_code_block_start_backtick] = ACTIONS(817), - [sym__fenced_code_block_start_tilde] = ACTIONS(817), - [sym__blank_line_start] = ACTIONS(817), - [sym__code_span_start] = ACTIONS(817), - [sym__emphasis_open_star] = ACTIONS(817), - [sym__emphasis_open_underscore] = ACTIONS(817), - [sym__last_token_whitespace] = ACTIONS(111), - }, - [150] = { - [aux_sym__ignore_matching_tokens] = STATE(112), - [ts_builtin_sym_end] = ACTIONS(821), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(821), - [anon_sym_POUND] = ACTIONS(821), - [anon_sym_DOLLAR] = ACTIONS(821), - [anon_sym_PERCENT] = ACTIONS(821), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_SQUOTE] = ACTIONS(821), - [anon_sym_LPAREN] = ACTIONS(821), - [anon_sym_RPAREN] = ACTIONS(821), - [anon_sym_STAR] = ACTIONS(821), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_COMMA] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_SLASH] = ACTIONS(821), - [anon_sym_COLON] = ACTIONS(821), - [anon_sym_SEMI] = ACTIONS(821), - [anon_sym_LT] = ACTIONS(823), - [anon_sym_EQ] = ACTIONS(821), - [anon_sym_GT] = ACTIONS(821), - [anon_sym_QMARK] = ACTIONS(821), - [anon_sym_AT] = ACTIONS(821), - [anon_sym_LBRACK] = ACTIONS(821), - [anon_sym_BSLASH] = ACTIONS(823), - [anon_sym_RBRACK] = ACTIONS(821), - [anon_sym_CARET] = ACTIONS(821), - [anon_sym__] = ACTIONS(821), - [anon_sym_BQUOTE] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(821), - [anon_sym_PIPE] = ACTIONS(821), - [anon_sym_RBRACE] = ACTIONS(821), - [anon_sym_TILDE] = ACTIONS(821), - [aux_sym__html_block_1_token1] = ACTIONS(821), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(823), - [anon_sym_LT_QMARK] = ACTIONS(823), - [aux_sym__html_block_4_token1] = ACTIONS(823), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(821), - [aux_sym__html_block_6_token1] = ACTIONS(823), - [aux_sym__html_block_6_token2] = ACTIONS(821), - [sym__open_tag_html_block] = ACTIONS(821), - [sym__open_tag_html_block_newline] = ACTIONS(821), - [sym__closing_tag_html_block] = ACTIONS(821), - [sym__closing_tag_html_block_newline] = ACTIONS(821), - [sym_backslash_escape] = ACTIONS(821), - [sym_entity_reference] = ACTIONS(821), - [sym_numeric_character_reference] = ACTIONS(821), - [sym_uri_autolink] = ACTIONS(821), - [sym_email_autolink] = ACTIONS(821), - [sym__whitespace_ge_2] = ACTIONS(821), - [aux_sym__whitespace_token1] = ACTIONS(823), - [sym__word_no_digit] = ACTIONS(821), - [sym__digits] = ACTIONS(821), - [aux_sym__newline_token1] = ACTIONS(821), - [sym__block_continuation] = ACTIONS(825), - [sym__block_quote_continuation] = ACTIONS(825), - [sym__block_quote_start] = ACTIONS(821), - [sym__indented_chunk_start] = ACTIONS(821), - [sym_atx_h1_marker] = ACTIONS(821), - [sym_atx_h2_marker] = ACTIONS(821), - [sym_atx_h3_marker] = ACTIONS(821), - [sym_atx_h4_marker] = ACTIONS(821), - [sym_atx_h5_marker] = ACTIONS(821), - [sym_atx_h6_marker] = ACTIONS(821), - [sym__thematic_break] = ACTIONS(821), - [sym__list_marker_minus] = ACTIONS(821), - [sym__list_marker_plus] = ACTIONS(821), - [sym__list_marker_star] = ACTIONS(821), - [sym__list_marker_parenthesis] = ACTIONS(821), - [sym__list_marker_dot] = ACTIONS(821), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(821), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(821), - [sym__list_marker_star_dont_interrupt] = ACTIONS(821), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(821), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(821), - [sym__fenced_code_block_start_backtick] = ACTIONS(821), - [sym__fenced_code_block_start_tilde] = ACTIONS(821), - [sym__blank_line_start] = ACTIONS(821), - [sym__code_span_start] = ACTIONS(821), - [sym__emphasis_open_star] = ACTIONS(821), - [sym__emphasis_open_underscore] = ACTIONS(821), - [sym__last_token_whitespace] = ACTIONS(825), - }, - [151] = { - [aux_sym__ignore_matching_tokens] = STATE(275), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_DQUOTE] = ACTIONS(827), - [anon_sym_POUND] = ACTIONS(827), - [anon_sym_DOLLAR] = ACTIONS(827), - [anon_sym_PERCENT] = ACTIONS(827), - [anon_sym_AMP] = ACTIONS(829), - [anon_sym_SQUOTE] = ACTIONS(827), - [anon_sym_LPAREN] = ACTIONS(827), - [anon_sym_RPAREN] = ACTIONS(827), - [anon_sym_STAR] = ACTIONS(827), - [anon_sym_PLUS] = ACTIONS(827), - [anon_sym_COMMA] = ACTIONS(827), - [anon_sym_DASH] = ACTIONS(827), - [anon_sym_DOT] = ACTIONS(827), - [anon_sym_SLASH] = ACTIONS(827), - [anon_sym_COLON] = ACTIONS(827), - [anon_sym_SEMI] = ACTIONS(827), - [anon_sym_LT] = ACTIONS(829), - [anon_sym_EQ] = ACTIONS(827), - [anon_sym_GT] = ACTIONS(827), - [anon_sym_QMARK] = ACTIONS(827), - [anon_sym_AT] = ACTIONS(827), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_BSLASH] = ACTIONS(829), - [anon_sym_RBRACK] = ACTIONS(827), - [anon_sym_CARET] = ACTIONS(827), - [anon_sym__] = ACTIONS(827), - [anon_sym_BQUOTE] = ACTIONS(827), - [anon_sym_LBRACE] = ACTIONS(827), - [anon_sym_PIPE] = ACTIONS(827), - [anon_sym_RBRACE] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(827), - [aux_sym__html_block_1_token1] = ACTIONS(827), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(829), - [anon_sym_LT_QMARK] = ACTIONS(829), - [aux_sym__html_block_4_token1] = ACTIONS(829), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(827), - [aux_sym__html_block_6_token1] = ACTIONS(829), - [aux_sym__html_block_6_token2] = ACTIONS(827), - [sym__open_tag_html_block] = ACTIONS(827), - [sym__open_tag_html_block_newline] = ACTIONS(827), - [sym__closing_tag_html_block] = ACTIONS(827), - [sym__closing_tag_html_block_newline] = ACTIONS(827), - [sym_backslash_escape] = ACTIONS(827), - [sym_entity_reference] = ACTIONS(827), - [sym_numeric_character_reference] = ACTIONS(827), - [sym_uri_autolink] = ACTIONS(827), - [sym_email_autolink] = ACTIONS(827), - [sym__whitespace_ge_2] = ACTIONS(827), - [aux_sym__whitespace_token1] = ACTIONS(829), - [sym__word_no_digit] = ACTIONS(827), - [sym__digits] = ACTIONS(827), - [aux_sym__newline_token1] = ACTIONS(827), - [sym__block_close] = ACTIONS(827), - [sym__block_continuation] = ACTIONS(125), - [sym__block_quote_continuation] = ACTIONS(125), - [sym__block_quote_start] = ACTIONS(827), - [sym__indented_chunk_start] = ACTIONS(827), - [sym_atx_h1_marker] = ACTIONS(827), - [sym_atx_h2_marker] = ACTIONS(827), - [sym_atx_h3_marker] = ACTIONS(827), - [sym_atx_h4_marker] = ACTIONS(827), - [sym_atx_h5_marker] = ACTIONS(827), - [sym_atx_h6_marker] = ACTIONS(827), - [sym__thematic_break] = ACTIONS(827), - [sym__list_marker_minus] = ACTIONS(827), - [sym__list_marker_plus] = ACTIONS(827), - [sym__list_marker_star] = ACTIONS(827), - [sym__list_marker_parenthesis] = ACTIONS(827), - [sym__list_marker_dot] = ACTIONS(827), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(827), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(827), - [sym__list_marker_star_dont_interrupt] = ACTIONS(827), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(827), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(827), - [sym__fenced_code_block_start_backtick] = ACTIONS(827), - [sym__fenced_code_block_start_tilde] = ACTIONS(827), - [sym__blank_line_start] = ACTIONS(827), - [sym__code_span_start] = ACTIONS(827), - [sym__emphasis_open_star] = ACTIONS(827), - [sym__emphasis_open_underscore] = ACTIONS(827), - [sym__last_token_whitespace] = ACTIONS(125), - }, - [152] = { - [aux_sym__ignore_matching_tokens] = STATE(275), - [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), - [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(831), - [sym_numeric_character_reference] = ACTIONS(831), - [sym_uri_autolink] = ACTIONS(831), - [sym_email_autolink] = 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(125), - [sym__block_quote_continuation] = ACTIONS(125), - [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__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__emphasis_open_star] = ACTIONS(831), - [sym__emphasis_open_underscore] = ACTIONS(831), - [sym__last_token_whitespace] = ACTIONS(125), - }, - [153] = { - [aux_sym__ignore_matching_tokens] = STATE(275), - [anon_sym_BANG] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(835), - [anon_sym_POUND] = ACTIONS(835), - [anon_sym_DOLLAR] = ACTIONS(835), - [anon_sym_PERCENT] = ACTIONS(835), - [anon_sym_AMP] = ACTIONS(837), - [anon_sym_SQUOTE] = ACTIONS(835), - [anon_sym_LPAREN] = ACTIONS(835), - [anon_sym_RPAREN] = ACTIONS(835), - [anon_sym_STAR] = ACTIONS(835), - [anon_sym_PLUS] = ACTIONS(835), - [anon_sym_COMMA] = ACTIONS(835), - [anon_sym_DASH] = ACTIONS(835), - [anon_sym_DOT] = ACTIONS(835), - [anon_sym_SLASH] = ACTIONS(835), - [anon_sym_COLON] = ACTIONS(835), - [anon_sym_SEMI] = ACTIONS(835), - [anon_sym_LT] = ACTIONS(837), - [anon_sym_EQ] = ACTIONS(835), - [anon_sym_GT] = ACTIONS(835), - [anon_sym_QMARK] = ACTIONS(835), - [anon_sym_AT] = ACTIONS(835), - [anon_sym_LBRACK] = ACTIONS(835), - [anon_sym_BSLASH] = ACTIONS(837), - [anon_sym_RBRACK] = ACTIONS(835), - [anon_sym_CARET] = ACTIONS(835), - [anon_sym__] = ACTIONS(835), - [anon_sym_BQUOTE] = ACTIONS(835), - [anon_sym_LBRACE] = ACTIONS(835), - [anon_sym_PIPE] = ACTIONS(835), - [anon_sym_RBRACE] = ACTIONS(835), - [anon_sym_TILDE] = ACTIONS(835), - [aux_sym__html_block_1_token1] = ACTIONS(835), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(837), - [anon_sym_LT_QMARK] = ACTIONS(837), - [aux_sym__html_block_4_token1] = ACTIONS(837), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(835), - [aux_sym__html_block_6_token1] = ACTIONS(837), - [aux_sym__html_block_6_token2] = ACTIONS(835), - [sym__open_tag_html_block] = ACTIONS(835), - [sym__open_tag_html_block_newline] = ACTIONS(835), - [sym__closing_tag_html_block] = ACTIONS(835), - [sym__closing_tag_html_block_newline] = ACTIONS(835), - [sym_backslash_escape] = ACTIONS(835), - [sym_entity_reference] = ACTIONS(835), - [sym_numeric_character_reference] = ACTIONS(835), - [sym_uri_autolink] = ACTIONS(835), - [sym_email_autolink] = ACTIONS(835), - [sym__whitespace_ge_2] = ACTIONS(835), - [aux_sym__whitespace_token1] = ACTIONS(837), - [sym__word_no_digit] = ACTIONS(835), - [sym__digits] = ACTIONS(835), - [aux_sym__newline_token1] = ACTIONS(835), - [sym__block_close] = ACTIONS(835), - [sym__block_continuation] = ACTIONS(125), - [sym__block_quote_continuation] = ACTIONS(125), - [sym__block_quote_start] = ACTIONS(835), - [sym__indented_chunk_start] = ACTIONS(835), - [sym_atx_h1_marker] = ACTIONS(835), - [sym_atx_h2_marker] = ACTIONS(835), - [sym_atx_h3_marker] = ACTIONS(835), - [sym_atx_h4_marker] = ACTIONS(835), - [sym_atx_h5_marker] = ACTIONS(835), - [sym_atx_h6_marker] = ACTIONS(835), - [sym__thematic_break] = ACTIONS(835), - [sym__list_marker_minus] = ACTIONS(835), - [sym__list_marker_plus] = ACTIONS(835), - [sym__list_marker_star] = ACTIONS(835), - [sym__list_marker_parenthesis] = ACTIONS(835), - [sym__list_marker_dot] = ACTIONS(835), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(835), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(835), - [sym__list_marker_star_dont_interrupt] = ACTIONS(835), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(835), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(835), - [sym__fenced_code_block_start_backtick] = ACTIONS(835), - [sym__fenced_code_block_start_tilde] = ACTIONS(835), - [sym__blank_line_start] = ACTIONS(835), - [sym__code_span_start] = ACTIONS(835), - [sym__emphasis_open_star] = ACTIONS(835), - [sym__emphasis_open_underscore] = ACTIONS(835), - [sym__last_token_whitespace] = ACTIONS(125), - }, - [154] = { - [aux_sym__ignore_matching_tokens] = STATE(275), - [anon_sym_BANG] = ACTIONS(817), - [anon_sym_DQUOTE] = ACTIONS(817), - [anon_sym_POUND] = ACTIONS(817), - [anon_sym_DOLLAR] = ACTIONS(817), - [anon_sym_PERCENT] = ACTIONS(817), - [anon_sym_AMP] = ACTIONS(819), - [anon_sym_SQUOTE] = ACTIONS(817), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(817), - [anon_sym_STAR] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_COMMA] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_DOT] = ACTIONS(817), - [anon_sym_SLASH] = ACTIONS(817), - [anon_sym_COLON] = ACTIONS(817), - [anon_sym_SEMI] = ACTIONS(817), - [anon_sym_LT] = ACTIONS(819), - [anon_sym_EQ] = ACTIONS(817), - [anon_sym_GT] = ACTIONS(817), - [anon_sym_QMARK] = ACTIONS(817), - [anon_sym_AT] = ACTIONS(817), - [anon_sym_LBRACK] = ACTIONS(817), - [anon_sym_BSLASH] = ACTIONS(819), - [anon_sym_RBRACK] = ACTIONS(817), - [anon_sym_CARET] = ACTIONS(817), - [anon_sym__] = ACTIONS(817), - [anon_sym_BQUOTE] = ACTIONS(817), - [anon_sym_LBRACE] = ACTIONS(817), - [anon_sym_PIPE] = ACTIONS(817), - [anon_sym_RBRACE] = ACTIONS(817), - [anon_sym_TILDE] = ACTIONS(817), - [aux_sym__html_block_1_token1] = ACTIONS(817), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(819), - [anon_sym_LT_QMARK] = ACTIONS(819), - [aux_sym__html_block_4_token1] = ACTIONS(819), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(817), - [aux_sym__html_block_6_token1] = ACTIONS(819), - [aux_sym__html_block_6_token2] = ACTIONS(817), - [sym__open_tag_html_block] = ACTIONS(817), - [sym__open_tag_html_block_newline] = ACTIONS(817), - [sym__closing_tag_html_block] = ACTIONS(817), - [sym__closing_tag_html_block_newline] = ACTIONS(817), - [sym_backslash_escape] = ACTIONS(817), - [sym_entity_reference] = ACTIONS(817), - [sym_numeric_character_reference] = ACTIONS(817), - [sym_uri_autolink] = ACTIONS(817), - [sym_email_autolink] = ACTIONS(817), - [sym__whitespace_ge_2] = ACTIONS(817), - [aux_sym__whitespace_token1] = ACTIONS(819), - [sym__word_no_digit] = ACTIONS(817), - [sym__digits] = ACTIONS(817), - [aux_sym__newline_token1] = ACTIONS(817), - [sym__block_close] = ACTIONS(817), - [sym__block_continuation] = ACTIONS(125), - [sym__block_quote_continuation] = ACTIONS(125), - [sym__block_quote_start] = ACTIONS(817), - [sym__indented_chunk_start] = ACTIONS(817), - [sym_atx_h1_marker] = ACTIONS(817), - [sym_atx_h2_marker] = ACTIONS(817), - [sym_atx_h3_marker] = ACTIONS(817), - [sym_atx_h4_marker] = ACTIONS(817), - [sym_atx_h5_marker] = ACTIONS(817), - [sym_atx_h6_marker] = ACTIONS(817), - [sym__thematic_break] = ACTIONS(817), - [sym__list_marker_minus] = ACTIONS(817), - [sym__list_marker_plus] = ACTIONS(817), - [sym__list_marker_star] = ACTIONS(817), - [sym__list_marker_parenthesis] = ACTIONS(817), - [sym__list_marker_dot] = ACTIONS(817), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(817), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(817), - [sym__list_marker_star_dont_interrupt] = ACTIONS(817), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(817), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(817), - [sym__fenced_code_block_start_backtick] = ACTIONS(817), - [sym__fenced_code_block_start_tilde] = ACTIONS(817), - [sym__blank_line_start] = ACTIONS(817), - [sym__code_span_start] = ACTIONS(817), - [sym__emphasis_open_star] = ACTIONS(817), - [sym__emphasis_open_underscore] = ACTIONS(817), - [sym__last_token_whitespace] = ACTIONS(125), - }, - [155] = { - [aux_sym__ignore_matching_tokens] = STATE(202), - [ts_builtin_sym_end] = ACTIONS(835), - [anon_sym_BANG] = ACTIONS(835), - [anon_sym_DQUOTE] = ACTIONS(835), - [anon_sym_POUND] = ACTIONS(835), - [anon_sym_DOLLAR] = ACTIONS(835), - [anon_sym_PERCENT] = ACTIONS(835), - [anon_sym_AMP] = ACTIONS(837), - [anon_sym_SQUOTE] = ACTIONS(835), - [anon_sym_LPAREN] = ACTIONS(835), - [anon_sym_RPAREN] = ACTIONS(835), - [anon_sym_STAR] = ACTIONS(835), - [anon_sym_PLUS] = ACTIONS(835), - [anon_sym_COMMA] = ACTIONS(835), - [anon_sym_DASH] = ACTIONS(835), - [anon_sym_DOT] = ACTIONS(835), - [anon_sym_SLASH] = ACTIONS(835), - [anon_sym_COLON] = ACTIONS(835), - [anon_sym_SEMI] = ACTIONS(835), - [anon_sym_LT] = ACTIONS(837), - [anon_sym_EQ] = ACTIONS(835), - [anon_sym_GT] = ACTIONS(835), - [anon_sym_QMARK] = ACTIONS(835), - [anon_sym_AT] = ACTIONS(835), - [anon_sym_LBRACK] = ACTIONS(835), - [anon_sym_BSLASH] = ACTIONS(837), - [anon_sym_RBRACK] = ACTIONS(835), - [anon_sym_CARET] = ACTIONS(835), - [anon_sym__] = ACTIONS(835), - [anon_sym_BQUOTE] = ACTIONS(835), - [anon_sym_LBRACE] = ACTIONS(835), - [anon_sym_PIPE] = ACTIONS(835), - [anon_sym_RBRACE] = ACTIONS(835), - [anon_sym_TILDE] = ACTIONS(835), - [aux_sym__html_block_1_token1] = ACTIONS(835), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(837), - [anon_sym_LT_QMARK] = ACTIONS(837), - [aux_sym__html_block_4_token1] = ACTIONS(837), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(835), - [aux_sym__html_block_6_token1] = ACTIONS(837), - [aux_sym__html_block_6_token2] = ACTIONS(835), - [sym__open_tag_html_block] = ACTIONS(835), - [sym__open_tag_html_block_newline] = ACTIONS(835), - [sym__closing_tag_html_block] = ACTIONS(835), - [sym__closing_tag_html_block_newline] = ACTIONS(835), - [sym_backslash_escape] = ACTIONS(835), - [sym_entity_reference] = ACTIONS(835), - [sym_numeric_character_reference] = ACTIONS(835), - [sym_uri_autolink] = ACTIONS(835), - [sym_email_autolink] = ACTIONS(835), - [sym__whitespace_ge_2] = ACTIONS(835), - [aux_sym__whitespace_token1] = ACTIONS(837), - [sym__word_no_digit] = ACTIONS(835), - [sym__digits] = ACTIONS(835), - [aux_sym__newline_token1] = ACTIONS(835), - [sym__block_continuation] = ACTIONS(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(835), - [sym__indented_chunk_start] = ACTIONS(835), - [sym_atx_h1_marker] = ACTIONS(835), - [sym_atx_h2_marker] = ACTIONS(835), - [sym_atx_h3_marker] = ACTIONS(835), - [sym_atx_h4_marker] = ACTIONS(835), - [sym_atx_h5_marker] = ACTIONS(835), - [sym_atx_h6_marker] = ACTIONS(835), - [sym__thematic_break] = ACTIONS(835), - [sym__list_marker_minus] = ACTIONS(835), - [sym__list_marker_plus] = ACTIONS(835), - [sym__list_marker_star] = ACTIONS(835), - [sym__list_marker_parenthesis] = ACTIONS(835), - [sym__list_marker_dot] = ACTIONS(835), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(835), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(835), - [sym__list_marker_star_dont_interrupt] = ACTIONS(835), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(835), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(835), - [sym__fenced_code_block_start_backtick] = ACTIONS(835), - [sym__fenced_code_block_start_tilde] = ACTIONS(835), - [sym__blank_line_start] = ACTIONS(835), - [sym__code_span_start] = ACTIONS(835), - [sym__emphasis_open_star] = ACTIONS(835), - [sym__emphasis_open_underscore] = ACTIONS(835), - [sym__last_token_whitespace] = ACTIONS(111), - }, - [156] = { - [aux_sym__ignore_matching_tokens] = STATE(275), - [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), - [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(807), - [sym_numeric_character_reference] = ACTIONS(807), - [sym_uri_autolink] = ACTIONS(807), - [sym_email_autolink] = 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(125), - [sym__block_quote_continuation] = ACTIONS(125), - [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__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__emphasis_open_star] = ACTIONS(807), - [sym__emphasis_open_underscore] = ACTIONS(807), - [sym__last_token_whitespace] = ACTIONS(125), - }, - [157] = { - [aux_sym__ignore_matching_tokens] = STATE(143), - [anon_sym_BANG] = ACTIONS(793), - [anon_sym_DQUOTE] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(793), - [anon_sym_PERCENT] = ACTIONS(793), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_SQUOTE] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_RPAREN] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_COMMA] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_DOT] = ACTIONS(793), - [anon_sym_SLASH] = ACTIONS(793), - [anon_sym_COLON] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_LT] = ACTIONS(795), - [anon_sym_EQ] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(793), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_AT] = ACTIONS(793), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_BSLASH] = ACTIONS(795), - [anon_sym_RBRACK] = ACTIONS(793), - [anon_sym_CARET] = ACTIONS(793), - [anon_sym__] = ACTIONS(793), - [anon_sym_BQUOTE] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_RBRACE] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(793), - [aux_sym__html_block_1_token1] = ACTIONS(793), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(795), - [anon_sym_LT_QMARK] = ACTIONS(795), - [aux_sym__html_block_4_token1] = ACTIONS(795), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(793), - [aux_sym__html_block_6_token1] = ACTIONS(795), - [aux_sym__html_block_6_token2] = ACTIONS(793), - [sym__open_tag_html_block] = ACTIONS(793), - [sym__open_tag_html_block_newline] = ACTIONS(793), - [sym__closing_tag_html_block] = ACTIONS(793), - [sym__closing_tag_html_block_newline] = ACTIONS(793), - [sym_backslash_escape] = ACTIONS(793), - [sym_entity_reference] = ACTIONS(793), - [sym_numeric_character_reference] = ACTIONS(793), - [sym_uri_autolink] = ACTIONS(793), - [sym_email_autolink] = ACTIONS(793), - [sym__whitespace_ge_2] = ACTIONS(793), - [aux_sym__whitespace_token1] = ACTIONS(795), - [sym__word_no_digit] = ACTIONS(793), - [sym__digits] = ACTIONS(793), - [aux_sym__newline_token1] = ACTIONS(793), - [sym__block_close] = ACTIONS(793), - [sym__block_continuation] = ACTIONS(839), - [sym__block_quote_continuation] = ACTIONS(839), - [sym__block_quote_start] = ACTIONS(793), - [sym__indented_chunk_start] = ACTIONS(793), - [sym_atx_h1_marker] = ACTIONS(793), - [sym_atx_h2_marker] = ACTIONS(793), - [sym_atx_h3_marker] = ACTIONS(793), - [sym_atx_h4_marker] = ACTIONS(793), - [sym_atx_h5_marker] = ACTIONS(793), - [sym_atx_h6_marker] = ACTIONS(793), - [sym__thematic_break] = ACTIONS(793), - [sym__list_marker_minus] = ACTIONS(793), - [sym__list_marker_plus] = ACTIONS(793), - [sym__list_marker_star] = ACTIONS(793), - [sym__list_marker_parenthesis] = ACTIONS(793), - [sym__list_marker_dot] = ACTIONS(793), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(793), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(793), - [sym__list_marker_star_dont_interrupt] = ACTIONS(793), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(793), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(793), - [sym__fenced_code_block_start_backtick] = ACTIONS(793), - [sym__fenced_code_block_start_tilde] = ACTIONS(793), - [sym__blank_line_start] = ACTIONS(793), - [sym__code_span_start] = ACTIONS(793), - [sym__emphasis_open_star] = ACTIONS(793), - [sym__emphasis_open_underscore] = ACTIONS(793), - [sym__last_token_whitespace] = ACTIONS(839), - }, - [158] = { - [aux_sym__ignore_matching_tokens] = STATE(275), - [anon_sym_BANG] = ACTIONS(793), - [anon_sym_DQUOTE] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(793), - [anon_sym_PERCENT] = ACTIONS(793), - [anon_sym_AMP] = ACTIONS(795), - [anon_sym_SQUOTE] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_RPAREN] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_COMMA] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_DOT] = ACTIONS(793), - [anon_sym_SLASH] = ACTIONS(793), - [anon_sym_COLON] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_LT] = ACTIONS(795), - [anon_sym_EQ] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(793), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_AT] = ACTIONS(793), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_BSLASH] = ACTIONS(795), - [anon_sym_RBRACK] = ACTIONS(793), - [anon_sym_CARET] = ACTIONS(793), - [anon_sym__] = ACTIONS(793), - [anon_sym_BQUOTE] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_RBRACE] = ACTIONS(793), - [anon_sym_TILDE] = ACTIONS(793), - [aux_sym__html_block_1_token1] = ACTIONS(793), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(795), - [anon_sym_LT_QMARK] = ACTIONS(795), - [aux_sym__html_block_4_token1] = ACTIONS(795), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(793), - [aux_sym__html_block_6_token1] = ACTIONS(795), - [aux_sym__html_block_6_token2] = ACTIONS(793), - [sym__open_tag_html_block] = ACTIONS(793), - [sym__open_tag_html_block_newline] = ACTIONS(793), - [sym__closing_tag_html_block] = ACTIONS(793), - [sym__closing_tag_html_block_newline] = ACTIONS(793), - [sym_backslash_escape] = ACTIONS(793), - [sym_entity_reference] = ACTIONS(793), - [sym_numeric_character_reference] = ACTIONS(793), - [sym_uri_autolink] = ACTIONS(793), - [sym_email_autolink] = ACTIONS(793), - [sym__whitespace_ge_2] = ACTIONS(793), - [aux_sym__whitespace_token1] = ACTIONS(795), - [sym__word_no_digit] = ACTIONS(793), - [sym__digits] = ACTIONS(793), - [aux_sym__newline_token1] = ACTIONS(793), - [sym__block_close] = ACTIONS(793), - [sym__block_continuation] = ACTIONS(125), - [sym__block_quote_continuation] = ACTIONS(125), - [sym__block_quote_start] = ACTIONS(793), - [sym__indented_chunk_start] = ACTIONS(793), - [sym_atx_h1_marker] = ACTIONS(793), - [sym_atx_h2_marker] = ACTIONS(793), - [sym_atx_h3_marker] = ACTIONS(793), - [sym_atx_h4_marker] = ACTIONS(793), - [sym_atx_h5_marker] = ACTIONS(793), - [sym_atx_h6_marker] = ACTIONS(793), - [sym__thematic_break] = ACTIONS(793), - [sym__list_marker_minus] = ACTIONS(793), - [sym__list_marker_plus] = ACTIONS(793), - [sym__list_marker_star] = ACTIONS(793), - [sym__list_marker_parenthesis] = ACTIONS(793), - [sym__list_marker_dot] = ACTIONS(793), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(793), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(793), - [sym__list_marker_star_dont_interrupt] = ACTIONS(793), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(793), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(793), - [sym__fenced_code_block_start_backtick] = ACTIONS(793), - [sym__fenced_code_block_start_tilde] = ACTIONS(793), - [sym__blank_line_start] = ACTIONS(793), - [sym__code_span_start] = ACTIONS(793), - [sym__emphasis_open_star] = ACTIONS(793), - [sym__emphasis_open_underscore] = ACTIONS(793), - [sym__last_token_whitespace] = ACTIONS(125), - }, - [159] = { - [aux_sym__ignore_matching_tokens] = STATE(146), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_DQUOTE] = ACTIONS(681), - [anon_sym_POUND] = ACTIONS(681), - [anon_sym_DOLLAR] = ACTIONS(681), - [anon_sym_PERCENT] = ACTIONS(681), - [anon_sym_AMP] = ACTIONS(683), - [anon_sym_SQUOTE] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(681), - [anon_sym_RPAREN] = ACTIONS(681), - [anon_sym_STAR] = ACTIONS(681), - [anon_sym_PLUS] = ACTIONS(681), - [anon_sym_COMMA] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(681), - [anon_sym_DOT] = ACTIONS(681), - [anon_sym_SLASH] = ACTIONS(681), - [anon_sym_COLON] = ACTIONS(681), - [anon_sym_SEMI] = ACTIONS(681), - [anon_sym_LT] = ACTIONS(683), - [anon_sym_EQ] = ACTIONS(681), - [anon_sym_GT] = ACTIONS(681), - [anon_sym_QMARK] = ACTIONS(681), - [anon_sym_AT] = ACTIONS(681), - [anon_sym_LBRACK] = ACTIONS(681), - [anon_sym_BSLASH] = ACTIONS(683), - [anon_sym_RBRACK] = ACTIONS(681), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym__] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(681), - [anon_sym_PIPE] = ACTIONS(681), - [anon_sym_RBRACE] = ACTIONS(681), - [anon_sym_TILDE] = ACTIONS(681), - [aux_sym__html_block_1_token1] = ACTIONS(681), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(683), - [anon_sym_LT_QMARK] = ACTIONS(683), - [aux_sym__html_block_4_token1] = ACTIONS(683), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(681), - [aux_sym__html_block_6_token1] = ACTIONS(683), - [aux_sym__html_block_6_token2] = ACTIONS(681), - [sym__open_tag_html_block] = ACTIONS(681), - [sym__open_tag_html_block_newline] = ACTIONS(681), - [sym__closing_tag_html_block] = ACTIONS(681), - [sym__closing_tag_html_block_newline] = ACTIONS(681), - [sym_backslash_escape] = ACTIONS(681), - [sym_entity_reference] = ACTIONS(681), - [sym_numeric_character_reference] = ACTIONS(681), - [sym_uri_autolink] = ACTIONS(681), - [sym_email_autolink] = ACTIONS(681), - [sym__whitespace_ge_2] = ACTIONS(681), - [aux_sym__whitespace_token1] = ACTIONS(683), - [sym__word_no_digit] = ACTIONS(681), - [sym__digits] = ACTIONS(681), - [aux_sym__newline_token1] = ACTIONS(681), - [sym__block_close] = ACTIONS(681), - [sym__block_continuation] = ACTIONS(841), - [sym__block_quote_continuation] = ACTIONS(841), - [sym__block_quote_start] = ACTIONS(681), - [sym__indented_chunk_start] = ACTIONS(681), - [sym_atx_h1_marker] = ACTIONS(681), - [sym_atx_h2_marker] = ACTIONS(681), - [sym_atx_h3_marker] = ACTIONS(681), - [sym_atx_h4_marker] = ACTIONS(681), - [sym_atx_h5_marker] = ACTIONS(681), - [sym_atx_h6_marker] = ACTIONS(681), - [sym__thematic_break] = ACTIONS(681), - [sym__list_marker_minus] = ACTIONS(681), - [sym__list_marker_plus] = ACTIONS(681), - [sym__list_marker_star] = ACTIONS(681), - [sym__list_marker_parenthesis] = ACTIONS(681), - [sym__list_marker_dot] = ACTIONS(681), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(681), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(681), - [sym__list_marker_star_dont_interrupt] = ACTIONS(681), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(681), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(681), - [sym__fenced_code_block_start_backtick] = ACTIONS(681), - [sym__fenced_code_block_start_tilde] = ACTIONS(681), - [sym__blank_line_start] = ACTIONS(681), - [sym__code_span_start] = ACTIONS(681), - [sym__emphasis_open_star] = ACTIONS(681), - [sym__emphasis_open_underscore] = ACTIONS(681), - [sym__last_token_whitespace] = ACTIONS(841), - }, - [160] = { - [aux_sym__ignore_matching_tokens] = STATE(275), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_DQUOTE] = ACTIONS(681), - [anon_sym_POUND] = ACTIONS(681), - [anon_sym_DOLLAR] = ACTIONS(681), - [anon_sym_PERCENT] = ACTIONS(681), - [anon_sym_AMP] = ACTIONS(683), - [anon_sym_SQUOTE] = ACTIONS(681), - [anon_sym_LPAREN] = ACTIONS(681), - [anon_sym_RPAREN] = ACTIONS(681), - [anon_sym_STAR] = ACTIONS(681), - [anon_sym_PLUS] = ACTIONS(681), - [anon_sym_COMMA] = ACTIONS(681), - [anon_sym_DASH] = ACTIONS(681), - [anon_sym_DOT] = ACTIONS(681), - [anon_sym_SLASH] = ACTIONS(681), - [anon_sym_COLON] = ACTIONS(681), - [anon_sym_SEMI] = ACTIONS(681), - [anon_sym_LT] = ACTIONS(683), - [anon_sym_EQ] = ACTIONS(681), - [anon_sym_GT] = ACTIONS(681), - [anon_sym_QMARK] = ACTIONS(681), - [anon_sym_AT] = ACTIONS(681), - [anon_sym_LBRACK] = ACTIONS(681), - [anon_sym_BSLASH] = ACTIONS(683), - [anon_sym_RBRACK] = ACTIONS(681), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym__] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(681), - [anon_sym_PIPE] = ACTIONS(681), - [anon_sym_RBRACE] = ACTIONS(681), - [anon_sym_TILDE] = ACTIONS(681), - [aux_sym__html_block_1_token1] = ACTIONS(681), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(683), - [anon_sym_LT_QMARK] = ACTIONS(683), - [aux_sym__html_block_4_token1] = ACTIONS(683), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(681), - [aux_sym__html_block_6_token1] = ACTIONS(683), - [aux_sym__html_block_6_token2] = ACTIONS(681), - [sym__open_tag_html_block] = ACTIONS(681), - [sym__open_tag_html_block_newline] = ACTIONS(681), - [sym__closing_tag_html_block] = ACTIONS(681), - [sym__closing_tag_html_block_newline] = ACTIONS(681), - [sym_backslash_escape] = ACTIONS(681), - [sym_entity_reference] = ACTIONS(681), - [sym_numeric_character_reference] = ACTIONS(681), - [sym_uri_autolink] = ACTIONS(681), - [sym_email_autolink] = ACTIONS(681), - [sym__whitespace_ge_2] = ACTIONS(681), - [aux_sym__whitespace_token1] = ACTIONS(683), - [sym__word_no_digit] = ACTIONS(681), - [sym__digits] = ACTIONS(681), - [aux_sym__newline_token1] = ACTIONS(681), - [sym__block_close] = ACTIONS(681), - [sym__block_continuation] = ACTIONS(125), - [sym__block_quote_continuation] = ACTIONS(125), - [sym__block_quote_start] = ACTIONS(681), - [sym__indented_chunk_start] = ACTIONS(681), - [sym_atx_h1_marker] = ACTIONS(681), - [sym_atx_h2_marker] = ACTIONS(681), - [sym_atx_h3_marker] = ACTIONS(681), - [sym_atx_h4_marker] = ACTIONS(681), - [sym_atx_h5_marker] = ACTIONS(681), - [sym_atx_h6_marker] = ACTIONS(681), - [sym__thematic_break] = ACTIONS(681), - [sym__list_marker_minus] = ACTIONS(681), - [sym__list_marker_plus] = ACTIONS(681), - [sym__list_marker_star] = ACTIONS(681), - [sym__list_marker_parenthesis] = ACTIONS(681), - [sym__list_marker_dot] = ACTIONS(681), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(681), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(681), - [sym__list_marker_star_dont_interrupt] = ACTIONS(681), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(681), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(681), - [sym__fenced_code_block_start_backtick] = ACTIONS(681), - [sym__fenced_code_block_start_tilde] = ACTIONS(681), - [sym__blank_line_start] = ACTIONS(681), - [sym__code_span_start] = ACTIONS(681), - [sym__emphasis_open_star] = ACTIONS(681), - [sym__emphasis_open_underscore] = ACTIONS(681), - [sym__last_token_whitespace] = ACTIONS(125), - }, - [161] = { - [aux_sym__ignore_matching_tokens] = STATE(202), - [ts_builtin_sym_end] = ACTIONS(821), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(821), - [anon_sym_POUND] = ACTIONS(821), - [anon_sym_DOLLAR] = ACTIONS(821), - [anon_sym_PERCENT] = ACTIONS(821), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_SQUOTE] = ACTIONS(821), - [anon_sym_LPAREN] = ACTIONS(821), - [anon_sym_RPAREN] = ACTIONS(821), - [anon_sym_STAR] = ACTIONS(821), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_COMMA] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_SLASH] = ACTIONS(821), - [anon_sym_COLON] = ACTIONS(821), - [anon_sym_SEMI] = ACTIONS(821), - [anon_sym_LT] = ACTIONS(823), - [anon_sym_EQ] = ACTIONS(821), - [anon_sym_GT] = ACTIONS(821), - [anon_sym_QMARK] = ACTIONS(821), - [anon_sym_AT] = ACTIONS(821), - [anon_sym_LBRACK] = ACTIONS(821), - [anon_sym_BSLASH] = ACTIONS(823), - [anon_sym_RBRACK] = ACTIONS(821), - [anon_sym_CARET] = ACTIONS(821), - [anon_sym__] = ACTIONS(821), - [anon_sym_BQUOTE] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(821), - [anon_sym_PIPE] = ACTIONS(821), - [anon_sym_RBRACE] = ACTIONS(821), - [anon_sym_TILDE] = ACTIONS(821), - [aux_sym__html_block_1_token1] = ACTIONS(821), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(823), - [anon_sym_LT_QMARK] = ACTIONS(823), - [aux_sym__html_block_4_token1] = ACTIONS(823), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(821), - [aux_sym__html_block_6_token1] = ACTIONS(823), - [aux_sym__html_block_6_token2] = ACTIONS(821), - [sym__open_tag_html_block] = ACTIONS(821), - [sym__open_tag_html_block_newline] = ACTIONS(821), - [sym__closing_tag_html_block] = ACTIONS(821), - [sym__closing_tag_html_block_newline] = ACTIONS(821), - [sym_backslash_escape] = ACTIONS(821), - [sym_entity_reference] = ACTIONS(821), - [sym_numeric_character_reference] = ACTIONS(821), - [sym_uri_autolink] = ACTIONS(821), - [sym_email_autolink] = ACTIONS(821), - [sym__whitespace_ge_2] = ACTIONS(821), - [aux_sym__whitespace_token1] = ACTIONS(823), - [sym__word_no_digit] = ACTIONS(821), - [sym__digits] = ACTIONS(821), - [aux_sym__newline_token1] = ACTIONS(821), - [sym__block_continuation] = ACTIONS(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(821), - [sym__indented_chunk_start] = ACTIONS(821), - [sym_atx_h1_marker] = ACTIONS(821), - [sym_atx_h2_marker] = ACTIONS(821), - [sym_atx_h3_marker] = ACTIONS(821), - [sym_atx_h4_marker] = ACTIONS(821), - [sym_atx_h5_marker] = ACTIONS(821), - [sym_atx_h6_marker] = ACTIONS(821), - [sym__thematic_break] = ACTIONS(821), - [sym__list_marker_minus] = ACTIONS(821), - [sym__list_marker_plus] = ACTIONS(821), - [sym__list_marker_star] = ACTIONS(821), - [sym__list_marker_parenthesis] = ACTIONS(821), - [sym__list_marker_dot] = ACTIONS(821), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(821), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(821), - [sym__list_marker_star_dont_interrupt] = ACTIONS(821), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(821), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(821), - [sym__fenced_code_block_start_backtick] = ACTIONS(821), - [sym__fenced_code_block_start_tilde] = ACTIONS(821), - [sym__blank_line_start] = ACTIONS(821), - [sym__code_span_start] = ACTIONS(821), - [sym__emphasis_open_star] = ACTIONS(821), - [sym__emphasis_open_underscore] = ACTIONS(821), - [sym__last_token_whitespace] = ACTIONS(111), + [aux_sym__ignore_matching_tokens] = STATE(160), + [anon_sym_BANG] = ACTIONS(397), + [anon_sym_DQUOTE] = ACTIONS(397), + [anon_sym_POUND] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_PERCENT] = ACTIONS(397), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_SQUOTE] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_RPAREN] = ACTIONS(397), + [anon_sym_STAR] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_COMMA] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(397), + [anon_sym_SLASH] = ACTIONS(397), + [anon_sym_COLON] = ACTIONS(397), + [anon_sym_SEMI] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_EQ] = ACTIONS(397), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(397), + [anon_sym_BSLASH] = ACTIONS(399), + [anon_sym_RBRACK] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(397), + [anon_sym__] = ACTIONS(397), + [anon_sym_BQUOTE] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_RBRACE] = ACTIONS(397), + [anon_sym_TILDE] = ACTIONS(397), + [aux_sym__html_block_1_token1] = ACTIONS(397), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(399), + [anon_sym_LT_QMARK] = ACTIONS(399), + [aux_sym__html_block_4_token1] = ACTIONS(399), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(397), + [aux_sym__html_block_6_token1] = ACTIONS(399), + [aux_sym__html_block_6_token2] = ACTIONS(397), + [sym__open_tag_html_block] = ACTIONS(397), + [sym__open_tag_html_block_newline] = ACTIONS(397), + [sym__closing_tag_html_block] = ACTIONS(397), + [sym__closing_tag_html_block_newline] = ACTIONS(397), + [sym_backslash_escape] = ACTIONS(397), + [sym_entity_reference] = ACTIONS(397), + [sym_numeric_character_reference] = ACTIONS(397), + [sym_uri_autolink] = ACTIONS(397), + [sym_email_autolink] = ACTIONS(397), + [sym__whitespace_ge_2] = ACTIONS(397), + [aux_sym__whitespace_token1] = ACTIONS(399), + [sym__word_no_digit] = ACTIONS(397), + [sym__digits] = ACTIONS(397), + [aux_sym__newline_token1] = ACTIONS(397), + [sym__block_close] = ACTIONS(397), + [sym__block_continuation] = ACTIONS(113), + [sym__block_quote_continuation] = ACTIONS(113), + [sym__block_quote_start] = ACTIONS(397), + [sym__indented_chunk_start] = ACTIONS(397), + [sym_atx_h1_marker] = ACTIONS(397), + [sym_atx_h2_marker] = ACTIONS(397), + [sym_atx_h3_marker] = ACTIONS(397), + [sym_atx_h4_marker] = ACTIONS(397), + [sym_atx_h5_marker] = ACTIONS(397), + [sym_atx_h6_marker] = ACTIONS(397), + [sym__thematic_break] = ACTIONS(397), + [sym__list_marker_minus] = ACTIONS(397), + [sym__list_marker_plus] = ACTIONS(397), + [sym__list_marker_star] = ACTIONS(397), + [sym__list_marker_parenthesis] = ACTIONS(397), + [sym__list_marker_dot] = ACTIONS(397), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(397), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(397), + [sym__list_marker_star_dont_interrupt] = ACTIONS(397), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(397), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(397), + [sym__fenced_code_block_start_backtick] = ACTIONS(397), + [sym__fenced_code_block_start_tilde] = ACTIONS(397), + [sym__blank_line_start] = ACTIONS(397), + [sym__code_span_start] = ACTIONS(397), + [sym__emphasis_open_star] = ACTIONS(397), + [sym__emphasis_open_underscore] = ACTIONS(397), + [sym__last_token_whitespace] = ACTIONS(113), }, - [162] = { - [aux_sym__ignore_matching_tokens] = STATE(275), - [anon_sym_BANG] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(677), - [anon_sym_POUND] = ACTIONS(677), - [anon_sym_DOLLAR] = ACTIONS(677), - [anon_sym_PERCENT] = ACTIONS(677), - [anon_sym_AMP] = ACTIONS(679), - [anon_sym_SQUOTE] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(677), - [anon_sym_RPAREN] = ACTIONS(677), - [anon_sym_STAR] = ACTIONS(677), - [anon_sym_PLUS] = ACTIONS(677), - [anon_sym_COMMA] = ACTIONS(677), - [anon_sym_DASH] = ACTIONS(677), - [anon_sym_DOT] = ACTIONS(677), - [anon_sym_SLASH] = ACTIONS(677), - [anon_sym_COLON] = ACTIONS(677), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_LT] = ACTIONS(679), - [anon_sym_EQ] = ACTIONS(677), - [anon_sym_GT] = ACTIONS(677), - [anon_sym_QMARK] = ACTIONS(677), - [anon_sym_AT] = ACTIONS(677), - [anon_sym_LBRACK] = ACTIONS(677), - [anon_sym_BSLASH] = ACTIONS(679), - [anon_sym_RBRACK] = ACTIONS(677), - [anon_sym_CARET] = ACTIONS(677), - [anon_sym__] = ACTIONS(677), - [anon_sym_BQUOTE] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_PIPE] = ACTIONS(677), - [anon_sym_RBRACE] = ACTIONS(677), - [anon_sym_TILDE] = ACTIONS(677), - [aux_sym__html_block_1_token1] = ACTIONS(677), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(679), - [anon_sym_LT_QMARK] = ACTIONS(679), - [aux_sym__html_block_4_token1] = ACTIONS(679), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(677), - [aux_sym__html_block_6_token1] = ACTIONS(679), - [aux_sym__html_block_6_token2] = ACTIONS(677), - [sym__open_tag_html_block] = ACTIONS(677), - [sym__open_tag_html_block_newline] = ACTIONS(677), - [sym__closing_tag_html_block] = ACTIONS(677), - [sym__closing_tag_html_block_newline] = ACTIONS(677), - [sym_backslash_escape] = ACTIONS(677), - [sym_entity_reference] = ACTIONS(677), - [sym_numeric_character_reference] = ACTIONS(677), - [sym_uri_autolink] = ACTIONS(677), - [sym_email_autolink] = ACTIONS(677), - [sym__whitespace_ge_2] = ACTIONS(677), - [aux_sym__whitespace_token1] = ACTIONS(679), - [sym__word_no_digit] = ACTIONS(677), - [sym__digits] = ACTIONS(677), - [aux_sym__newline_token1] = ACTIONS(677), - [sym__block_close] = ACTIONS(677), - [sym__block_continuation] = ACTIONS(125), - [sym__block_quote_continuation] = ACTIONS(125), - [sym__block_quote_start] = ACTIONS(677), - [sym__indented_chunk_start] = ACTIONS(677), - [sym_atx_h1_marker] = ACTIONS(677), - [sym_atx_h2_marker] = ACTIONS(677), - [sym_atx_h3_marker] = ACTIONS(677), - [sym_atx_h4_marker] = ACTIONS(677), - [sym_atx_h5_marker] = ACTIONS(677), - [sym_atx_h6_marker] = ACTIONS(677), - [sym__thematic_break] = ACTIONS(677), - [sym__list_marker_minus] = ACTIONS(677), - [sym__list_marker_plus] = ACTIONS(677), - [sym__list_marker_star] = ACTIONS(677), - [sym__list_marker_parenthesis] = ACTIONS(677), - [sym__list_marker_dot] = ACTIONS(677), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(677), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(677), - [sym__list_marker_star_dont_interrupt] = ACTIONS(677), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(677), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(677), - [sym__fenced_code_block_start_backtick] = ACTIONS(677), - [sym__fenced_code_block_start_tilde] = ACTIONS(677), - [sym__blank_line_start] = ACTIONS(677), - [sym__code_span_start] = ACTIONS(677), - [sym__emphasis_open_star] = ACTIONS(677), - [sym__emphasis_open_underscore] = ACTIONS(677), - [sym__last_token_whitespace] = ACTIONS(125), + [139] = { + [aux_sym__ignore_matching_tokens] = STATE(167), + [anon_sym_BANG] = ACTIONS(808), + [anon_sym_DQUOTE] = ACTIONS(808), + [anon_sym_POUND] = ACTIONS(808), + [anon_sym_DOLLAR] = ACTIONS(808), + [anon_sym_PERCENT] = ACTIONS(808), + [anon_sym_AMP] = ACTIONS(810), + [anon_sym_SQUOTE] = ACTIONS(808), + [anon_sym_LPAREN] = ACTIONS(808), + [anon_sym_RPAREN] = ACTIONS(808), + [anon_sym_STAR] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_COMMA] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_DOT] = ACTIONS(808), + [anon_sym_SLASH] = ACTIONS(808), + [anon_sym_COLON] = ACTIONS(808), + [anon_sym_SEMI] = ACTIONS(808), + [anon_sym_LT] = ACTIONS(810), + [anon_sym_EQ] = ACTIONS(808), + [anon_sym_GT] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(808), + [anon_sym_AT] = ACTIONS(808), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_BSLASH] = ACTIONS(810), + [anon_sym_RBRACK] = ACTIONS(808), + [anon_sym_CARET] = ACTIONS(808), + [anon_sym__] = ACTIONS(808), + [anon_sym_BQUOTE] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_PIPE] = ACTIONS(808), + [anon_sym_RBRACE] = ACTIONS(808), + [anon_sym_TILDE] = ACTIONS(808), + [aux_sym__html_block_1_token1] = ACTIONS(808), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(810), + [anon_sym_LT_QMARK] = ACTIONS(810), + [aux_sym__html_block_4_token1] = ACTIONS(810), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(808), + [aux_sym__html_block_6_token1] = ACTIONS(810), + [aux_sym__html_block_6_token2] = ACTIONS(808), + [sym__open_tag_html_block] = ACTIONS(808), + [sym__open_tag_html_block_newline] = ACTIONS(808), + [sym__closing_tag_html_block] = ACTIONS(808), + [sym__closing_tag_html_block_newline] = ACTIONS(808), + [sym_backslash_escape] = ACTIONS(808), + [sym_entity_reference] = ACTIONS(808), + [sym_numeric_character_reference] = ACTIONS(808), + [sym_uri_autolink] = ACTIONS(808), + [sym_email_autolink] = ACTIONS(808), + [sym__whitespace_ge_2] = ACTIONS(808), + [aux_sym__whitespace_token1] = ACTIONS(810), + [sym__word_no_digit] = ACTIONS(808), + [sym__digits] = ACTIONS(808), + [aux_sym__newline_token1] = ACTIONS(808), + [sym__block_close] = ACTIONS(808), + [sym__block_continuation] = ACTIONS(812), + [sym__block_quote_continuation] = ACTIONS(812), + [sym__block_quote_start] = ACTIONS(808), + [sym__indented_chunk_start] = ACTIONS(808), + [sym_atx_h1_marker] = ACTIONS(808), + [sym_atx_h2_marker] = ACTIONS(808), + [sym_atx_h3_marker] = ACTIONS(808), + [sym_atx_h4_marker] = ACTIONS(808), + [sym_atx_h5_marker] = ACTIONS(808), + [sym_atx_h6_marker] = ACTIONS(808), + [sym__thematic_break] = ACTIONS(808), + [sym__list_marker_minus] = ACTIONS(808), + [sym__list_marker_plus] = ACTIONS(808), + [sym__list_marker_star] = ACTIONS(808), + [sym__list_marker_parenthesis] = ACTIONS(808), + [sym__list_marker_dot] = ACTIONS(808), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(808), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(808), + [sym__list_marker_star_dont_interrupt] = ACTIONS(808), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(808), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(808), + [sym__fenced_code_block_start_backtick] = ACTIONS(808), + [sym__fenced_code_block_start_tilde] = ACTIONS(808), + [sym__blank_line_start] = ACTIONS(808), + [sym__code_span_start] = ACTIONS(808), + [sym__emphasis_open_star] = ACTIONS(808), + [sym__emphasis_open_underscore] = ACTIONS(808), + [sym__last_token_whitespace] = ACTIONS(812), }, - [163] = { - [aux_sym__ignore_matching_tokens] = STATE(275), - [anon_sym_BANG] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(620), - [anon_sym_POUND] = ACTIONS(620), - [anon_sym_DOLLAR] = ACTIONS(620), - [anon_sym_PERCENT] = ACTIONS(620), - [anon_sym_AMP] = ACTIONS(622), - [anon_sym_SQUOTE] = ACTIONS(620), - [anon_sym_LPAREN] = ACTIONS(620), - [anon_sym_RPAREN] = ACTIONS(620), - [anon_sym_STAR] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_COMMA] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_DOT] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(620), - [anon_sym_COLON] = ACTIONS(620), - [anon_sym_SEMI] = ACTIONS(620), - [anon_sym_LT] = ACTIONS(622), - [anon_sym_EQ] = ACTIONS(620), - [anon_sym_GT] = ACTIONS(620), - [anon_sym_QMARK] = ACTIONS(620), - [anon_sym_AT] = ACTIONS(620), - [anon_sym_LBRACK] = ACTIONS(620), - [anon_sym_BSLASH] = ACTIONS(622), - [anon_sym_RBRACK] = ACTIONS(620), - [anon_sym_CARET] = ACTIONS(620), - [anon_sym__] = ACTIONS(620), - [anon_sym_BQUOTE] = ACTIONS(620), - [anon_sym_LBRACE] = ACTIONS(620), - [anon_sym_PIPE] = ACTIONS(620), - [anon_sym_RBRACE] = ACTIONS(620), - [anon_sym_TILDE] = ACTIONS(620), - [aux_sym__html_block_1_token1] = ACTIONS(620), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(622), - [anon_sym_LT_QMARK] = ACTIONS(622), - [aux_sym__html_block_4_token1] = ACTIONS(622), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(620), - [aux_sym__html_block_6_token1] = ACTIONS(622), - [aux_sym__html_block_6_token2] = ACTIONS(620), - [sym__open_tag_html_block] = ACTIONS(620), - [sym__open_tag_html_block_newline] = ACTIONS(620), - [sym__closing_tag_html_block] = ACTIONS(620), - [sym__closing_tag_html_block_newline] = ACTIONS(620), - [sym_backslash_escape] = ACTIONS(620), - [sym_entity_reference] = ACTIONS(620), - [sym_numeric_character_reference] = ACTIONS(620), - [sym_uri_autolink] = ACTIONS(620), - [sym_email_autolink] = ACTIONS(620), - [sym__whitespace_ge_2] = ACTIONS(620), - [aux_sym__whitespace_token1] = ACTIONS(622), - [sym__word_no_digit] = ACTIONS(620), - [sym__digits] = ACTIONS(620), - [aux_sym__newline_token1] = ACTIONS(620), - [sym__block_close] = ACTIONS(620), - [sym__block_continuation] = ACTIONS(125), - [sym__block_quote_continuation] = ACTIONS(125), - [sym__block_quote_start] = ACTIONS(620), - [sym__indented_chunk_start] = ACTIONS(620), - [sym_atx_h1_marker] = ACTIONS(620), - [sym_atx_h2_marker] = ACTIONS(620), - [sym_atx_h3_marker] = ACTIONS(620), - [sym_atx_h4_marker] = ACTIONS(620), - [sym_atx_h5_marker] = ACTIONS(620), - [sym_atx_h6_marker] = ACTIONS(620), - [sym__thematic_break] = ACTIONS(620), - [sym__list_marker_minus] = ACTIONS(620), - [sym__list_marker_plus] = ACTIONS(620), - [sym__list_marker_star] = ACTIONS(620), - [sym__list_marker_parenthesis] = ACTIONS(620), - [sym__list_marker_dot] = ACTIONS(620), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(620), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(620), - [sym__list_marker_star_dont_interrupt] = ACTIONS(620), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(620), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(620), - [sym__fenced_code_block_start_backtick] = ACTIONS(620), - [sym__fenced_code_block_start_tilde] = ACTIONS(620), - [sym__blank_line_start] = ACTIONS(620), - [sym__code_span_start] = ACTIONS(620), - [sym__emphasis_open_star] = ACTIONS(620), - [sym__emphasis_open_underscore] = ACTIONS(620), - [sym__last_token_whitespace] = ACTIONS(125), + [140] = { + [aux_sym__ignore_matching_tokens] = STATE(148), + [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), + [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(814), + [sym_numeric_character_reference] = ACTIONS(814), + [sym_uri_autolink] = ACTIONS(814), + [sym_email_autolink] = 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(818), + [sym__block_quote_continuation] = ACTIONS(818), + [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__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__emphasis_open_star] = ACTIONS(814), + [sym__emphasis_open_underscore] = ACTIONS(814), + [sym__last_token_whitespace] = ACTIONS(818), }, - [164] = { - [aux_sym__ignore_matching_tokens] = STATE(275), - [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), - [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(616), - [sym_numeric_character_reference] = ACTIONS(616), - [sym_uri_autolink] = ACTIONS(616), - [sym_email_autolink] = 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(125), - [sym__block_quote_continuation] = ACTIONS(125), - [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__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__emphasis_open_star] = ACTIONS(616), - [sym__emphasis_open_underscore] = ACTIONS(616), - [sym__last_token_whitespace] = ACTIONS(125), + [141] = { + [aux_sym__ignore_matching_tokens] = STATE(142), + [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), + [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(820), + [sym_numeric_character_reference] = ACTIONS(820), + [sym_uri_autolink] = ACTIONS(820), + [sym_email_autolink] = 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_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__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__emphasis_open_star] = ACTIONS(820), + [sym__emphasis_open_underscore] = ACTIONS(820), + [sym__last_token_whitespace] = ACTIONS(824), }, - [165] = { - [aux_sym__ignore_matching_tokens] = STATE(275), - [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), - [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(612), - [sym_numeric_character_reference] = ACTIONS(612), - [sym_uri_autolink] = ACTIONS(612), - [sym_email_autolink] = 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(125), - [sym__block_quote_continuation] = ACTIONS(125), - [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__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__emphasis_open_star] = ACTIONS(612), - [sym__emphasis_open_underscore] = ACTIONS(612), - [sym__last_token_whitespace] = ACTIONS(125), + [142] = { + [aux_sym__ignore_matching_tokens] = STATE(160), + [anon_sym_BANG] = ACTIONS(826), + [anon_sym_DQUOTE] = ACTIONS(826), + [anon_sym_POUND] = ACTIONS(826), + [anon_sym_DOLLAR] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(828), + [anon_sym_SQUOTE] = ACTIONS(826), + [anon_sym_LPAREN] = ACTIONS(826), + [anon_sym_RPAREN] = ACTIONS(826), + [anon_sym_STAR] = ACTIONS(826), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_COMMA] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOT] = ACTIONS(826), + [anon_sym_SLASH] = ACTIONS(826), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_SEMI] = ACTIONS(826), + [anon_sym_LT] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(826), + [anon_sym_QMARK] = ACTIONS(826), + [anon_sym_AT] = ACTIONS(826), + [anon_sym_LBRACK] = ACTIONS(826), + [anon_sym_BSLASH] = ACTIONS(828), + [anon_sym_RBRACK] = ACTIONS(826), + [anon_sym_CARET] = ACTIONS(826), + [anon_sym__] = ACTIONS(826), + [anon_sym_BQUOTE] = ACTIONS(826), + [anon_sym_LBRACE] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_RBRACE] = ACTIONS(826), + [anon_sym_TILDE] = ACTIONS(826), + [aux_sym__html_block_1_token1] = ACTIONS(826), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(828), + [anon_sym_LT_QMARK] = ACTIONS(828), + [aux_sym__html_block_4_token1] = ACTIONS(828), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(826), + [aux_sym__html_block_6_token1] = ACTIONS(828), + [aux_sym__html_block_6_token2] = ACTIONS(826), + [sym__open_tag_html_block] = ACTIONS(826), + [sym__open_tag_html_block_newline] = ACTIONS(826), + [sym__closing_tag_html_block] = ACTIONS(826), + [sym__closing_tag_html_block_newline] = ACTIONS(826), + [sym_backslash_escape] = ACTIONS(826), + [sym_entity_reference] = ACTIONS(826), + [sym_numeric_character_reference] = ACTIONS(826), + [sym_uri_autolink] = ACTIONS(826), + [sym_email_autolink] = ACTIONS(826), + [sym__whitespace_ge_2] = ACTIONS(826), + [aux_sym__whitespace_token1] = ACTIONS(828), + [sym__word_no_digit] = ACTIONS(826), + [sym__digits] = ACTIONS(826), + [aux_sym__newline_token1] = ACTIONS(826), + [sym__block_close] = ACTIONS(826), + [sym__block_continuation] = ACTIONS(113), + [sym__block_quote_continuation] = ACTIONS(113), + [sym__block_quote_start] = ACTIONS(826), + [sym__indented_chunk_start] = ACTIONS(826), + [sym_atx_h1_marker] = ACTIONS(826), + [sym_atx_h2_marker] = ACTIONS(826), + [sym_atx_h3_marker] = ACTIONS(826), + [sym_atx_h4_marker] = ACTIONS(826), + [sym_atx_h5_marker] = ACTIONS(826), + [sym_atx_h6_marker] = ACTIONS(826), + [sym__thematic_break] = ACTIONS(826), + [sym__list_marker_minus] = ACTIONS(826), + [sym__list_marker_plus] = ACTIONS(826), + [sym__list_marker_star] = ACTIONS(826), + [sym__list_marker_parenthesis] = ACTIONS(826), + [sym__list_marker_dot] = ACTIONS(826), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(826), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(826), + [sym__list_marker_star_dont_interrupt] = ACTIONS(826), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(826), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(826), + [sym__fenced_code_block_start_backtick] = ACTIONS(826), + [sym__fenced_code_block_start_tilde] = ACTIONS(826), + [sym__blank_line_start] = ACTIONS(826), + [sym__code_span_start] = ACTIONS(826), + [sym__emphasis_open_star] = ACTIONS(826), + [sym__emphasis_open_underscore] = ACTIONS(826), + [sym__last_token_whitespace] = ACTIONS(113), }, - [166] = { - [aux_sym__ignore_matching_tokens] = STATE(275), - [anon_sym_BANG] = ACTIONS(574), - [anon_sym_DQUOTE] = ACTIONS(574), - [anon_sym_POUND] = ACTIONS(574), - [anon_sym_DOLLAR] = ACTIONS(574), - [anon_sym_PERCENT] = ACTIONS(574), - [anon_sym_AMP] = ACTIONS(576), - [anon_sym_SQUOTE] = ACTIONS(574), - [anon_sym_LPAREN] = ACTIONS(574), - [anon_sym_RPAREN] = ACTIONS(574), - [anon_sym_STAR] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(574), - [anon_sym_COMMA] = ACTIONS(574), - [anon_sym_DASH] = ACTIONS(574), - [anon_sym_DOT] = ACTIONS(574), - [anon_sym_SLASH] = ACTIONS(574), - [anon_sym_COLON] = ACTIONS(574), - [anon_sym_SEMI] = ACTIONS(574), - [anon_sym_LT] = ACTIONS(576), - [anon_sym_EQ] = ACTIONS(574), - [anon_sym_GT] = ACTIONS(574), - [anon_sym_QMARK] = ACTIONS(574), - [anon_sym_AT] = ACTIONS(574), - [anon_sym_LBRACK] = ACTIONS(574), - [anon_sym_BSLASH] = ACTIONS(576), - [anon_sym_RBRACK] = ACTIONS(574), - [anon_sym_CARET] = ACTIONS(574), - [anon_sym__] = ACTIONS(574), - [anon_sym_BQUOTE] = ACTIONS(574), - [anon_sym_LBRACE] = ACTIONS(574), - [anon_sym_PIPE] = ACTIONS(574), - [anon_sym_RBRACE] = ACTIONS(574), - [anon_sym_TILDE] = ACTIONS(574), - [aux_sym__html_block_1_token1] = ACTIONS(574), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(576), - [anon_sym_LT_QMARK] = ACTIONS(576), - [aux_sym__html_block_4_token1] = ACTIONS(576), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(574), - [aux_sym__html_block_6_token1] = ACTIONS(576), - [aux_sym__html_block_6_token2] = ACTIONS(574), - [sym__open_tag_html_block] = ACTIONS(574), - [sym__open_tag_html_block_newline] = ACTIONS(574), - [sym__closing_tag_html_block] = ACTIONS(574), - [sym__closing_tag_html_block_newline] = ACTIONS(574), - [sym_backslash_escape] = ACTIONS(574), - [sym_entity_reference] = ACTIONS(574), - [sym_numeric_character_reference] = ACTIONS(574), - [sym_uri_autolink] = ACTIONS(574), - [sym_email_autolink] = ACTIONS(574), - [sym__whitespace_ge_2] = ACTIONS(574), - [aux_sym__whitespace_token1] = ACTIONS(576), - [sym__word_no_digit] = ACTIONS(574), - [sym__digits] = ACTIONS(574), - [aux_sym__newline_token1] = ACTIONS(574), - [sym__block_close] = ACTIONS(574), - [sym__block_continuation] = ACTIONS(125), - [sym__block_quote_continuation] = ACTIONS(125), - [sym__block_quote_start] = ACTIONS(574), - [sym__indented_chunk_start] = ACTIONS(574), - [sym_atx_h1_marker] = ACTIONS(574), - [sym_atx_h2_marker] = ACTIONS(574), - [sym_atx_h3_marker] = ACTIONS(574), - [sym_atx_h4_marker] = ACTIONS(574), - [sym_atx_h5_marker] = ACTIONS(574), - [sym_atx_h6_marker] = ACTIONS(574), - [sym__thematic_break] = ACTIONS(574), - [sym__list_marker_minus] = ACTIONS(574), - [sym__list_marker_plus] = ACTIONS(574), - [sym__list_marker_star] = ACTIONS(574), - [sym__list_marker_parenthesis] = ACTIONS(574), - [sym__list_marker_dot] = ACTIONS(574), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(574), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(574), - [sym__list_marker_star_dont_interrupt] = ACTIONS(574), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(574), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(574), - [sym__fenced_code_block_start_backtick] = ACTIONS(574), - [sym__fenced_code_block_start_tilde] = ACTIONS(574), - [sym__blank_line_start] = ACTIONS(574), - [sym__code_span_start] = ACTIONS(574), - [sym__emphasis_open_star] = ACTIONS(574), - [sym__emphasis_open_underscore] = ACTIONS(574), - [sym__last_token_whitespace] = ACTIONS(125), + [143] = { + [aux_sym__ignore_matching_tokens] = STATE(164), + [ts_builtin_sym_end] = ACTIONS(830), + [anon_sym_BANG] = ACTIONS(830), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_POUND] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(830), + [anon_sym_PERCENT] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(832), + [anon_sym_SQUOTE] = ACTIONS(830), + [anon_sym_LPAREN] = ACTIONS(830), + [anon_sym_RPAREN] = ACTIONS(830), + [anon_sym_STAR] = ACTIONS(830), + [anon_sym_PLUS] = ACTIONS(830), + [anon_sym_COMMA] = ACTIONS(830), + [anon_sym_DASH] = ACTIONS(830), + [anon_sym_DOT] = ACTIONS(830), + [anon_sym_SLASH] = ACTIONS(830), + [anon_sym_COLON] = ACTIONS(830), + [anon_sym_SEMI] = ACTIONS(830), + [anon_sym_LT] = ACTIONS(832), + [anon_sym_EQ] = ACTIONS(830), + [anon_sym_GT] = ACTIONS(830), + [anon_sym_QMARK] = ACTIONS(830), + [anon_sym_AT] = ACTIONS(830), + [anon_sym_LBRACK] = ACTIONS(830), + [anon_sym_BSLASH] = ACTIONS(832), + [anon_sym_RBRACK] = ACTIONS(830), + [anon_sym_CARET] = ACTIONS(830), + [anon_sym__] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_LBRACE] = ACTIONS(830), + [anon_sym_PIPE] = ACTIONS(830), + [anon_sym_RBRACE] = ACTIONS(830), + [anon_sym_TILDE] = ACTIONS(830), + [aux_sym__html_block_1_token1] = ACTIONS(830), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(832), + [anon_sym_LT_QMARK] = ACTIONS(832), + [aux_sym__html_block_4_token1] = ACTIONS(832), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(830), + [aux_sym__html_block_6_token1] = ACTIONS(832), + [aux_sym__html_block_6_token2] = ACTIONS(830), + [sym__open_tag_html_block] = ACTIONS(830), + [sym__open_tag_html_block_newline] = ACTIONS(830), + [sym__closing_tag_html_block] = ACTIONS(830), + [sym__closing_tag_html_block_newline] = ACTIONS(830), + [sym_backslash_escape] = ACTIONS(830), + [sym_entity_reference] = ACTIONS(830), + [sym_numeric_character_reference] = ACTIONS(830), + [sym_uri_autolink] = ACTIONS(830), + [sym_email_autolink] = ACTIONS(830), + [sym__whitespace_ge_2] = ACTIONS(830), + [aux_sym__whitespace_token1] = ACTIONS(832), + [sym__word_no_digit] = ACTIONS(830), + [sym__digits] = ACTIONS(830), + [aux_sym__newline_token1] = ACTIONS(830), + [sym__block_continuation] = ACTIONS(834), + [sym__block_quote_continuation] = ACTIONS(834), + [sym__block_quote_start] = ACTIONS(830), + [sym__indented_chunk_start] = ACTIONS(830), + [sym_atx_h1_marker] = ACTIONS(830), + [sym_atx_h2_marker] = ACTIONS(830), + [sym_atx_h3_marker] = ACTIONS(830), + [sym_atx_h4_marker] = ACTIONS(830), + [sym_atx_h5_marker] = ACTIONS(830), + [sym_atx_h6_marker] = ACTIONS(830), + [sym__thematic_break] = ACTIONS(830), + [sym__list_marker_minus] = ACTIONS(830), + [sym__list_marker_plus] = ACTIONS(830), + [sym__list_marker_star] = ACTIONS(830), + [sym__list_marker_parenthesis] = ACTIONS(830), + [sym__list_marker_dot] = ACTIONS(830), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(830), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(830), + [sym__list_marker_star_dont_interrupt] = ACTIONS(830), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(830), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(830), + [sym__fenced_code_block_start_backtick] = ACTIONS(830), + [sym__fenced_code_block_start_tilde] = ACTIONS(830), + [sym__blank_line_start] = ACTIONS(830), + [sym__code_span_start] = ACTIONS(830), + [sym__emphasis_open_star] = ACTIONS(830), + [sym__emphasis_open_underscore] = ACTIONS(830), + [sym__last_token_whitespace] = ACTIONS(834), }, - [167] = { - [aux_sym__ignore_matching_tokens] = STATE(202), - [ts_builtin_sym_end] = 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), - [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(831), - [sym_numeric_character_reference] = ACTIONS(831), - [sym_uri_autolink] = ACTIONS(831), - [sym_email_autolink] = 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(111), - [sym__block_quote_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__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__emphasis_open_star] = ACTIONS(831), - [sym__emphasis_open_underscore] = ACTIONS(831), - [sym__last_token_whitespace] = ACTIONS(111), + [144] = { + [aux_sym__ignore_matching_tokens] = STATE(201), + [ts_builtin_sym_end] = ACTIONS(830), + [anon_sym_BANG] = ACTIONS(830), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_POUND] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(830), + [anon_sym_PERCENT] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(832), + [anon_sym_SQUOTE] = ACTIONS(830), + [anon_sym_LPAREN] = ACTIONS(830), + [anon_sym_RPAREN] = ACTIONS(830), + [anon_sym_STAR] = ACTIONS(830), + [anon_sym_PLUS] = ACTIONS(830), + [anon_sym_COMMA] = ACTIONS(830), + [anon_sym_DASH] = ACTIONS(830), + [anon_sym_DOT] = ACTIONS(830), + [anon_sym_SLASH] = ACTIONS(830), + [anon_sym_COLON] = ACTIONS(830), + [anon_sym_SEMI] = ACTIONS(830), + [anon_sym_LT] = ACTIONS(832), + [anon_sym_EQ] = ACTIONS(830), + [anon_sym_GT] = ACTIONS(830), + [anon_sym_QMARK] = ACTIONS(830), + [anon_sym_AT] = ACTIONS(830), + [anon_sym_LBRACK] = ACTIONS(830), + [anon_sym_BSLASH] = ACTIONS(832), + [anon_sym_RBRACK] = ACTIONS(830), + [anon_sym_CARET] = ACTIONS(830), + [anon_sym__] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_LBRACE] = ACTIONS(830), + [anon_sym_PIPE] = ACTIONS(830), + [anon_sym_RBRACE] = ACTIONS(830), + [anon_sym_TILDE] = ACTIONS(830), + [aux_sym__html_block_1_token1] = ACTIONS(830), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(832), + [anon_sym_LT_QMARK] = ACTIONS(832), + [aux_sym__html_block_4_token1] = ACTIONS(832), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(830), + [aux_sym__html_block_6_token1] = ACTIONS(832), + [aux_sym__html_block_6_token2] = ACTIONS(830), + [sym__open_tag_html_block] = ACTIONS(830), + [sym__open_tag_html_block_newline] = ACTIONS(830), + [sym__closing_tag_html_block] = ACTIONS(830), + [sym__closing_tag_html_block_newline] = ACTIONS(830), + [sym_backslash_escape] = ACTIONS(830), + [sym_entity_reference] = ACTIONS(830), + [sym_numeric_character_reference] = ACTIONS(830), + [sym_uri_autolink] = ACTIONS(830), + [sym_email_autolink] = ACTIONS(830), + [sym__whitespace_ge_2] = ACTIONS(830), + [aux_sym__whitespace_token1] = ACTIONS(832), + [sym__word_no_digit] = ACTIONS(830), + [sym__digits] = ACTIONS(830), + [aux_sym__newline_token1] = ACTIONS(830), + [sym__block_continuation] = ACTIONS(109), + [sym__block_quote_continuation] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(830), + [sym__indented_chunk_start] = ACTIONS(830), + [sym_atx_h1_marker] = ACTIONS(830), + [sym_atx_h2_marker] = ACTIONS(830), + [sym_atx_h3_marker] = ACTIONS(830), + [sym_atx_h4_marker] = ACTIONS(830), + [sym_atx_h5_marker] = ACTIONS(830), + [sym_atx_h6_marker] = ACTIONS(830), + [sym__thematic_break] = ACTIONS(830), + [sym__list_marker_minus] = ACTIONS(830), + [sym__list_marker_plus] = ACTIONS(830), + [sym__list_marker_star] = ACTIONS(830), + [sym__list_marker_parenthesis] = ACTIONS(830), + [sym__list_marker_dot] = ACTIONS(830), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(830), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(830), + [sym__list_marker_star_dont_interrupt] = ACTIONS(830), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(830), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(830), + [sym__fenced_code_block_start_backtick] = ACTIONS(830), + [sym__fenced_code_block_start_tilde] = ACTIONS(830), + [sym__blank_line_start] = ACTIONS(830), + [sym__code_span_start] = ACTIONS(830), + [sym__emphasis_open_star] = ACTIONS(830), + [sym__emphasis_open_underscore] = ACTIONS(830), + [sym__last_token_whitespace] = ACTIONS(109), }, - [168] = { - [aux_sym__ignore_matching_tokens] = STATE(275), - [anon_sym_BANG] = ACTIONS(570), - [anon_sym_DQUOTE] = ACTIONS(570), - [anon_sym_POUND] = ACTIONS(570), - [anon_sym_DOLLAR] = ACTIONS(570), - [anon_sym_PERCENT] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(572), - [anon_sym_SQUOTE] = ACTIONS(570), - [anon_sym_LPAREN] = ACTIONS(570), - [anon_sym_RPAREN] = ACTIONS(570), - [anon_sym_STAR] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(570), - [anon_sym_COMMA] = ACTIONS(570), - [anon_sym_DASH] = ACTIONS(570), - [anon_sym_DOT] = ACTIONS(570), - [anon_sym_SLASH] = ACTIONS(570), - [anon_sym_COLON] = ACTIONS(570), - [anon_sym_SEMI] = ACTIONS(570), - [anon_sym_LT] = ACTIONS(572), - [anon_sym_EQ] = ACTIONS(570), - [anon_sym_GT] = ACTIONS(570), - [anon_sym_QMARK] = ACTIONS(570), - [anon_sym_AT] = ACTIONS(570), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_BSLASH] = ACTIONS(572), - [anon_sym_RBRACK] = ACTIONS(570), - [anon_sym_CARET] = ACTIONS(570), - [anon_sym__] = ACTIONS(570), - [anon_sym_BQUOTE] = ACTIONS(570), - [anon_sym_LBRACE] = ACTIONS(570), - [anon_sym_PIPE] = ACTIONS(570), - [anon_sym_RBRACE] = ACTIONS(570), - [anon_sym_TILDE] = ACTIONS(570), - [aux_sym__html_block_1_token1] = ACTIONS(570), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(572), - [anon_sym_LT_QMARK] = ACTIONS(572), - [aux_sym__html_block_4_token1] = ACTIONS(572), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(570), - [aux_sym__html_block_6_token1] = ACTIONS(572), - [aux_sym__html_block_6_token2] = ACTIONS(570), - [sym__open_tag_html_block] = ACTIONS(570), - [sym__open_tag_html_block_newline] = ACTIONS(570), - [sym__closing_tag_html_block] = ACTIONS(570), - [sym__closing_tag_html_block_newline] = ACTIONS(570), - [sym_backslash_escape] = ACTIONS(570), - [sym_entity_reference] = ACTIONS(570), - [sym_numeric_character_reference] = ACTIONS(570), - [sym_uri_autolink] = ACTIONS(570), - [sym_email_autolink] = ACTIONS(570), - [sym__whitespace_ge_2] = ACTIONS(570), - [aux_sym__whitespace_token1] = ACTIONS(572), - [sym__word_no_digit] = ACTIONS(570), - [sym__digits] = ACTIONS(570), - [aux_sym__newline_token1] = ACTIONS(570), - [sym__block_close] = ACTIONS(570), - [sym__block_continuation] = ACTIONS(125), - [sym__block_quote_continuation] = ACTIONS(125), - [sym__block_quote_start] = ACTIONS(570), - [sym__indented_chunk_start] = ACTIONS(570), - [sym_atx_h1_marker] = ACTIONS(570), - [sym_atx_h2_marker] = ACTIONS(570), - [sym_atx_h3_marker] = ACTIONS(570), - [sym_atx_h4_marker] = ACTIONS(570), - [sym_atx_h5_marker] = ACTIONS(570), - [sym_atx_h6_marker] = ACTIONS(570), - [sym__thematic_break] = ACTIONS(570), - [sym__list_marker_minus] = ACTIONS(570), - [sym__list_marker_plus] = ACTIONS(570), - [sym__list_marker_star] = ACTIONS(570), - [sym__list_marker_parenthesis] = ACTIONS(570), - [sym__list_marker_dot] = ACTIONS(570), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(570), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(570), - [sym__list_marker_star_dont_interrupt] = ACTIONS(570), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(570), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(570), - [sym__fenced_code_block_start_backtick] = ACTIONS(570), - [sym__fenced_code_block_start_tilde] = ACTIONS(570), - [sym__blank_line_start] = ACTIONS(570), - [sym__code_span_start] = ACTIONS(570), - [sym__emphasis_open_star] = ACTIONS(570), - [sym__emphasis_open_underscore] = ACTIONS(570), - [sym__last_token_whitespace] = ACTIONS(125), + [145] = { + [aux_sym__ignore_matching_tokens] = STATE(162), + [ts_builtin_sym_end] = ACTIONS(836), + [anon_sym_BANG] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(836), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR] = ACTIONS(836), + [anon_sym_PERCENT] = ACTIONS(836), + [anon_sym_AMP] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(836), + [anon_sym_LPAREN] = ACTIONS(836), + [anon_sym_RPAREN] = ACTIONS(836), + [anon_sym_STAR] = ACTIONS(836), + [anon_sym_PLUS] = ACTIONS(836), + [anon_sym_COMMA] = ACTIONS(836), + [anon_sym_DASH] = ACTIONS(836), + [anon_sym_DOT] = ACTIONS(836), + [anon_sym_SLASH] = ACTIONS(836), + [anon_sym_COLON] = ACTIONS(836), + [anon_sym_SEMI] = ACTIONS(836), + [anon_sym_LT] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(836), + [anon_sym_GT] = ACTIONS(836), + [anon_sym_QMARK] = ACTIONS(836), + [anon_sym_AT] = ACTIONS(836), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_BSLASH] = ACTIONS(838), + [anon_sym_RBRACK] = ACTIONS(836), + [anon_sym_CARET] = ACTIONS(836), + [anon_sym__] = ACTIONS(836), + [anon_sym_BQUOTE] = ACTIONS(836), + [anon_sym_LBRACE] = ACTIONS(836), + [anon_sym_PIPE] = ACTIONS(836), + [anon_sym_RBRACE] = ACTIONS(836), + [anon_sym_TILDE] = ACTIONS(836), + [aux_sym__html_block_1_token1] = ACTIONS(836), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(838), + [anon_sym_LT_QMARK] = ACTIONS(838), + [aux_sym__html_block_4_token1] = ACTIONS(838), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(836), + [aux_sym__html_block_6_token1] = ACTIONS(838), + [aux_sym__html_block_6_token2] = ACTIONS(836), + [sym__open_tag_html_block] = ACTIONS(836), + [sym__open_tag_html_block_newline] = ACTIONS(836), + [sym__closing_tag_html_block] = ACTIONS(836), + [sym__closing_tag_html_block_newline] = ACTIONS(836), + [sym_backslash_escape] = ACTIONS(836), + [sym_entity_reference] = ACTIONS(836), + [sym_numeric_character_reference] = ACTIONS(836), + [sym_uri_autolink] = ACTIONS(836), + [sym_email_autolink] = ACTIONS(836), + [sym__whitespace_ge_2] = ACTIONS(836), + [aux_sym__whitespace_token1] = ACTIONS(838), + [sym__word_no_digit] = ACTIONS(836), + [sym__digits] = ACTIONS(836), + [aux_sym__newline_token1] = ACTIONS(836), + [sym__block_continuation] = ACTIONS(840), + [sym__block_quote_continuation] = ACTIONS(840), + [sym__block_quote_start] = ACTIONS(836), + [sym__indented_chunk_start] = ACTIONS(836), + [sym_atx_h1_marker] = ACTIONS(836), + [sym_atx_h2_marker] = ACTIONS(836), + [sym_atx_h3_marker] = ACTIONS(836), + [sym_atx_h4_marker] = ACTIONS(836), + [sym_atx_h5_marker] = ACTIONS(836), + [sym_atx_h6_marker] = ACTIONS(836), + [sym__thematic_break] = ACTIONS(836), + [sym__list_marker_minus] = ACTIONS(836), + [sym__list_marker_plus] = ACTIONS(836), + [sym__list_marker_star] = ACTIONS(836), + [sym__list_marker_parenthesis] = ACTIONS(836), + [sym__list_marker_dot] = ACTIONS(836), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(836), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(836), + [sym__list_marker_star_dont_interrupt] = ACTIONS(836), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(836), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(836), + [sym__fenced_code_block_start_backtick] = ACTIONS(836), + [sym__fenced_code_block_start_tilde] = ACTIONS(836), + [sym__blank_line_start] = ACTIONS(836), + [sym__code_span_start] = ACTIONS(836), + [sym__emphasis_open_star] = ACTIONS(836), + [sym__emphasis_open_underscore] = ACTIONS(836), + [sym__last_token_whitespace] = ACTIONS(840), }, - [169] = { - [aux_sym__ignore_matching_tokens] = STATE(202), - [ts_builtin_sym_end] = ACTIONS(827), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_DQUOTE] = ACTIONS(827), - [anon_sym_POUND] = ACTIONS(827), - [anon_sym_DOLLAR] = ACTIONS(827), - [anon_sym_PERCENT] = ACTIONS(827), - [anon_sym_AMP] = ACTIONS(829), - [anon_sym_SQUOTE] = ACTIONS(827), - [anon_sym_LPAREN] = ACTIONS(827), - [anon_sym_RPAREN] = ACTIONS(827), - [anon_sym_STAR] = ACTIONS(827), - [anon_sym_PLUS] = ACTIONS(827), - [anon_sym_COMMA] = ACTIONS(827), - [anon_sym_DASH] = ACTIONS(827), - [anon_sym_DOT] = ACTIONS(827), - [anon_sym_SLASH] = ACTIONS(827), - [anon_sym_COLON] = ACTIONS(827), - [anon_sym_SEMI] = ACTIONS(827), - [anon_sym_LT] = ACTIONS(829), - [anon_sym_EQ] = ACTIONS(827), - [anon_sym_GT] = ACTIONS(827), - [anon_sym_QMARK] = ACTIONS(827), - [anon_sym_AT] = ACTIONS(827), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_BSLASH] = ACTIONS(829), - [anon_sym_RBRACK] = ACTIONS(827), - [anon_sym_CARET] = ACTIONS(827), - [anon_sym__] = ACTIONS(827), - [anon_sym_BQUOTE] = ACTIONS(827), - [anon_sym_LBRACE] = ACTIONS(827), - [anon_sym_PIPE] = ACTIONS(827), - [anon_sym_RBRACE] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(827), - [aux_sym__html_block_1_token1] = ACTIONS(827), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(829), - [anon_sym_LT_QMARK] = ACTIONS(829), - [aux_sym__html_block_4_token1] = ACTIONS(829), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(827), - [aux_sym__html_block_6_token1] = ACTIONS(829), - [aux_sym__html_block_6_token2] = ACTIONS(827), - [sym__open_tag_html_block] = ACTIONS(827), - [sym__open_tag_html_block_newline] = ACTIONS(827), - [sym__closing_tag_html_block] = ACTIONS(827), - [sym__closing_tag_html_block_newline] = ACTIONS(827), - [sym_backslash_escape] = ACTIONS(827), - [sym_entity_reference] = ACTIONS(827), - [sym_numeric_character_reference] = ACTIONS(827), - [sym_uri_autolink] = ACTIONS(827), - [sym_email_autolink] = ACTIONS(827), - [sym__whitespace_ge_2] = ACTIONS(827), - [aux_sym__whitespace_token1] = ACTIONS(829), - [sym__word_no_digit] = ACTIONS(827), - [sym__digits] = ACTIONS(827), - [aux_sym__newline_token1] = ACTIONS(827), - [sym__block_continuation] = ACTIONS(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(827), - [sym__indented_chunk_start] = ACTIONS(827), - [sym_atx_h1_marker] = ACTIONS(827), - [sym_atx_h2_marker] = ACTIONS(827), - [sym_atx_h3_marker] = ACTIONS(827), - [sym_atx_h4_marker] = ACTIONS(827), - [sym_atx_h5_marker] = ACTIONS(827), - [sym_atx_h6_marker] = ACTIONS(827), - [sym__thematic_break] = ACTIONS(827), - [sym__list_marker_minus] = ACTIONS(827), - [sym__list_marker_plus] = ACTIONS(827), - [sym__list_marker_star] = ACTIONS(827), - [sym__list_marker_parenthesis] = ACTIONS(827), - [sym__list_marker_dot] = ACTIONS(827), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(827), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(827), - [sym__list_marker_star_dont_interrupt] = ACTIONS(827), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(827), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(827), - [sym__fenced_code_block_start_backtick] = ACTIONS(827), - [sym__fenced_code_block_start_tilde] = ACTIONS(827), - [sym__blank_line_start] = ACTIONS(827), - [sym__code_span_start] = ACTIONS(827), - [sym__emphasis_open_star] = ACTIONS(827), - [sym__emphasis_open_underscore] = ACTIONS(827), - [sym__last_token_whitespace] = ACTIONS(111), + [146] = { + [aux_sym__ignore_matching_tokens] = STATE(273), + [anon_sym_BANG] = ACTIONS(826), + [anon_sym_DQUOTE] = ACTIONS(826), + [anon_sym_POUND] = ACTIONS(826), + [anon_sym_DOLLAR] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(828), + [anon_sym_SQUOTE] = ACTIONS(826), + [anon_sym_LPAREN] = ACTIONS(826), + [anon_sym_RPAREN] = ACTIONS(826), + [anon_sym_STAR] = ACTIONS(826), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_COMMA] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOT] = ACTIONS(826), + [anon_sym_SLASH] = ACTIONS(826), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_SEMI] = ACTIONS(826), + [anon_sym_LT] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(826), + [anon_sym_QMARK] = ACTIONS(826), + [anon_sym_AT] = ACTIONS(826), + [anon_sym_LBRACK] = ACTIONS(826), + [anon_sym_BSLASH] = ACTIONS(828), + [anon_sym_RBRACK] = ACTIONS(826), + [anon_sym_CARET] = ACTIONS(826), + [anon_sym__] = ACTIONS(826), + [anon_sym_BQUOTE] = ACTIONS(826), + [anon_sym_LBRACE] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_RBRACE] = ACTIONS(826), + [anon_sym_TILDE] = ACTIONS(826), + [aux_sym__html_block_1_token1] = ACTIONS(826), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(828), + [anon_sym_LT_QMARK] = ACTIONS(828), + [aux_sym__html_block_4_token1] = ACTIONS(828), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(826), + [aux_sym__html_block_6_token1] = ACTIONS(828), + [aux_sym__html_block_6_token2] = ACTIONS(826), + [sym__open_tag_html_block] = ACTIONS(826), + [sym__open_tag_html_block_newline] = ACTIONS(826), + [sym__closing_tag_html_block] = ACTIONS(826), + [sym__closing_tag_html_block_newline] = ACTIONS(826), + [sym_backslash_escape] = ACTIONS(826), + [sym_entity_reference] = ACTIONS(826), + [sym_numeric_character_reference] = ACTIONS(826), + [sym_uri_autolink] = ACTIONS(826), + [sym_email_autolink] = ACTIONS(826), + [sym__whitespace_ge_2] = ACTIONS(826), + [aux_sym__whitespace_token1] = ACTIONS(828), + [sym__word_no_digit] = ACTIONS(826), + [sym__digits] = ACTIONS(826), + [aux_sym__newline_token1] = ACTIONS(826), + [sym__block_close] = ACTIONS(826), + [sym__block_continuation] = ACTIONS(842), + [sym__block_quote_continuation] = ACTIONS(842), + [sym__block_quote_start] = ACTIONS(826), + [sym__indented_chunk_start] = ACTIONS(826), + [sym_atx_h1_marker] = ACTIONS(826), + [sym_atx_h2_marker] = ACTIONS(826), + [sym_atx_h3_marker] = ACTIONS(826), + [sym_atx_h4_marker] = ACTIONS(826), + [sym_atx_h5_marker] = ACTIONS(826), + [sym_atx_h6_marker] = ACTIONS(826), + [sym__thematic_break] = ACTIONS(826), + [sym__list_marker_minus] = ACTIONS(826), + [sym__list_marker_plus] = ACTIONS(826), + [sym__list_marker_star] = ACTIONS(826), + [sym__list_marker_parenthesis] = ACTIONS(826), + [sym__list_marker_dot] = ACTIONS(826), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(826), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(826), + [sym__list_marker_star_dont_interrupt] = ACTIONS(826), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(826), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(826), + [sym__fenced_code_block_start_backtick] = ACTIONS(826), + [sym__fenced_code_block_start_tilde] = ACTIONS(826), + [sym__blank_line_start] = ACTIONS(826), + [sym__code_span_start] = ACTIONS(826), + [sym__emphasis_open_star] = ACTIONS(826), + [sym__emphasis_open_underscore] = ACTIONS(826), + [sym__last_token_whitespace] = ACTIONS(842), }, - [170] = { - [aux_sym__paragraph_end_newline_repeat1] = STATE(170), - [anon_sym_BANG] = ACTIONS(563), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_POUND] = ACTIONS(563), - [anon_sym_DOLLAR] = ACTIONS(563), - [anon_sym_PERCENT] = ACTIONS(563), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(563), - [anon_sym_RPAREN] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(563), - [anon_sym_PLUS] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(563), - [anon_sym_DASH] = ACTIONS(563), - [anon_sym_DOT] = ACTIONS(563), - [anon_sym_SLASH] = ACTIONS(563), - [anon_sym_COLON] = ACTIONS(563), - [anon_sym_SEMI] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_GT] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(563), - [anon_sym_AT] = ACTIONS(563), - [anon_sym_LBRACK] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_RBRACK] = ACTIONS(563), - [anon_sym_CARET] = ACTIONS(563), - [anon_sym__] = ACTIONS(563), - [anon_sym_BQUOTE] = ACTIONS(563), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_PIPE] = ACTIONS(563), - [anon_sym_RBRACE] = ACTIONS(563), - [anon_sym_TILDE] = ACTIONS(563), - [aux_sym__html_block_1_token1] = ACTIONS(563), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(565), - [anon_sym_LT_QMARK] = ACTIONS(565), - [aux_sym__html_block_4_token1] = ACTIONS(565), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(563), - [aux_sym__html_block_6_token1] = ACTIONS(565), - [aux_sym__html_block_6_token2] = ACTIONS(563), - [sym__open_tag_html_block] = ACTIONS(563), - [sym__open_tag_html_block_newline] = ACTIONS(563), - [sym__closing_tag_html_block] = ACTIONS(563), - [sym__closing_tag_html_block_newline] = ACTIONS(563), - [sym_backslash_escape] = ACTIONS(563), - [sym_entity_reference] = ACTIONS(563), - [sym_numeric_character_reference] = ACTIONS(563), - [sym_uri_autolink] = ACTIONS(563), - [sym_email_autolink] = ACTIONS(563), - [sym__whitespace_ge_2] = ACTIONS(563), - [aux_sym__whitespace_token1] = ACTIONS(565), - [sym__word_no_digit] = ACTIONS(563), - [sym__digits] = ACTIONS(563), - [aux_sym__newline_token1] = ACTIONS(563), - [sym__block_close] = ACTIONS(563), - [sym__block_quote_start] = ACTIONS(563), - [sym__indented_chunk_start] = ACTIONS(563), - [sym_atx_h1_marker] = ACTIONS(563), - [sym_atx_h2_marker] = ACTIONS(563), - [sym_atx_h3_marker] = ACTIONS(563), - [sym_atx_h4_marker] = ACTIONS(563), - [sym_atx_h5_marker] = ACTIONS(563), - [sym_atx_h6_marker] = ACTIONS(563), - [sym_setext_h1_underline] = ACTIONS(563), - [sym_setext_h2_underline] = ACTIONS(563), - [sym__thematic_break] = ACTIONS(563), - [sym__list_marker_minus] = ACTIONS(563), - [sym__list_marker_plus] = ACTIONS(563), - [sym__list_marker_star] = ACTIONS(563), - [sym__list_marker_parenthesis] = ACTIONS(563), - [sym__list_marker_dot] = ACTIONS(563), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(563), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(563), - [sym__list_marker_star_dont_interrupt] = ACTIONS(563), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(563), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(563), - [sym__fenced_code_block_start_backtick] = ACTIONS(563), - [sym__fenced_code_block_start_tilde] = ACTIONS(563), - [sym__blank_line_start] = ACTIONS(563), - [sym__split_token] = ACTIONS(843), - [sym__code_span_start] = ACTIONS(563), - [sym__emphasis_open_star] = ACTIONS(563), - [sym__emphasis_open_underscore] = ACTIONS(563), + [147] = { + [aux_sym__ignore_matching_tokens] = STATE(105), + [anon_sym_BANG] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(844), + [anon_sym_POUND] = ACTIONS(844), + [anon_sym_DOLLAR] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_AMP] = ACTIONS(846), + [anon_sym_SQUOTE] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(844), + [anon_sym_RPAREN] = ACTIONS(844), + [anon_sym_STAR] = ACTIONS(844), + [anon_sym_PLUS] = ACTIONS(844), + [anon_sym_COMMA] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOT] = ACTIONS(844), + [anon_sym_SLASH] = ACTIONS(844), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_SEMI] = ACTIONS(844), + [anon_sym_LT] = ACTIONS(846), + [anon_sym_EQ] = ACTIONS(844), + [anon_sym_GT] = ACTIONS(844), + [anon_sym_QMARK] = ACTIONS(844), + [anon_sym_AT] = ACTIONS(844), + [anon_sym_LBRACK] = ACTIONS(844), + [anon_sym_BSLASH] = ACTIONS(846), + [anon_sym_RBRACK] = ACTIONS(844), + [anon_sym_CARET] = ACTIONS(844), + [anon_sym__] = ACTIONS(844), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(844), + [anon_sym_PIPE] = ACTIONS(844), + [anon_sym_RBRACE] = ACTIONS(844), + [anon_sym_TILDE] = ACTIONS(844), + [aux_sym__html_block_1_token1] = ACTIONS(844), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(846), + [anon_sym_LT_QMARK] = ACTIONS(846), + [aux_sym__html_block_4_token1] = ACTIONS(846), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(844), + [aux_sym__html_block_6_token1] = ACTIONS(846), + [aux_sym__html_block_6_token2] = ACTIONS(844), + [sym__open_tag_html_block] = ACTIONS(844), + [sym__open_tag_html_block_newline] = ACTIONS(844), + [sym__closing_tag_html_block] = ACTIONS(844), + [sym__closing_tag_html_block_newline] = ACTIONS(844), + [sym_backslash_escape] = ACTIONS(844), + [sym_entity_reference] = ACTIONS(844), + [sym_numeric_character_reference] = ACTIONS(844), + [sym_uri_autolink] = ACTIONS(844), + [sym_email_autolink] = ACTIONS(844), + [sym__whitespace_ge_2] = ACTIONS(844), + [aux_sym__whitespace_token1] = ACTIONS(846), + [sym__word_no_digit] = ACTIONS(844), + [sym__digits] = ACTIONS(844), + [aux_sym__newline_token1] = ACTIONS(844), + [sym__block_close] = ACTIONS(844), + [sym__block_continuation] = ACTIONS(848), + [sym__block_quote_continuation] = ACTIONS(848), + [sym__block_quote_start] = ACTIONS(844), + [sym__indented_chunk_start] = ACTIONS(844), + [sym_atx_h1_marker] = ACTIONS(844), + [sym_atx_h2_marker] = ACTIONS(844), + [sym_atx_h3_marker] = ACTIONS(844), + [sym_atx_h4_marker] = ACTIONS(844), + [sym_atx_h5_marker] = ACTIONS(844), + [sym_atx_h6_marker] = ACTIONS(844), + [sym__thematic_break] = ACTIONS(844), + [sym__list_marker_minus] = ACTIONS(844), + [sym__list_marker_plus] = ACTIONS(844), + [sym__list_marker_star] = ACTIONS(844), + [sym__list_marker_parenthesis] = ACTIONS(844), + [sym__list_marker_dot] = ACTIONS(844), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(844), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(844), + [sym__list_marker_star_dont_interrupt] = ACTIONS(844), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(844), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(844), + [sym__fenced_code_block_start_backtick] = ACTIONS(844), + [sym__fenced_code_block_start_tilde] = ACTIONS(844), + [sym__blank_line_start] = ACTIONS(844), + [sym__code_span_start] = ACTIONS(844), + [sym__emphasis_open_star] = ACTIONS(844), + [sym__emphasis_open_underscore] = ACTIONS(844), + [sym__last_token_whitespace] = ACTIONS(848), }, - [171] = { - [sym__soft_line_break] = STATE(899), - [sym__paragraph_end_newline] = STATE(358), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), - [sym__whitespace] = STATE(899), - [sym__word] = STATE(899), - [sym__newline] = STATE(84), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(304), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(7), - [anon_sym_DOLLAR] = ACTIONS(7), - [anon_sym_PERCENT] = ACTIONS(7), - [anon_sym_AMP] = ACTIONS(9), - [anon_sym_SQUOTE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(7), - [anon_sym_RPAREN] = ACTIONS(7), - [anon_sym_STAR] = ACTIONS(7), - [anon_sym_PLUS] = ACTIONS(7), - [anon_sym_COMMA] = ACTIONS(7), - [anon_sym_DASH] = ACTIONS(7), - [anon_sym_DOT] = ACTIONS(7), - [anon_sym_SLASH] = ACTIONS(7), - [anon_sym_COLON] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(7), - [anon_sym_LT] = ACTIONS(11), - [anon_sym_EQ] = ACTIONS(7), - [anon_sym_GT] = ACTIONS(7), - [anon_sym_QMARK] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(846), - [anon_sym_BSLASH] = ACTIONS(15), - [anon_sym_RBRACK] = ACTIONS(7), - [anon_sym_CARET] = ACTIONS(7), - [anon_sym__] = ACTIONS(7), - [anon_sym_BQUOTE] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_PIPE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(7), - [anon_sym_TILDE] = ACTIONS(7), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(848), - [anon_sym_LT_QMARK] = ACTIONS(850), + [148] = { + [aux_sym__ignore_matching_tokens] = STATE(160), + [anon_sym_BANG] = ACTIONS(850), + [anon_sym_DQUOTE] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(850), + [anon_sym_DOLLAR] = ACTIONS(850), + [anon_sym_PERCENT] = ACTIONS(850), + [anon_sym_AMP] = ACTIONS(852), + [anon_sym_SQUOTE] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(850), + [anon_sym_RPAREN] = ACTIONS(850), + [anon_sym_STAR] = ACTIONS(850), + [anon_sym_PLUS] = ACTIONS(850), + [anon_sym_COMMA] = ACTIONS(850), + [anon_sym_DASH] = ACTIONS(850), + [anon_sym_DOT] = ACTIONS(850), + [anon_sym_SLASH] = ACTIONS(850), + [anon_sym_COLON] = ACTIONS(850), + [anon_sym_SEMI] = ACTIONS(850), + [anon_sym_LT] = ACTIONS(852), + [anon_sym_EQ] = ACTIONS(850), + [anon_sym_GT] = ACTIONS(850), + [anon_sym_QMARK] = ACTIONS(850), + [anon_sym_AT] = ACTIONS(850), + [anon_sym_LBRACK] = ACTIONS(850), + [anon_sym_BSLASH] = ACTIONS(852), + [anon_sym_RBRACK] = ACTIONS(850), + [anon_sym_CARET] = ACTIONS(850), + [anon_sym__] = ACTIONS(850), + [anon_sym_BQUOTE] = ACTIONS(850), + [anon_sym_LBRACE] = ACTIONS(850), + [anon_sym_PIPE] = ACTIONS(850), + [anon_sym_RBRACE] = ACTIONS(850), + [anon_sym_TILDE] = ACTIONS(850), + [aux_sym__html_block_1_token1] = ACTIONS(850), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(852), + [anon_sym_LT_QMARK] = ACTIONS(852), [aux_sym__html_block_4_token1] = ACTIONS(852), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(850), + [aux_sym__html_block_6_token1] = ACTIONS(852), + [aux_sym__html_block_6_token2] = ACTIONS(850), + [sym__open_tag_html_block] = ACTIONS(850), + [sym__open_tag_html_block_newline] = ACTIONS(850), + [sym__closing_tag_html_block] = ACTIONS(850), + [sym__closing_tag_html_block_newline] = ACTIONS(850), + [sym_backslash_escape] = ACTIONS(850), + [sym_entity_reference] = ACTIONS(850), + [sym_numeric_character_reference] = ACTIONS(850), + [sym_uri_autolink] = ACTIONS(850), + [sym_email_autolink] = ACTIONS(850), + [sym__whitespace_ge_2] = ACTIONS(850), + [aux_sym__whitespace_token1] = ACTIONS(852), + [sym__word_no_digit] = ACTIONS(850), + [sym__digits] = ACTIONS(850), + [aux_sym__newline_token1] = ACTIONS(850), + [sym__block_close] = ACTIONS(850), + [sym__block_continuation] = ACTIONS(113), + [sym__block_quote_continuation] = ACTIONS(113), + [sym__block_quote_start] = ACTIONS(850), + [sym__indented_chunk_start] = ACTIONS(850), + [sym_atx_h1_marker] = ACTIONS(850), + [sym_atx_h2_marker] = ACTIONS(850), + [sym_atx_h3_marker] = ACTIONS(850), + [sym_atx_h4_marker] = ACTIONS(850), + [sym_atx_h5_marker] = ACTIONS(850), + [sym_atx_h6_marker] = ACTIONS(850), + [sym__thematic_break] = ACTIONS(850), + [sym__list_marker_minus] = ACTIONS(850), + [sym__list_marker_plus] = ACTIONS(850), + [sym__list_marker_star] = ACTIONS(850), + [sym__list_marker_parenthesis] = ACTIONS(850), + [sym__list_marker_dot] = ACTIONS(850), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(850), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(850), + [sym__list_marker_star_dont_interrupt] = ACTIONS(850), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(850), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(850), + [sym__fenced_code_block_start_backtick] = ACTIONS(850), + [sym__fenced_code_block_start_tilde] = ACTIONS(850), + [sym__blank_line_start] = ACTIONS(850), + [sym__code_span_start] = ACTIONS(850), + [sym__emphasis_open_star] = ACTIONS(850), + [sym__emphasis_open_underscore] = ACTIONS(850), + [sym__last_token_whitespace] = ACTIONS(113), + }, + [149] = { + [aux_sym__ignore_matching_tokens] = STATE(160), + [anon_sym_BANG] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(844), + [anon_sym_POUND] = ACTIONS(844), + [anon_sym_DOLLAR] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_AMP] = ACTIONS(846), + [anon_sym_SQUOTE] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(844), + [anon_sym_RPAREN] = ACTIONS(844), + [anon_sym_STAR] = ACTIONS(844), + [anon_sym_PLUS] = ACTIONS(844), + [anon_sym_COMMA] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOT] = ACTIONS(844), + [anon_sym_SLASH] = ACTIONS(844), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_SEMI] = ACTIONS(844), + [anon_sym_LT] = ACTIONS(846), + [anon_sym_EQ] = ACTIONS(844), + [anon_sym_GT] = ACTIONS(844), + [anon_sym_QMARK] = ACTIONS(844), + [anon_sym_AT] = ACTIONS(844), + [anon_sym_LBRACK] = ACTIONS(844), + [anon_sym_BSLASH] = ACTIONS(846), + [anon_sym_RBRACK] = ACTIONS(844), + [anon_sym_CARET] = ACTIONS(844), + [anon_sym__] = ACTIONS(844), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(844), + [anon_sym_PIPE] = ACTIONS(844), + [anon_sym_RBRACE] = ACTIONS(844), + [anon_sym_TILDE] = ACTIONS(844), + [aux_sym__html_block_1_token1] = ACTIONS(844), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(846), + [anon_sym_LT_QMARK] = ACTIONS(846), + [aux_sym__html_block_4_token1] = ACTIONS(846), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(844), + [aux_sym__html_block_6_token1] = ACTIONS(846), + [aux_sym__html_block_6_token2] = ACTIONS(844), + [sym__open_tag_html_block] = ACTIONS(844), + [sym__open_tag_html_block_newline] = ACTIONS(844), + [sym__closing_tag_html_block] = ACTIONS(844), + [sym__closing_tag_html_block_newline] = ACTIONS(844), + [sym_backslash_escape] = ACTIONS(844), + [sym_entity_reference] = ACTIONS(844), + [sym_numeric_character_reference] = ACTIONS(844), + [sym_uri_autolink] = ACTIONS(844), + [sym_email_autolink] = ACTIONS(844), + [sym__whitespace_ge_2] = ACTIONS(844), + [aux_sym__whitespace_token1] = ACTIONS(846), + [sym__word_no_digit] = ACTIONS(844), + [sym__digits] = ACTIONS(844), + [aux_sym__newline_token1] = ACTIONS(844), + [sym__block_close] = ACTIONS(844), + [sym__block_continuation] = ACTIONS(113), + [sym__block_quote_continuation] = ACTIONS(113), + [sym__block_quote_start] = ACTIONS(844), + [sym__indented_chunk_start] = ACTIONS(844), + [sym_atx_h1_marker] = ACTIONS(844), + [sym_atx_h2_marker] = ACTIONS(844), + [sym_atx_h3_marker] = ACTIONS(844), + [sym_atx_h4_marker] = ACTIONS(844), + [sym_atx_h5_marker] = ACTIONS(844), + [sym_atx_h6_marker] = ACTIONS(844), + [sym__thematic_break] = ACTIONS(844), + [sym__list_marker_minus] = ACTIONS(844), + [sym__list_marker_plus] = ACTIONS(844), + [sym__list_marker_star] = ACTIONS(844), + [sym__list_marker_parenthesis] = ACTIONS(844), + [sym__list_marker_dot] = ACTIONS(844), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(844), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(844), + [sym__list_marker_star_dont_interrupt] = ACTIONS(844), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(844), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(844), + [sym__fenced_code_block_start_backtick] = ACTIONS(844), + [sym__fenced_code_block_start_tilde] = ACTIONS(844), + [sym__blank_line_start] = ACTIONS(844), + [sym__code_span_start] = ACTIONS(844), + [sym__emphasis_open_star] = ACTIONS(844), + [sym__emphasis_open_underscore] = ACTIONS(844), + [sym__last_token_whitespace] = ACTIONS(113), + }, + [150] = { + [aux_sym__ignore_matching_tokens] = STATE(109), + [anon_sym_BANG] = ACTIONS(854), + [anon_sym_DQUOTE] = ACTIONS(854), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR] = ACTIONS(854), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_SQUOTE] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(854), + [anon_sym_RPAREN] = ACTIONS(854), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_PLUS] = ACTIONS(854), + [anon_sym_COMMA] = ACTIONS(854), + [anon_sym_DASH] = ACTIONS(854), + [anon_sym_DOT] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(854), + [anon_sym_SEMI] = ACTIONS(854), + [anon_sym_LT] = ACTIONS(856), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_GT] = ACTIONS(854), + [anon_sym_QMARK] = ACTIONS(854), + [anon_sym_AT] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(854), + [anon_sym_BSLASH] = ACTIONS(856), + [anon_sym_RBRACK] = ACTIONS(854), + [anon_sym_CARET] = ACTIONS(854), + [anon_sym__] = ACTIONS(854), + [anon_sym_BQUOTE] = ACTIONS(854), + [anon_sym_LBRACE] = ACTIONS(854), + [anon_sym_PIPE] = ACTIONS(854), + [anon_sym_RBRACE] = ACTIONS(854), + [anon_sym_TILDE] = ACTIONS(854), + [aux_sym__html_block_1_token1] = ACTIONS(854), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(856), + [anon_sym_LT_QMARK] = ACTIONS(856), + [aux_sym__html_block_4_token1] = ACTIONS(856), [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(854), - [sym_backslash_escape] = ACTIONS(35), - [sym_entity_reference] = ACTIONS(35), - [sym_numeric_character_reference] = ACTIONS(35), - [sym_uri_autolink] = ACTIONS(35), - [sym_email_autolink] = ACTIONS(35), - [sym__whitespace_ge_2] = ACTIONS(856), - [aux_sym__whitespace_token1] = ACTIONS(858), - [sym__word_no_digit] = ACTIONS(35), - [sym__digits] = ACTIONS(35), + [aux_sym__html_block_6_token1] = ACTIONS(856), + [aux_sym__html_block_6_token2] = ACTIONS(854), + [sym__open_tag_html_block] = ACTIONS(854), + [sym__open_tag_html_block_newline] = ACTIONS(854), + [sym__closing_tag_html_block] = ACTIONS(854), + [sym__closing_tag_html_block_newline] = ACTIONS(854), + [sym_backslash_escape] = ACTIONS(854), + [sym_entity_reference] = ACTIONS(854), + [sym_numeric_character_reference] = ACTIONS(854), + [sym_uri_autolink] = ACTIONS(854), + [sym_email_autolink] = ACTIONS(854), + [sym__whitespace_ge_2] = ACTIONS(854), + [aux_sym__whitespace_token1] = ACTIONS(856), + [sym__word_no_digit] = ACTIONS(854), + [sym__digits] = ACTIONS(854), + [aux_sym__newline_token1] = ACTIONS(854), + [sym__block_close] = ACTIONS(854), + [sym__block_continuation] = ACTIONS(858), + [sym__block_quote_continuation] = ACTIONS(858), + [sym__block_quote_start] = ACTIONS(854), + [sym__indented_chunk_start] = ACTIONS(854), + [sym_atx_h1_marker] = ACTIONS(854), + [sym_atx_h2_marker] = ACTIONS(854), + [sym_atx_h3_marker] = ACTIONS(854), + [sym_atx_h4_marker] = ACTIONS(854), + [sym_atx_h5_marker] = ACTIONS(854), + [sym_atx_h6_marker] = ACTIONS(854), + [sym__thematic_break] = ACTIONS(854), + [sym__list_marker_minus] = ACTIONS(854), + [sym__list_marker_plus] = ACTIONS(854), + [sym__list_marker_star] = ACTIONS(854), + [sym__list_marker_parenthesis] = ACTIONS(854), + [sym__list_marker_dot] = ACTIONS(854), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(854), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(854), + [sym__list_marker_star_dont_interrupt] = ACTIONS(854), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(854), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(854), + [sym__fenced_code_block_start_backtick] = ACTIONS(854), + [sym__fenced_code_block_start_tilde] = ACTIONS(854), + [sym__blank_line_start] = ACTIONS(854), + [sym__code_span_start] = ACTIONS(854), + [sym__emphasis_open_star] = ACTIONS(854), + [sym__emphasis_open_underscore] = ACTIONS(854), + [sym__last_token_whitespace] = ACTIONS(858), + }, + [151] = { + [aux_sym__ignore_matching_tokens] = STATE(160), + [anon_sym_BANG] = ACTIONS(854), + [anon_sym_DQUOTE] = ACTIONS(854), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR] = ACTIONS(854), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_SQUOTE] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(854), + [anon_sym_RPAREN] = ACTIONS(854), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_PLUS] = ACTIONS(854), + [anon_sym_COMMA] = ACTIONS(854), + [anon_sym_DASH] = ACTIONS(854), + [anon_sym_DOT] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(854), + [anon_sym_SEMI] = ACTIONS(854), + [anon_sym_LT] = ACTIONS(856), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_GT] = ACTIONS(854), + [anon_sym_QMARK] = ACTIONS(854), + [anon_sym_AT] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(854), + [anon_sym_BSLASH] = ACTIONS(856), + [anon_sym_RBRACK] = ACTIONS(854), + [anon_sym_CARET] = ACTIONS(854), + [anon_sym__] = ACTIONS(854), + [anon_sym_BQUOTE] = ACTIONS(854), + [anon_sym_LBRACE] = ACTIONS(854), + [anon_sym_PIPE] = ACTIONS(854), + [anon_sym_RBRACE] = ACTIONS(854), + [anon_sym_TILDE] = ACTIONS(854), + [aux_sym__html_block_1_token1] = ACTIONS(854), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(856), + [anon_sym_LT_QMARK] = ACTIONS(856), + [aux_sym__html_block_4_token1] = ACTIONS(856), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(854), + [aux_sym__html_block_6_token1] = ACTIONS(856), + [aux_sym__html_block_6_token2] = ACTIONS(854), + [sym__open_tag_html_block] = ACTIONS(854), + [sym__open_tag_html_block_newline] = ACTIONS(854), + [sym__closing_tag_html_block] = ACTIONS(854), + [sym__closing_tag_html_block_newline] = ACTIONS(854), + [sym_backslash_escape] = ACTIONS(854), + [sym_entity_reference] = ACTIONS(854), + [sym_numeric_character_reference] = ACTIONS(854), + [sym_uri_autolink] = ACTIONS(854), + [sym_email_autolink] = ACTIONS(854), + [sym__whitespace_ge_2] = ACTIONS(854), + [aux_sym__whitespace_token1] = ACTIONS(856), + [sym__word_no_digit] = ACTIONS(854), + [sym__digits] = ACTIONS(854), + [aux_sym__newline_token1] = ACTIONS(854), + [sym__block_close] = ACTIONS(854), + [sym__block_continuation] = ACTIONS(113), + [sym__block_quote_continuation] = ACTIONS(113), + [sym__block_quote_start] = ACTIONS(854), + [sym__indented_chunk_start] = ACTIONS(854), + [sym_atx_h1_marker] = ACTIONS(854), + [sym_atx_h2_marker] = ACTIONS(854), + [sym_atx_h3_marker] = ACTIONS(854), + [sym_atx_h4_marker] = ACTIONS(854), + [sym_atx_h5_marker] = ACTIONS(854), + [sym_atx_h6_marker] = ACTIONS(854), + [sym__thematic_break] = ACTIONS(854), + [sym__list_marker_minus] = ACTIONS(854), + [sym__list_marker_plus] = ACTIONS(854), + [sym__list_marker_star] = ACTIONS(854), + [sym__list_marker_parenthesis] = ACTIONS(854), + [sym__list_marker_dot] = ACTIONS(854), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(854), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(854), + [sym__list_marker_star_dont_interrupt] = ACTIONS(854), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(854), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(854), + [sym__fenced_code_block_start_backtick] = ACTIONS(854), + [sym__fenced_code_block_start_tilde] = ACTIONS(854), + [sym__blank_line_start] = ACTIONS(854), + [sym__code_span_start] = ACTIONS(854), + [sym__emphasis_open_star] = ACTIONS(854), + [sym__emphasis_open_underscore] = ACTIONS(854), + [sym__last_token_whitespace] = ACTIONS(113), + }, + [152] = { + [aux_sym__ignore_matching_tokens] = STATE(201), + [ts_builtin_sym_end] = 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), + [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(860), + [sym_numeric_character_reference] = ACTIONS(860), + [sym_uri_autolink] = ACTIONS(860), + [sym_email_autolink] = 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__code_span_start] = ACTIONS(69), - [sym__emphasis_open_star] = ACTIONS(71), - [sym__emphasis_open_underscore] = ACTIONS(73), + [sym__block_continuation] = ACTIONS(109), + [sym__block_quote_continuation] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(860), + [sym__indented_chunk_start] = ACTIONS(860), + [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__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(860), + [sym__code_span_start] = ACTIONS(860), + [sym__emphasis_open_star] = ACTIONS(860), + [sym__emphasis_open_underscore] = ACTIONS(860), + [sym__last_token_whitespace] = ACTIONS(109), }, - [172] = { - [aux_sym__ignore_matching_tokens] = STATE(110), - [ts_builtin_sym_end] = ACTIONS(862), - [anon_sym_BANG] = ACTIONS(862), - [anon_sym_DQUOTE] = ACTIONS(862), - [anon_sym_POUND] = ACTIONS(862), - [anon_sym_DOLLAR] = ACTIONS(862), - [anon_sym_PERCENT] = ACTIONS(862), - [anon_sym_AMP] = ACTIONS(864), - [anon_sym_SQUOTE] = ACTIONS(862), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_RPAREN] = ACTIONS(862), - [anon_sym_STAR] = ACTIONS(862), - [anon_sym_PLUS] = ACTIONS(862), - [anon_sym_COMMA] = ACTIONS(862), - [anon_sym_DASH] = ACTIONS(862), - [anon_sym_DOT] = ACTIONS(862), - [anon_sym_SLASH] = ACTIONS(862), - [anon_sym_COLON] = ACTIONS(862), - [anon_sym_SEMI] = ACTIONS(862), - [anon_sym_LT] = ACTIONS(864), - [anon_sym_EQ] = ACTIONS(862), - [anon_sym_GT] = ACTIONS(862), - [anon_sym_QMARK] = ACTIONS(862), - [anon_sym_AT] = ACTIONS(862), - [anon_sym_LBRACK] = ACTIONS(862), - [anon_sym_BSLASH] = ACTIONS(864), - [anon_sym_RBRACK] = ACTIONS(862), - [anon_sym_CARET] = ACTIONS(862), - [anon_sym__] = ACTIONS(862), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LBRACE] = ACTIONS(862), - [anon_sym_PIPE] = ACTIONS(862), - [anon_sym_RBRACE] = ACTIONS(862), - [anon_sym_TILDE] = ACTIONS(862), - [aux_sym__html_block_1_token1] = ACTIONS(862), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(864), - [anon_sym_LT_QMARK] = ACTIONS(864), - [aux_sym__html_block_4_token1] = ACTIONS(864), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(862), - [aux_sym__html_block_6_token1] = ACTIONS(864), - [aux_sym__html_block_6_token2] = ACTIONS(862), - [sym__open_tag_html_block] = ACTIONS(862), - [sym__open_tag_html_block_newline] = ACTIONS(862), - [sym__closing_tag_html_block] = ACTIONS(862), - [sym__closing_tag_html_block_newline] = ACTIONS(862), - [sym_backslash_escape] = ACTIONS(862), - [sym_entity_reference] = ACTIONS(862), - [sym_numeric_character_reference] = ACTIONS(862), - [sym_uri_autolink] = ACTIONS(862), - [sym_email_autolink] = ACTIONS(862), - [sym__whitespace_ge_2] = ACTIONS(862), - [aux_sym__whitespace_token1] = ACTIONS(864), - [sym__word_no_digit] = ACTIONS(862), - [sym__digits] = ACTIONS(862), - [aux_sym__newline_token1] = ACTIONS(862), - [sym__block_continuation] = ACTIONS(866), - [sym__block_quote_continuation] = ACTIONS(866), - [sym__block_quote_start] = ACTIONS(862), - [sym__indented_chunk_start] = ACTIONS(862), - [sym_atx_h1_marker] = ACTIONS(862), - [sym_atx_h2_marker] = ACTIONS(862), - [sym_atx_h3_marker] = ACTIONS(862), - [sym_atx_h4_marker] = ACTIONS(862), - [sym_atx_h5_marker] = ACTIONS(862), - [sym_atx_h6_marker] = ACTIONS(862), - [sym__thematic_break] = ACTIONS(862), - [sym__list_marker_minus] = ACTIONS(862), - [sym__list_marker_plus] = ACTIONS(862), - [sym__list_marker_star] = ACTIONS(862), - [sym__list_marker_parenthesis] = ACTIONS(862), - [sym__list_marker_dot] = ACTIONS(862), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(862), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(862), - [sym__list_marker_star_dont_interrupt] = ACTIONS(862), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(862), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(862), - [sym__fenced_code_block_start_backtick] = ACTIONS(862), - [sym__fenced_code_block_start_tilde] = ACTIONS(862), - [sym__blank_line_start] = ACTIONS(862), - [sym__code_span_start] = ACTIONS(862), - [sym__emphasis_open_star] = ACTIONS(862), - [sym__emphasis_open_underscore] = ACTIONS(862), - [sym__last_token_whitespace] = ACTIONS(866), + [153] = { + [aux_sym__ignore_matching_tokens] = STATE(201), + [ts_builtin_sym_end] = ACTIONS(836), + [anon_sym_BANG] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(836), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR] = ACTIONS(836), + [anon_sym_PERCENT] = ACTIONS(836), + [anon_sym_AMP] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(836), + [anon_sym_LPAREN] = ACTIONS(836), + [anon_sym_RPAREN] = ACTIONS(836), + [anon_sym_STAR] = ACTIONS(836), + [anon_sym_PLUS] = ACTIONS(836), + [anon_sym_COMMA] = ACTIONS(836), + [anon_sym_DASH] = ACTIONS(836), + [anon_sym_DOT] = ACTIONS(836), + [anon_sym_SLASH] = ACTIONS(836), + [anon_sym_COLON] = ACTIONS(836), + [anon_sym_SEMI] = ACTIONS(836), + [anon_sym_LT] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(836), + [anon_sym_GT] = ACTIONS(836), + [anon_sym_QMARK] = ACTIONS(836), + [anon_sym_AT] = ACTIONS(836), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_BSLASH] = ACTIONS(838), + [anon_sym_RBRACK] = ACTIONS(836), + [anon_sym_CARET] = ACTIONS(836), + [anon_sym__] = ACTIONS(836), + [anon_sym_BQUOTE] = ACTIONS(836), + [anon_sym_LBRACE] = ACTIONS(836), + [anon_sym_PIPE] = ACTIONS(836), + [anon_sym_RBRACE] = ACTIONS(836), + [anon_sym_TILDE] = ACTIONS(836), + [aux_sym__html_block_1_token1] = ACTIONS(836), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(838), + [anon_sym_LT_QMARK] = ACTIONS(838), + [aux_sym__html_block_4_token1] = ACTIONS(838), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(836), + [aux_sym__html_block_6_token1] = ACTIONS(838), + [aux_sym__html_block_6_token2] = ACTIONS(836), + [sym__open_tag_html_block] = ACTIONS(836), + [sym__open_tag_html_block_newline] = ACTIONS(836), + [sym__closing_tag_html_block] = ACTIONS(836), + [sym__closing_tag_html_block_newline] = ACTIONS(836), + [sym_backslash_escape] = ACTIONS(836), + [sym_entity_reference] = ACTIONS(836), + [sym_numeric_character_reference] = ACTIONS(836), + [sym_uri_autolink] = ACTIONS(836), + [sym_email_autolink] = ACTIONS(836), + [sym__whitespace_ge_2] = ACTIONS(836), + [aux_sym__whitespace_token1] = ACTIONS(838), + [sym__word_no_digit] = ACTIONS(836), + [sym__digits] = ACTIONS(836), + [aux_sym__newline_token1] = ACTIONS(836), + [sym__block_continuation] = ACTIONS(109), + [sym__block_quote_continuation] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(836), + [sym__indented_chunk_start] = ACTIONS(836), + [sym_atx_h1_marker] = ACTIONS(836), + [sym_atx_h2_marker] = ACTIONS(836), + [sym_atx_h3_marker] = ACTIONS(836), + [sym_atx_h4_marker] = ACTIONS(836), + [sym_atx_h5_marker] = ACTIONS(836), + [sym_atx_h6_marker] = ACTIONS(836), + [sym__thematic_break] = ACTIONS(836), + [sym__list_marker_minus] = ACTIONS(836), + [sym__list_marker_plus] = ACTIONS(836), + [sym__list_marker_star] = ACTIONS(836), + [sym__list_marker_parenthesis] = ACTIONS(836), + [sym__list_marker_dot] = ACTIONS(836), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(836), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(836), + [sym__list_marker_star_dont_interrupt] = ACTIONS(836), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(836), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(836), + [sym__fenced_code_block_start_backtick] = ACTIONS(836), + [sym__fenced_code_block_start_tilde] = ACTIONS(836), + [sym__blank_line_start] = ACTIONS(836), + [sym__code_span_start] = ACTIONS(836), + [sym__emphasis_open_star] = ACTIONS(836), + [sym__emphasis_open_underscore] = ACTIONS(836), + [sym__last_token_whitespace] = ACTIONS(109), }, - [173] = { - [aux_sym__ignore_matching_tokens] = STATE(151), - [anon_sym_BANG] = ACTIONS(685), - [anon_sym_DQUOTE] = ACTIONS(685), - [anon_sym_POUND] = ACTIONS(685), - [anon_sym_DOLLAR] = ACTIONS(685), - [anon_sym_PERCENT] = ACTIONS(685), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(685), - [anon_sym_RPAREN] = ACTIONS(685), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_DOT] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(685), - [anon_sym_COLON] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(685), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_EQ] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_QMARK] = ACTIONS(685), - [anon_sym_AT] = ACTIONS(685), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_BSLASH] = ACTIONS(687), - [anon_sym_RBRACK] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(685), - [anon_sym__] = ACTIONS(685), - [anon_sym_BQUOTE] = ACTIONS(685), - [anon_sym_LBRACE] = ACTIONS(685), - [anon_sym_PIPE] = ACTIONS(685), - [anon_sym_RBRACE] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(685), - [aux_sym__html_block_1_token1] = ACTIONS(685), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(687), - [anon_sym_LT_QMARK] = ACTIONS(687), - [aux_sym__html_block_4_token1] = ACTIONS(687), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(685), - [aux_sym__html_block_6_token1] = ACTIONS(687), - [aux_sym__html_block_6_token2] = ACTIONS(685), - [sym__open_tag_html_block] = ACTIONS(685), - [sym__open_tag_html_block_newline] = ACTIONS(685), - [sym__closing_tag_html_block] = ACTIONS(685), - [sym__closing_tag_html_block_newline] = ACTIONS(685), - [sym_backslash_escape] = ACTIONS(685), - [sym_entity_reference] = ACTIONS(685), - [sym_numeric_character_reference] = ACTIONS(685), - [sym_uri_autolink] = ACTIONS(685), - [sym_email_autolink] = ACTIONS(685), - [sym__whitespace_ge_2] = ACTIONS(685), - [aux_sym__whitespace_token1] = ACTIONS(687), - [sym__word_no_digit] = ACTIONS(685), - [sym__digits] = ACTIONS(685), - [aux_sym__newline_token1] = ACTIONS(685), - [sym__block_close] = ACTIONS(685), + [154] = { + [aux_sym__ignore_matching_tokens] = STATE(201), + [ts_builtin_sym_end] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(864), + [anon_sym_DQUOTE] = ACTIONS(864), + [anon_sym_POUND] = ACTIONS(864), + [anon_sym_DOLLAR] = ACTIONS(864), + [anon_sym_PERCENT] = ACTIONS(864), + [anon_sym_AMP] = ACTIONS(866), + [anon_sym_SQUOTE] = ACTIONS(864), + [anon_sym_LPAREN] = ACTIONS(864), + [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(866), + [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(866), + [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), + [aux_sym__html_block_1_token1] = ACTIONS(864), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(866), + [anon_sym_LT_QMARK] = ACTIONS(866), + [aux_sym__html_block_4_token1] = ACTIONS(866), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(864), + [aux_sym__html_block_6_token1] = ACTIONS(866), + [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_entity_reference] = ACTIONS(864), + [sym_numeric_character_reference] = ACTIONS(864), + [sym_uri_autolink] = ACTIONS(864), + [sym_email_autolink] = ACTIONS(864), + [sym__whitespace_ge_2] = ACTIONS(864), + [aux_sym__whitespace_token1] = ACTIONS(866), + [sym__word_no_digit] = ACTIONS(864), + [sym__digits] = ACTIONS(864), + [aux_sym__newline_token1] = ACTIONS(864), + [sym__block_continuation] = ACTIONS(109), + [sym__block_quote_continuation] = ACTIONS(109), + [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__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__last_token_whitespace] = ACTIONS(109), + }, + [155] = { + [aux_sym__ignore_matching_tokens] = STATE(201), + [ts_builtin_sym_end] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(389), + [anon_sym_DQUOTE] = ACTIONS(389), + [anon_sym_POUND] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(391), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_RPAREN] = ACTIONS(389), + [anon_sym_STAR] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_COMMA] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_DOT] = ACTIONS(389), + [anon_sym_SLASH] = ACTIONS(389), + [anon_sym_COLON] = ACTIONS(389), + [anon_sym_SEMI] = ACTIONS(389), + [anon_sym_LT] = ACTIONS(391), + [anon_sym_EQ] = ACTIONS(389), + [anon_sym_GT] = ACTIONS(389), + [anon_sym_QMARK] = ACTIONS(389), + [anon_sym_AT] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_BSLASH] = ACTIONS(391), + [anon_sym_RBRACK] = ACTIONS(389), + [anon_sym_CARET] = ACTIONS(389), + [anon_sym__] = ACTIONS(389), + [anon_sym_BQUOTE] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_PIPE] = ACTIONS(389), + [anon_sym_RBRACE] = ACTIONS(389), + [anon_sym_TILDE] = ACTIONS(389), + [aux_sym__html_block_1_token1] = ACTIONS(389), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(391), + [anon_sym_LT_QMARK] = ACTIONS(391), + [aux_sym__html_block_4_token1] = ACTIONS(391), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(389), + [aux_sym__html_block_6_token1] = ACTIONS(391), + [aux_sym__html_block_6_token2] = ACTIONS(389), + [sym__open_tag_html_block] = ACTIONS(389), + [sym__open_tag_html_block_newline] = ACTIONS(389), + [sym__closing_tag_html_block] = ACTIONS(389), + [sym__closing_tag_html_block_newline] = ACTIONS(389), + [sym_backslash_escape] = ACTIONS(389), + [sym_entity_reference] = ACTIONS(389), + [sym_numeric_character_reference] = ACTIONS(389), + [sym_uri_autolink] = ACTIONS(389), + [sym_email_autolink] = ACTIONS(389), + [sym__whitespace_ge_2] = ACTIONS(389), + [aux_sym__whitespace_token1] = ACTIONS(391), + [sym__word_no_digit] = ACTIONS(389), + [sym__digits] = ACTIONS(389), + [aux_sym__newline_token1] = ACTIONS(389), + [sym__block_continuation] = ACTIONS(109), + [sym__block_quote_continuation] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(389), + [sym__indented_chunk_start] = ACTIONS(389), + [sym_atx_h1_marker] = ACTIONS(389), + [sym_atx_h2_marker] = ACTIONS(389), + [sym_atx_h3_marker] = ACTIONS(389), + [sym_atx_h4_marker] = ACTIONS(389), + [sym_atx_h5_marker] = ACTIONS(389), + [sym_atx_h6_marker] = ACTIONS(389), + [sym__thematic_break] = ACTIONS(389), + [sym__list_marker_minus] = ACTIONS(389), + [sym__list_marker_plus] = ACTIONS(389), + [sym__list_marker_star] = ACTIONS(389), + [sym__list_marker_parenthesis] = ACTIONS(389), + [sym__list_marker_dot] = ACTIONS(389), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(389), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(389), + [sym__list_marker_star_dont_interrupt] = ACTIONS(389), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(389), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(389), + [sym__fenced_code_block_start_backtick] = ACTIONS(389), + [sym__fenced_code_block_start_tilde] = ACTIONS(389), + [sym__blank_line_start] = ACTIONS(389), + [sym__code_span_start] = ACTIONS(389), + [sym__emphasis_open_star] = ACTIONS(389), + [sym__emphasis_open_underscore] = ACTIONS(389), + [sym__last_token_whitespace] = ACTIONS(109), + }, + [156] = { + [aux_sym__ignore_matching_tokens] = STATE(104), + [ts_builtin_sym_end] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(389), + [anon_sym_DQUOTE] = ACTIONS(389), + [anon_sym_POUND] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(389), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(391), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_RPAREN] = ACTIONS(389), + [anon_sym_STAR] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_COMMA] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_DOT] = ACTIONS(389), + [anon_sym_SLASH] = ACTIONS(389), + [anon_sym_COLON] = ACTIONS(389), + [anon_sym_SEMI] = ACTIONS(389), + [anon_sym_LT] = ACTIONS(391), + [anon_sym_EQ] = ACTIONS(389), + [anon_sym_GT] = ACTIONS(389), + [anon_sym_QMARK] = ACTIONS(389), + [anon_sym_AT] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(389), + [anon_sym_BSLASH] = ACTIONS(391), + [anon_sym_RBRACK] = ACTIONS(389), + [anon_sym_CARET] = ACTIONS(389), + [anon_sym__] = ACTIONS(389), + [anon_sym_BQUOTE] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(389), + [anon_sym_PIPE] = ACTIONS(389), + [anon_sym_RBRACE] = ACTIONS(389), + [anon_sym_TILDE] = ACTIONS(389), + [aux_sym__html_block_1_token1] = ACTIONS(389), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(391), + [anon_sym_LT_QMARK] = ACTIONS(391), + [aux_sym__html_block_4_token1] = ACTIONS(391), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(389), + [aux_sym__html_block_6_token1] = ACTIONS(391), + [aux_sym__html_block_6_token2] = ACTIONS(389), + [sym__open_tag_html_block] = ACTIONS(389), + [sym__open_tag_html_block_newline] = ACTIONS(389), + [sym__closing_tag_html_block] = ACTIONS(389), + [sym__closing_tag_html_block_newline] = ACTIONS(389), + [sym_backslash_escape] = ACTIONS(389), + [sym_entity_reference] = ACTIONS(389), + [sym_numeric_character_reference] = ACTIONS(389), + [sym_uri_autolink] = ACTIONS(389), + [sym_email_autolink] = ACTIONS(389), + [sym__whitespace_ge_2] = ACTIONS(389), + [aux_sym__whitespace_token1] = ACTIONS(391), + [sym__word_no_digit] = ACTIONS(389), + [sym__digits] = ACTIONS(389), + [aux_sym__newline_token1] = ACTIONS(389), [sym__block_continuation] = ACTIONS(868), [sym__block_quote_continuation] = ACTIONS(868), - [sym__block_quote_start] = ACTIONS(685), - [sym__indented_chunk_start] = ACTIONS(685), - [sym_atx_h1_marker] = ACTIONS(685), - [sym_atx_h2_marker] = ACTIONS(685), - [sym_atx_h3_marker] = ACTIONS(685), - [sym_atx_h4_marker] = ACTIONS(685), - [sym_atx_h5_marker] = ACTIONS(685), - [sym_atx_h6_marker] = ACTIONS(685), - [sym__thematic_break] = ACTIONS(685), - [sym__list_marker_minus] = ACTIONS(685), - [sym__list_marker_plus] = ACTIONS(685), - [sym__list_marker_star] = ACTIONS(685), - [sym__list_marker_parenthesis] = ACTIONS(685), - [sym__list_marker_dot] = ACTIONS(685), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(685), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(685), - [sym__list_marker_star_dont_interrupt] = ACTIONS(685), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(685), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(685), - [sym__fenced_code_block_start_backtick] = ACTIONS(685), - [sym__fenced_code_block_start_tilde] = ACTIONS(685), - [sym__blank_line_start] = ACTIONS(685), - [sym__code_span_start] = ACTIONS(685), - [sym__emphasis_open_star] = ACTIONS(685), - [sym__emphasis_open_underscore] = ACTIONS(685), + [sym__block_quote_start] = ACTIONS(389), + [sym__indented_chunk_start] = ACTIONS(389), + [sym_atx_h1_marker] = ACTIONS(389), + [sym_atx_h2_marker] = ACTIONS(389), + [sym_atx_h3_marker] = ACTIONS(389), + [sym_atx_h4_marker] = ACTIONS(389), + [sym_atx_h5_marker] = ACTIONS(389), + [sym_atx_h6_marker] = ACTIONS(389), + [sym__thematic_break] = ACTIONS(389), + [sym__list_marker_minus] = ACTIONS(389), + [sym__list_marker_plus] = ACTIONS(389), + [sym__list_marker_star] = ACTIONS(389), + [sym__list_marker_parenthesis] = ACTIONS(389), + [sym__list_marker_dot] = ACTIONS(389), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(389), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(389), + [sym__list_marker_star_dont_interrupt] = ACTIONS(389), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(389), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(389), + [sym__fenced_code_block_start_backtick] = ACTIONS(389), + [sym__fenced_code_block_start_tilde] = ACTIONS(389), + [sym__blank_line_start] = ACTIONS(389), + [sym__code_span_start] = ACTIONS(389), + [sym__emphasis_open_star] = ACTIONS(389), + [sym__emphasis_open_underscore] = ACTIONS(389), [sym__last_token_whitespace] = ACTIONS(868), }, - [174] = { - [aux_sym__ignore_matching_tokens] = STATE(202), - [ts_builtin_sym_end] = ACTIONS(862), - [anon_sym_BANG] = ACTIONS(862), - [anon_sym_DQUOTE] = ACTIONS(862), - [anon_sym_POUND] = ACTIONS(862), - [anon_sym_DOLLAR] = ACTIONS(862), - [anon_sym_PERCENT] = ACTIONS(862), - [anon_sym_AMP] = ACTIONS(864), - [anon_sym_SQUOTE] = ACTIONS(862), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_RPAREN] = ACTIONS(862), - [anon_sym_STAR] = ACTIONS(862), - [anon_sym_PLUS] = ACTIONS(862), - [anon_sym_COMMA] = ACTIONS(862), - [anon_sym_DASH] = ACTIONS(862), - [anon_sym_DOT] = ACTIONS(862), - [anon_sym_SLASH] = ACTIONS(862), - [anon_sym_COLON] = ACTIONS(862), - [anon_sym_SEMI] = ACTIONS(862), - [anon_sym_LT] = ACTIONS(864), - [anon_sym_EQ] = ACTIONS(862), - [anon_sym_GT] = ACTIONS(862), - [anon_sym_QMARK] = ACTIONS(862), - [anon_sym_AT] = ACTIONS(862), - [anon_sym_LBRACK] = ACTIONS(862), - [anon_sym_BSLASH] = ACTIONS(864), - [anon_sym_RBRACK] = ACTIONS(862), - [anon_sym_CARET] = ACTIONS(862), - [anon_sym__] = ACTIONS(862), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LBRACE] = ACTIONS(862), - [anon_sym_PIPE] = ACTIONS(862), - [anon_sym_RBRACE] = ACTIONS(862), - [anon_sym_TILDE] = ACTIONS(862), - [aux_sym__html_block_1_token1] = ACTIONS(862), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(864), - [anon_sym_LT_QMARK] = ACTIONS(864), - [aux_sym__html_block_4_token1] = ACTIONS(864), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(862), - [aux_sym__html_block_6_token1] = ACTIONS(864), - [aux_sym__html_block_6_token2] = ACTIONS(862), - [sym__open_tag_html_block] = ACTIONS(862), - [sym__open_tag_html_block_newline] = ACTIONS(862), - [sym__closing_tag_html_block] = ACTIONS(862), - [sym__closing_tag_html_block_newline] = ACTIONS(862), - [sym_backslash_escape] = ACTIONS(862), - [sym_entity_reference] = ACTIONS(862), - [sym_numeric_character_reference] = ACTIONS(862), - [sym_uri_autolink] = ACTIONS(862), - [sym_email_autolink] = ACTIONS(862), - [sym__whitespace_ge_2] = ACTIONS(862), - [aux_sym__whitespace_token1] = ACTIONS(864), - [sym__word_no_digit] = ACTIONS(862), - [sym__digits] = ACTIONS(862), - [aux_sym__newline_token1] = ACTIONS(862), - [sym__block_continuation] = ACTIONS(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(862), - [sym__indented_chunk_start] = ACTIONS(862), - [sym_atx_h1_marker] = ACTIONS(862), - [sym_atx_h2_marker] = ACTIONS(862), - [sym_atx_h3_marker] = ACTIONS(862), - [sym_atx_h4_marker] = ACTIONS(862), - [sym_atx_h5_marker] = ACTIONS(862), - [sym_atx_h6_marker] = ACTIONS(862), - [sym__thematic_break] = ACTIONS(862), - [sym__list_marker_minus] = ACTIONS(862), - [sym__list_marker_plus] = ACTIONS(862), - [sym__list_marker_star] = ACTIONS(862), - [sym__list_marker_parenthesis] = ACTIONS(862), - [sym__list_marker_dot] = ACTIONS(862), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(862), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(862), - [sym__list_marker_star_dont_interrupt] = ACTIONS(862), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(862), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(862), - [sym__fenced_code_block_start_backtick] = ACTIONS(862), - [sym__fenced_code_block_start_tilde] = ACTIONS(862), - [sym__blank_line_start] = ACTIONS(862), - [sym__code_span_start] = ACTIONS(862), - [sym__emphasis_open_star] = ACTIONS(862), - [sym__emphasis_open_underscore] = ACTIONS(862), - [sym__last_token_whitespace] = ACTIONS(111), - }, - [175] = { - [aux_sym__ignore_matching_tokens] = STATE(275), - [anon_sym_BANG] = ACTIONS(685), - [anon_sym_DQUOTE] = ACTIONS(685), - [anon_sym_POUND] = ACTIONS(685), - [anon_sym_DOLLAR] = ACTIONS(685), - [anon_sym_PERCENT] = ACTIONS(685), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_SQUOTE] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(685), - [anon_sym_RPAREN] = ACTIONS(685), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_DOT] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(685), - [anon_sym_COLON] = ACTIONS(685), - [anon_sym_SEMI] = ACTIONS(685), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_EQ] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_QMARK] = ACTIONS(685), - [anon_sym_AT] = ACTIONS(685), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_BSLASH] = ACTIONS(687), - [anon_sym_RBRACK] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(685), - [anon_sym__] = ACTIONS(685), - [anon_sym_BQUOTE] = ACTIONS(685), - [anon_sym_LBRACE] = ACTIONS(685), - [anon_sym_PIPE] = ACTIONS(685), - [anon_sym_RBRACE] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(685), - [aux_sym__html_block_1_token1] = ACTIONS(685), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(687), - [anon_sym_LT_QMARK] = ACTIONS(687), - [aux_sym__html_block_4_token1] = ACTIONS(687), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(685), - [aux_sym__html_block_6_token1] = ACTIONS(687), - [aux_sym__html_block_6_token2] = ACTIONS(685), - [sym__open_tag_html_block] = ACTIONS(685), - [sym__open_tag_html_block_newline] = ACTIONS(685), - [sym__closing_tag_html_block] = ACTIONS(685), - [sym__closing_tag_html_block_newline] = ACTIONS(685), - [sym_backslash_escape] = ACTIONS(685), - [sym_entity_reference] = ACTIONS(685), - [sym_numeric_character_reference] = ACTIONS(685), - [sym_uri_autolink] = ACTIONS(685), - [sym_email_autolink] = ACTIONS(685), - [sym__whitespace_ge_2] = ACTIONS(685), - [aux_sym__whitespace_token1] = ACTIONS(687), - [sym__word_no_digit] = ACTIONS(685), - [sym__digits] = ACTIONS(685), - [aux_sym__newline_token1] = ACTIONS(685), - [sym__block_close] = ACTIONS(685), - [sym__block_continuation] = ACTIONS(125), - [sym__block_quote_continuation] = ACTIONS(125), - [sym__block_quote_start] = ACTIONS(685), - [sym__indented_chunk_start] = ACTIONS(685), - [sym_atx_h1_marker] = ACTIONS(685), - [sym_atx_h2_marker] = ACTIONS(685), - [sym_atx_h3_marker] = ACTIONS(685), - [sym_atx_h4_marker] = ACTIONS(685), - [sym_atx_h5_marker] = ACTIONS(685), - [sym_atx_h6_marker] = ACTIONS(685), - [sym__thematic_break] = ACTIONS(685), - [sym__list_marker_minus] = ACTIONS(685), - [sym__list_marker_plus] = ACTIONS(685), - [sym__list_marker_star] = ACTIONS(685), - [sym__list_marker_parenthesis] = ACTIONS(685), - [sym__list_marker_dot] = ACTIONS(685), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(685), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(685), - [sym__list_marker_star_dont_interrupt] = ACTIONS(685), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(685), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(685), - [sym__fenced_code_block_start_backtick] = ACTIONS(685), - [sym__fenced_code_block_start_tilde] = ACTIONS(685), - [sym__blank_line_start] = ACTIONS(685), - [sym__code_span_start] = ACTIONS(685), - [sym__emphasis_open_star] = ACTIONS(685), - [sym__emphasis_open_underscore] = ACTIONS(685), - [sym__last_token_whitespace] = ACTIONS(125), - }, - [176] = { - [aux_sym__ignore_matching_tokens] = STATE(109), + [157] = { + [aux_sym__ignore_matching_tokens] = STATE(201), [ts_builtin_sym_end] = ACTIONS(870), [anon_sym_BANG] = ACTIONS(870), [anon_sym_DQUOTE] = ACTIONS(870), @@ -47786,8 +46178,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__word_no_digit] = ACTIONS(870), [sym__digits] = ACTIONS(870), [aux_sym__newline_token1] = ACTIONS(870), - [sym__block_continuation] = ACTIONS(874), - [sym__block_quote_continuation] = ACTIONS(874), + [sym__block_continuation] = ACTIONS(109), + [sym__block_quote_continuation] = ACTIONS(109), [sym__block_quote_start] = ACTIONS(870), [sym__indented_chunk_start] = ACTIONS(870), [sym_atx_h1_marker] = ACTIONS(870), @@ -47813,435 +46205,1965 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(870), [sym__emphasis_open_star] = ACTIONS(870), [sym__emphasis_open_underscore] = ACTIONS(870), - [sym__last_token_whitespace] = ACTIONS(874), - }, - [177] = { - [aux_sym__ignore_matching_tokens] = STATE(152), - [anon_sym_BANG] = ACTIONS(699), - [anon_sym_DQUOTE] = ACTIONS(699), - [anon_sym_POUND] = ACTIONS(699), - [anon_sym_DOLLAR] = ACTIONS(699), - [anon_sym_PERCENT] = ACTIONS(699), - [anon_sym_AMP] = ACTIONS(701), - [anon_sym_SQUOTE] = ACTIONS(699), - [anon_sym_LPAREN] = ACTIONS(699), - [anon_sym_RPAREN] = ACTIONS(699), - [anon_sym_STAR] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(699), - [anon_sym_COMMA] = ACTIONS(699), - [anon_sym_DASH] = ACTIONS(699), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_SLASH] = ACTIONS(699), - [anon_sym_COLON] = ACTIONS(699), - [anon_sym_SEMI] = ACTIONS(699), - [anon_sym_LT] = ACTIONS(701), - [anon_sym_EQ] = ACTIONS(699), - [anon_sym_GT] = ACTIONS(699), - [anon_sym_QMARK] = ACTIONS(699), - [anon_sym_AT] = ACTIONS(699), - [anon_sym_LBRACK] = ACTIONS(699), - [anon_sym_BSLASH] = ACTIONS(701), - [anon_sym_RBRACK] = ACTIONS(699), - [anon_sym_CARET] = ACTIONS(699), - [anon_sym__] = ACTIONS(699), - [anon_sym_BQUOTE] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(699), - [anon_sym_PIPE] = ACTIONS(699), - [anon_sym_RBRACE] = ACTIONS(699), - [anon_sym_TILDE] = ACTIONS(699), - [aux_sym__html_block_1_token1] = ACTIONS(699), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(701), - [anon_sym_LT_QMARK] = ACTIONS(701), - [aux_sym__html_block_4_token1] = ACTIONS(701), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(699), - [aux_sym__html_block_6_token1] = ACTIONS(701), - [aux_sym__html_block_6_token2] = ACTIONS(699), - [sym__open_tag_html_block] = ACTIONS(699), - [sym__open_tag_html_block_newline] = ACTIONS(699), - [sym__closing_tag_html_block] = ACTIONS(699), - [sym__closing_tag_html_block_newline] = ACTIONS(699), - [sym_backslash_escape] = ACTIONS(699), - [sym_entity_reference] = ACTIONS(699), - [sym_numeric_character_reference] = ACTIONS(699), - [sym_uri_autolink] = ACTIONS(699), - [sym_email_autolink] = ACTIONS(699), - [sym__whitespace_ge_2] = ACTIONS(699), - [aux_sym__whitespace_token1] = ACTIONS(701), - [sym__word_no_digit] = ACTIONS(699), - [sym__digits] = ACTIONS(699), - [aux_sym__newline_token1] = ACTIONS(699), - [sym__block_close] = ACTIONS(699), - [sym__block_continuation] = ACTIONS(876), - [sym__block_quote_continuation] = ACTIONS(876), - [sym__block_quote_start] = ACTIONS(699), - [sym__indented_chunk_start] = ACTIONS(699), - [sym_atx_h1_marker] = ACTIONS(699), - [sym_atx_h2_marker] = ACTIONS(699), - [sym_atx_h3_marker] = ACTIONS(699), - [sym_atx_h4_marker] = ACTIONS(699), - [sym_atx_h5_marker] = ACTIONS(699), - [sym_atx_h6_marker] = ACTIONS(699), - [sym__thematic_break] = ACTIONS(699), - [sym__list_marker_minus] = ACTIONS(699), - [sym__list_marker_plus] = ACTIONS(699), - [sym__list_marker_star] = ACTIONS(699), - [sym__list_marker_parenthesis] = ACTIONS(699), - [sym__list_marker_dot] = ACTIONS(699), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(699), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(699), - [sym__list_marker_star_dont_interrupt] = ACTIONS(699), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(699), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(699), - [sym__fenced_code_block_start_backtick] = ACTIONS(699), - [sym__fenced_code_block_start_tilde] = ACTIONS(699), - [sym__blank_line_start] = ACTIONS(699), - [sym__code_span_start] = ACTIONS(699), - [sym__emphasis_open_star] = ACTIONS(699), - [sym__emphasis_open_underscore] = ACTIONS(699), - [sym__last_token_whitespace] = ACTIONS(876), - }, - [178] = { - [aux_sym__ignore_matching_tokens] = STATE(275), - [anon_sym_BANG] = ACTIONS(699), - [anon_sym_DQUOTE] = ACTIONS(699), - [anon_sym_POUND] = ACTIONS(699), - [anon_sym_DOLLAR] = ACTIONS(699), - [anon_sym_PERCENT] = ACTIONS(699), - [anon_sym_AMP] = ACTIONS(701), - [anon_sym_SQUOTE] = ACTIONS(699), - [anon_sym_LPAREN] = ACTIONS(699), - [anon_sym_RPAREN] = ACTIONS(699), - [anon_sym_STAR] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(699), - [anon_sym_COMMA] = ACTIONS(699), - [anon_sym_DASH] = ACTIONS(699), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_SLASH] = ACTIONS(699), - [anon_sym_COLON] = ACTIONS(699), - [anon_sym_SEMI] = ACTIONS(699), - [anon_sym_LT] = ACTIONS(701), - [anon_sym_EQ] = ACTIONS(699), - [anon_sym_GT] = ACTIONS(699), - [anon_sym_QMARK] = ACTIONS(699), - [anon_sym_AT] = ACTIONS(699), - [anon_sym_LBRACK] = ACTIONS(699), - [anon_sym_BSLASH] = ACTIONS(701), - [anon_sym_RBRACK] = ACTIONS(699), - [anon_sym_CARET] = ACTIONS(699), - [anon_sym__] = ACTIONS(699), - [anon_sym_BQUOTE] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(699), - [anon_sym_PIPE] = ACTIONS(699), - [anon_sym_RBRACE] = ACTIONS(699), - [anon_sym_TILDE] = ACTIONS(699), - [aux_sym__html_block_1_token1] = ACTIONS(699), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(701), - [anon_sym_LT_QMARK] = ACTIONS(701), - [aux_sym__html_block_4_token1] = ACTIONS(701), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(699), - [aux_sym__html_block_6_token1] = ACTIONS(701), - [aux_sym__html_block_6_token2] = ACTIONS(699), - [sym__open_tag_html_block] = ACTIONS(699), - [sym__open_tag_html_block_newline] = ACTIONS(699), - [sym__closing_tag_html_block] = ACTIONS(699), - [sym__closing_tag_html_block_newline] = ACTIONS(699), - [sym_backslash_escape] = ACTIONS(699), - [sym_entity_reference] = ACTIONS(699), - [sym_numeric_character_reference] = ACTIONS(699), - [sym_uri_autolink] = ACTIONS(699), - [sym_email_autolink] = ACTIONS(699), - [sym__whitespace_ge_2] = ACTIONS(699), - [aux_sym__whitespace_token1] = ACTIONS(701), - [sym__word_no_digit] = ACTIONS(699), - [sym__digits] = ACTIONS(699), - [aux_sym__newline_token1] = ACTIONS(699), - [sym__block_close] = ACTIONS(699), - [sym__block_continuation] = ACTIONS(125), - [sym__block_quote_continuation] = ACTIONS(125), - [sym__block_quote_start] = ACTIONS(699), - [sym__indented_chunk_start] = ACTIONS(699), - [sym_atx_h1_marker] = ACTIONS(699), - [sym_atx_h2_marker] = ACTIONS(699), - [sym_atx_h3_marker] = ACTIONS(699), - [sym_atx_h4_marker] = ACTIONS(699), - [sym_atx_h5_marker] = ACTIONS(699), - [sym_atx_h6_marker] = ACTIONS(699), - [sym__thematic_break] = ACTIONS(699), - [sym__list_marker_minus] = ACTIONS(699), - [sym__list_marker_plus] = ACTIONS(699), - [sym__list_marker_star] = ACTIONS(699), - [sym__list_marker_parenthesis] = ACTIONS(699), - [sym__list_marker_dot] = ACTIONS(699), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(699), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(699), - [sym__list_marker_star_dont_interrupt] = ACTIONS(699), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(699), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(699), - [sym__fenced_code_block_start_backtick] = ACTIONS(699), - [sym__fenced_code_block_start_tilde] = ACTIONS(699), - [sym__blank_line_start] = ACTIONS(699), - [sym__code_span_start] = ACTIONS(699), - [sym__emphasis_open_star] = ACTIONS(699), - [sym__emphasis_open_underscore] = ACTIONS(699), - [sym__last_token_whitespace] = ACTIONS(125), + [sym__last_token_whitespace] = ACTIONS(109), }, - [179] = { - [aux_sym__ignore_matching_tokens] = STATE(153), - [anon_sym_BANG] = ACTIONS(705), - [anon_sym_DQUOTE] = ACTIONS(705), - [anon_sym_POUND] = ACTIONS(705), - [anon_sym_DOLLAR] = ACTIONS(705), - [anon_sym_PERCENT] = ACTIONS(705), - [anon_sym_AMP] = ACTIONS(707), - [anon_sym_SQUOTE] = ACTIONS(705), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_RPAREN] = ACTIONS(705), - [anon_sym_STAR] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(705), - [anon_sym_COMMA] = ACTIONS(705), - [anon_sym_DASH] = ACTIONS(705), - [anon_sym_DOT] = ACTIONS(705), - [anon_sym_SLASH] = ACTIONS(705), - [anon_sym_COLON] = ACTIONS(705), - [anon_sym_SEMI] = ACTIONS(705), - [anon_sym_LT] = ACTIONS(707), - [anon_sym_EQ] = ACTIONS(705), - [anon_sym_GT] = ACTIONS(705), - [anon_sym_QMARK] = ACTIONS(705), - [anon_sym_AT] = ACTIONS(705), - [anon_sym_LBRACK] = ACTIONS(705), - [anon_sym_BSLASH] = ACTIONS(707), - [anon_sym_RBRACK] = ACTIONS(705), - [anon_sym_CARET] = ACTIONS(705), - [anon_sym__] = ACTIONS(705), - [anon_sym_BQUOTE] = ACTIONS(705), - [anon_sym_LBRACE] = ACTIONS(705), - [anon_sym_PIPE] = ACTIONS(705), - [anon_sym_RBRACE] = ACTIONS(705), - [anon_sym_TILDE] = ACTIONS(705), - [aux_sym__html_block_1_token1] = ACTIONS(705), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(707), - [anon_sym_LT_QMARK] = ACTIONS(707), - [aux_sym__html_block_4_token1] = ACTIONS(707), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(705), - [aux_sym__html_block_6_token1] = ACTIONS(707), - [aux_sym__html_block_6_token2] = ACTIONS(705), - [sym__open_tag_html_block] = ACTIONS(705), - [sym__open_tag_html_block_newline] = ACTIONS(705), - [sym__closing_tag_html_block] = ACTIONS(705), - [sym__closing_tag_html_block_newline] = ACTIONS(705), - [sym_backslash_escape] = ACTIONS(705), - [sym_entity_reference] = ACTIONS(705), - [sym_numeric_character_reference] = ACTIONS(705), - [sym_uri_autolink] = ACTIONS(705), - [sym_email_autolink] = ACTIONS(705), - [sym__whitespace_ge_2] = ACTIONS(705), - [aux_sym__whitespace_token1] = ACTIONS(707), - [sym__word_no_digit] = ACTIONS(705), - [sym__digits] = ACTIONS(705), - [aux_sym__newline_token1] = ACTIONS(705), - [sym__block_close] = ACTIONS(705), + [158] = { + [aux_sym__ignore_matching_tokens] = STATE(159), + [ts_builtin_sym_end] = ACTIONS(874), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_DQUOTE] = ACTIONS(874), + [anon_sym_POUND] = ACTIONS(874), + [anon_sym_DOLLAR] = ACTIONS(874), + [anon_sym_PERCENT] = ACTIONS(874), + [anon_sym_AMP] = ACTIONS(876), + [anon_sym_SQUOTE] = ACTIONS(874), + [anon_sym_LPAREN] = ACTIONS(874), + [anon_sym_RPAREN] = ACTIONS(874), + [anon_sym_STAR] = ACTIONS(874), + [anon_sym_PLUS] = ACTIONS(874), + [anon_sym_COMMA] = ACTIONS(874), + [anon_sym_DASH] = ACTIONS(874), + [anon_sym_DOT] = ACTIONS(874), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_COLON] = ACTIONS(874), + [anon_sym_SEMI] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(876), + [anon_sym_EQ] = ACTIONS(874), + [anon_sym_GT] = ACTIONS(874), + [anon_sym_QMARK] = ACTIONS(874), + [anon_sym_AT] = ACTIONS(874), + [anon_sym_LBRACK] = ACTIONS(874), + [anon_sym_BSLASH] = ACTIONS(876), + [anon_sym_RBRACK] = ACTIONS(874), + [anon_sym_CARET] = ACTIONS(874), + [anon_sym__] = ACTIONS(874), + [anon_sym_BQUOTE] = ACTIONS(874), + [anon_sym_LBRACE] = ACTIONS(874), + [anon_sym_PIPE] = ACTIONS(874), + [anon_sym_RBRACE] = ACTIONS(874), + [anon_sym_TILDE] = ACTIONS(874), + [aux_sym__html_block_1_token1] = ACTIONS(874), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(876), + [anon_sym_LT_QMARK] = ACTIONS(876), + [aux_sym__html_block_4_token1] = ACTIONS(876), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(874), + [aux_sym__html_block_6_token1] = ACTIONS(876), + [aux_sym__html_block_6_token2] = ACTIONS(874), + [sym__open_tag_html_block] = ACTIONS(874), + [sym__open_tag_html_block_newline] = ACTIONS(874), + [sym__closing_tag_html_block] = ACTIONS(874), + [sym__closing_tag_html_block_newline] = ACTIONS(874), + [sym_backslash_escape] = ACTIONS(874), + [sym_entity_reference] = ACTIONS(874), + [sym_numeric_character_reference] = ACTIONS(874), + [sym_uri_autolink] = ACTIONS(874), + [sym_email_autolink] = ACTIONS(874), + [sym__whitespace_ge_2] = ACTIONS(874), + [aux_sym__whitespace_token1] = ACTIONS(876), + [sym__word_no_digit] = ACTIONS(874), + [sym__digits] = ACTIONS(874), + [aux_sym__newline_token1] = ACTIONS(874), [sym__block_continuation] = ACTIONS(878), [sym__block_quote_continuation] = ACTIONS(878), - [sym__block_quote_start] = ACTIONS(705), - [sym__indented_chunk_start] = ACTIONS(705), - [sym_atx_h1_marker] = ACTIONS(705), - [sym_atx_h2_marker] = ACTIONS(705), - [sym_atx_h3_marker] = ACTIONS(705), - [sym_atx_h4_marker] = ACTIONS(705), - [sym_atx_h5_marker] = ACTIONS(705), - [sym_atx_h6_marker] = ACTIONS(705), - [sym__thematic_break] = ACTIONS(705), - [sym__list_marker_minus] = ACTIONS(705), - [sym__list_marker_plus] = ACTIONS(705), - [sym__list_marker_star] = ACTIONS(705), - [sym__list_marker_parenthesis] = ACTIONS(705), - [sym__list_marker_dot] = ACTIONS(705), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(705), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(705), - [sym__list_marker_star_dont_interrupt] = ACTIONS(705), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(705), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(705), - [sym__fenced_code_block_start_backtick] = ACTIONS(705), - [sym__fenced_code_block_start_tilde] = ACTIONS(705), - [sym__blank_line_start] = ACTIONS(705), - [sym__code_span_start] = ACTIONS(705), - [sym__emphasis_open_star] = ACTIONS(705), - [sym__emphasis_open_underscore] = ACTIONS(705), + [sym__block_quote_start] = ACTIONS(874), + [sym__indented_chunk_start] = ACTIONS(874), + [sym_atx_h1_marker] = ACTIONS(874), + [sym_atx_h2_marker] = ACTIONS(874), + [sym_atx_h3_marker] = ACTIONS(874), + [sym_atx_h4_marker] = ACTIONS(874), + [sym_atx_h5_marker] = ACTIONS(874), + [sym_atx_h6_marker] = ACTIONS(874), + [sym__thematic_break] = ACTIONS(874), + [sym__list_marker_minus] = ACTIONS(874), + [sym__list_marker_plus] = ACTIONS(874), + [sym__list_marker_star] = ACTIONS(874), + [sym__list_marker_parenthesis] = ACTIONS(874), + [sym__list_marker_dot] = ACTIONS(874), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(874), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(874), + [sym__list_marker_star_dont_interrupt] = ACTIONS(874), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(874), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(874), + [sym__fenced_code_block_start_backtick] = ACTIONS(874), + [sym__fenced_code_block_start_tilde] = ACTIONS(874), + [sym__blank_line_start] = ACTIONS(874), + [sym__code_span_start] = ACTIONS(874), + [sym__emphasis_open_star] = ACTIONS(874), + [sym__emphasis_open_underscore] = ACTIONS(874), [sym__last_token_whitespace] = ACTIONS(878), }, - [180] = { - [sym__soft_line_break] = STATE(200), - [sym__link_text] = STATE(2133), - [sym__link_text_non_empty] = STATE(795), - [sym_shortcut_link] = STATE(200), - [sym_full_reference_link] = STATE(200), - [sym_collapsed_reference_link] = STATE(200), - [sym_inline_link] = STATE(200), - [sym_image] = STATE(200), - [sym__image_inline_link] = STATE(801), - [sym__image_shortcut_link] = STATE(801), - [sym__image_full_reference_link] = STATE(801), - [sym__image_collapsed_reference_link] = STATE(801), - [sym__image_description] = STATE(2122), - [sym__image_description_non_empty] = STATE(802), - [sym_html_tag] = STATE(200), - [sym__open_tag] = STATE(683), - [sym__closing_tag] = STATE(683), - [sym__html_comment] = STATE(683), - [sym__processing_instruction] = STATE(683), - [sym__declaration] = STATE(683), - [sym__cdata_section] = STATE(683), - [sym_hard_line_break] = STATE(200), - [sym__whitespace] = STATE(200), - [sym__word] = STATE(200), - [sym__newline] = STATE(2123), - [sym__inline_element_no_underscore] = STATE(200), - [aux_sym__inline_no_underscore] = STATE(200), - [sym__text_inline_no_underscore] = STATE(200), - [sym__emphasis_star] = STATE(761), - [sym__strong_emphasis_star] = STATE(200), - [sym__emphasis_underscore] = STATE(706), - [sym__strong_emphasis_underscore] = STATE(200), - [sym__code_span] = STATE(200), + [159] = { + [aux_sym__ignore_matching_tokens] = STATE(201), + [ts_builtin_sym_end] = ACTIONS(880), [anon_sym_BANG] = ACTIONS(880), - [anon_sym_DQUOTE] = ACTIONS(883), - [anon_sym_POUND] = ACTIONS(883), - [anon_sym_DOLLAR] = ACTIONS(883), - [anon_sym_PERCENT] = ACTIONS(883), - [anon_sym_AMP] = ACTIONS(886), - [anon_sym_SQUOTE] = ACTIONS(883), - [anon_sym_LPAREN] = ACTIONS(883), - [anon_sym_RPAREN] = ACTIONS(883), - [anon_sym_STAR] = ACTIONS(883), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_COMMA] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_DOT] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(883), - [anon_sym_SEMI] = ACTIONS(883), + [anon_sym_DQUOTE] = ACTIONS(880), + [anon_sym_POUND] = ACTIONS(880), + [anon_sym_DOLLAR] = ACTIONS(880), + [anon_sym_PERCENT] = ACTIONS(880), + [anon_sym_AMP] = ACTIONS(882), + [anon_sym_SQUOTE] = ACTIONS(880), + [anon_sym_LPAREN] = ACTIONS(880), + [anon_sym_RPAREN] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(880), + [anon_sym_COMMA] = ACTIONS(880), + [anon_sym_DASH] = ACTIONS(880), + [anon_sym_DOT] = ACTIONS(880), + [anon_sym_SLASH] = ACTIONS(880), + [anon_sym_COLON] = ACTIONS(880), + [anon_sym_SEMI] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_EQ] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(880), + [anon_sym_QMARK] = ACTIONS(880), + [anon_sym_AT] = ACTIONS(880), + [anon_sym_LBRACK] = ACTIONS(880), + [anon_sym_BSLASH] = ACTIONS(882), + [anon_sym_RBRACK] = ACTIONS(880), + [anon_sym_CARET] = ACTIONS(880), + [anon_sym__] = ACTIONS(880), + [anon_sym_BQUOTE] = ACTIONS(880), + [anon_sym_LBRACE] = ACTIONS(880), + [anon_sym_PIPE] = ACTIONS(880), + [anon_sym_RBRACE] = ACTIONS(880), + [anon_sym_TILDE] = ACTIONS(880), + [aux_sym__html_block_1_token1] = ACTIONS(880), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(882), + [anon_sym_LT_QMARK] = ACTIONS(882), + [aux_sym__html_block_4_token1] = ACTIONS(882), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(880), + [aux_sym__html_block_6_token1] = ACTIONS(882), + [aux_sym__html_block_6_token2] = ACTIONS(880), + [sym__open_tag_html_block] = ACTIONS(880), + [sym__open_tag_html_block_newline] = ACTIONS(880), + [sym__closing_tag_html_block] = ACTIONS(880), + [sym__closing_tag_html_block_newline] = ACTIONS(880), + [sym_backslash_escape] = ACTIONS(880), + [sym_entity_reference] = ACTIONS(880), + [sym_numeric_character_reference] = ACTIONS(880), + [sym_uri_autolink] = ACTIONS(880), + [sym_email_autolink] = ACTIONS(880), + [sym__whitespace_ge_2] = ACTIONS(880), + [aux_sym__whitespace_token1] = ACTIONS(882), + [sym__word_no_digit] = ACTIONS(880), + [sym__digits] = ACTIONS(880), + [aux_sym__newline_token1] = ACTIONS(880), + [sym__block_continuation] = ACTIONS(109), + [sym__block_quote_continuation] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(880), + [sym__indented_chunk_start] = ACTIONS(880), + [sym_atx_h1_marker] = ACTIONS(880), + [sym_atx_h2_marker] = ACTIONS(880), + [sym_atx_h3_marker] = ACTIONS(880), + [sym_atx_h4_marker] = ACTIONS(880), + [sym_atx_h5_marker] = ACTIONS(880), + [sym_atx_h6_marker] = ACTIONS(880), + [sym__thematic_break] = ACTIONS(880), + [sym__list_marker_minus] = ACTIONS(880), + [sym__list_marker_plus] = ACTIONS(880), + [sym__list_marker_star] = ACTIONS(880), + [sym__list_marker_parenthesis] = ACTIONS(880), + [sym__list_marker_dot] = ACTIONS(880), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(880), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(880), + [sym__list_marker_star_dont_interrupt] = ACTIONS(880), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(880), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(880), + [sym__fenced_code_block_start_backtick] = ACTIONS(880), + [sym__fenced_code_block_start_tilde] = ACTIONS(880), + [sym__blank_line_start] = ACTIONS(880), + [sym__code_span_start] = ACTIONS(880), + [sym__emphasis_open_star] = ACTIONS(880), + [sym__emphasis_open_underscore] = ACTIONS(880), + [sym__last_token_whitespace] = ACTIONS(109), + }, + [160] = { + [aux_sym__ignore_matching_tokens] = STATE(160), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_DQUOTE] = ACTIONS(403), + [anon_sym_POUND] = ACTIONS(403), + [anon_sym_DOLLAR] = ACTIONS(403), + [anon_sym_PERCENT] = ACTIONS(403), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_SQUOTE] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(403), + [anon_sym_RPAREN] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_PLUS] = ACTIONS(403), + [anon_sym_COMMA] = ACTIONS(403), + [anon_sym_DASH] = ACTIONS(403), + [anon_sym_DOT] = ACTIONS(403), + [anon_sym_SLASH] = ACTIONS(403), + [anon_sym_COLON] = ACTIONS(403), + [anon_sym_SEMI] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(403), + [anon_sym_GT] = ACTIONS(403), + [anon_sym_QMARK] = ACTIONS(403), + [anon_sym_AT] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_BSLASH] = ACTIONS(405), + [anon_sym_RBRACK] = ACTIONS(403), + [anon_sym_CARET] = ACTIONS(403), + [anon_sym__] = ACTIONS(403), + [anon_sym_BQUOTE] = ACTIONS(403), + [anon_sym_LBRACE] = ACTIONS(403), + [anon_sym_PIPE] = ACTIONS(403), + [anon_sym_RBRACE] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [aux_sym__html_block_1_token1] = ACTIONS(403), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(405), + [anon_sym_LT_QMARK] = ACTIONS(405), + [aux_sym__html_block_4_token1] = ACTIONS(405), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(403), + [aux_sym__html_block_6_token1] = ACTIONS(405), + [aux_sym__html_block_6_token2] = ACTIONS(403), + [sym__open_tag_html_block] = ACTIONS(403), + [sym__open_tag_html_block_newline] = ACTIONS(403), + [sym__closing_tag_html_block] = ACTIONS(403), + [sym__closing_tag_html_block_newline] = ACTIONS(403), + [sym_backslash_escape] = ACTIONS(403), + [sym_entity_reference] = ACTIONS(403), + [sym_numeric_character_reference] = ACTIONS(403), + [sym_uri_autolink] = ACTIONS(403), + [sym_email_autolink] = ACTIONS(403), + [sym__whitespace_ge_2] = ACTIONS(403), + [aux_sym__whitespace_token1] = ACTIONS(405), + [sym__word_no_digit] = ACTIONS(403), + [sym__digits] = ACTIONS(403), + [aux_sym__newline_token1] = ACTIONS(403), + [sym__block_close] = ACTIONS(403), + [sym__block_continuation] = ACTIONS(884), + [sym__block_quote_continuation] = ACTIONS(884), + [sym__block_quote_start] = ACTIONS(403), + [sym__indented_chunk_start] = ACTIONS(403), + [sym_atx_h1_marker] = ACTIONS(403), + [sym_atx_h2_marker] = ACTIONS(403), + [sym_atx_h3_marker] = ACTIONS(403), + [sym_atx_h4_marker] = ACTIONS(403), + [sym_atx_h5_marker] = ACTIONS(403), + [sym_atx_h6_marker] = ACTIONS(403), + [sym__thematic_break] = ACTIONS(403), + [sym__list_marker_minus] = ACTIONS(403), + [sym__list_marker_plus] = ACTIONS(403), + [sym__list_marker_star] = ACTIONS(403), + [sym__list_marker_parenthesis] = ACTIONS(403), + [sym__list_marker_dot] = ACTIONS(403), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(403), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(403), + [sym__list_marker_star_dont_interrupt] = ACTIONS(403), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(403), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(403), + [sym__fenced_code_block_start_backtick] = ACTIONS(403), + [sym__fenced_code_block_start_tilde] = ACTIONS(403), + [sym__blank_line_start] = ACTIONS(403), + [sym__code_span_start] = ACTIONS(403), + [sym__emphasis_open_star] = ACTIONS(403), + [sym__emphasis_open_underscore] = ACTIONS(403), + [sym__last_token_whitespace] = ACTIONS(884), + }, + [161] = { + [aux_sym__ignore_matching_tokens] = STATE(201), + [ts_builtin_sym_end] = ACTIONS(874), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_DQUOTE] = ACTIONS(874), + [anon_sym_POUND] = ACTIONS(874), + [anon_sym_DOLLAR] = ACTIONS(874), + [anon_sym_PERCENT] = ACTIONS(874), + [anon_sym_AMP] = ACTIONS(876), + [anon_sym_SQUOTE] = ACTIONS(874), + [anon_sym_LPAREN] = ACTIONS(874), + [anon_sym_RPAREN] = ACTIONS(874), + [anon_sym_STAR] = ACTIONS(874), + [anon_sym_PLUS] = ACTIONS(874), + [anon_sym_COMMA] = ACTIONS(874), + [anon_sym_DASH] = ACTIONS(874), + [anon_sym_DOT] = ACTIONS(874), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_COLON] = ACTIONS(874), + [anon_sym_SEMI] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(876), + [anon_sym_EQ] = ACTIONS(874), + [anon_sym_GT] = ACTIONS(874), + [anon_sym_QMARK] = ACTIONS(874), + [anon_sym_AT] = ACTIONS(874), + [anon_sym_LBRACK] = ACTIONS(874), + [anon_sym_BSLASH] = ACTIONS(876), + [anon_sym_RBRACK] = ACTIONS(874), + [anon_sym_CARET] = ACTIONS(874), + [anon_sym__] = ACTIONS(874), + [anon_sym_BQUOTE] = ACTIONS(874), + [anon_sym_LBRACE] = ACTIONS(874), + [anon_sym_PIPE] = ACTIONS(874), + [anon_sym_RBRACE] = ACTIONS(874), + [anon_sym_TILDE] = ACTIONS(874), + [aux_sym__html_block_1_token1] = ACTIONS(874), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(876), + [anon_sym_LT_QMARK] = ACTIONS(876), + [aux_sym__html_block_4_token1] = ACTIONS(876), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(874), + [aux_sym__html_block_6_token1] = ACTIONS(876), + [aux_sym__html_block_6_token2] = ACTIONS(874), + [sym__open_tag_html_block] = ACTIONS(874), + [sym__open_tag_html_block_newline] = ACTIONS(874), + [sym__closing_tag_html_block] = ACTIONS(874), + [sym__closing_tag_html_block_newline] = ACTIONS(874), + [sym_backslash_escape] = ACTIONS(874), + [sym_entity_reference] = ACTIONS(874), + [sym_numeric_character_reference] = ACTIONS(874), + [sym_uri_autolink] = ACTIONS(874), + [sym_email_autolink] = ACTIONS(874), + [sym__whitespace_ge_2] = ACTIONS(874), + [aux_sym__whitespace_token1] = ACTIONS(876), + [sym__word_no_digit] = ACTIONS(874), + [sym__digits] = ACTIONS(874), + [aux_sym__newline_token1] = ACTIONS(874), + [sym__block_continuation] = ACTIONS(109), + [sym__block_quote_continuation] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(874), + [sym__indented_chunk_start] = ACTIONS(874), + [sym_atx_h1_marker] = ACTIONS(874), + [sym_atx_h2_marker] = ACTIONS(874), + [sym_atx_h3_marker] = ACTIONS(874), + [sym_atx_h4_marker] = ACTIONS(874), + [sym_atx_h5_marker] = ACTIONS(874), + [sym_atx_h6_marker] = ACTIONS(874), + [sym__thematic_break] = ACTIONS(874), + [sym__list_marker_minus] = ACTIONS(874), + [sym__list_marker_plus] = ACTIONS(874), + [sym__list_marker_star] = ACTIONS(874), + [sym__list_marker_parenthesis] = ACTIONS(874), + [sym__list_marker_dot] = ACTIONS(874), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(874), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(874), + [sym__list_marker_star_dont_interrupt] = ACTIONS(874), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(874), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(874), + [sym__fenced_code_block_start_backtick] = ACTIONS(874), + [sym__fenced_code_block_start_tilde] = ACTIONS(874), + [sym__blank_line_start] = ACTIONS(874), + [sym__code_span_start] = ACTIONS(874), + [sym__emphasis_open_star] = ACTIONS(874), + [sym__emphasis_open_underscore] = ACTIONS(874), + [sym__last_token_whitespace] = ACTIONS(109), + }, + [162] = { + [aux_sym__ignore_matching_tokens] = STATE(201), + [ts_builtin_sym_end] = ACTIONS(887), + [anon_sym_BANG] = ACTIONS(887), + [anon_sym_DQUOTE] = ACTIONS(887), + [anon_sym_POUND] = ACTIONS(887), + [anon_sym_DOLLAR] = ACTIONS(887), + [anon_sym_PERCENT] = ACTIONS(887), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_SQUOTE] = ACTIONS(887), + [anon_sym_LPAREN] = ACTIONS(887), + [anon_sym_RPAREN] = ACTIONS(887), + [anon_sym_STAR] = ACTIONS(887), + [anon_sym_PLUS] = ACTIONS(887), + [anon_sym_COMMA] = ACTIONS(887), + [anon_sym_DASH] = ACTIONS(887), + [anon_sym_DOT] = ACTIONS(887), + [anon_sym_SLASH] = ACTIONS(887), + [anon_sym_COLON] = ACTIONS(887), + [anon_sym_SEMI] = ACTIONS(887), [anon_sym_LT] = ACTIONS(889), - [anon_sym_EQ] = ACTIONS(883), - [anon_sym_GT] = ACTIONS(883), - [anon_sym_QMARK] = ACTIONS(883), - [anon_sym_AT] = ACTIONS(883), - [anon_sym_LBRACK] = ACTIONS(892), - [anon_sym_BSLASH] = ACTIONS(895), - [anon_sym_RBRACK] = ACTIONS(883), - [anon_sym_CARET] = ACTIONS(883), - [anon_sym__] = ACTIONS(883), - [anon_sym_BQUOTE] = ACTIONS(883), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_PIPE] = ACTIONS(883), - [anon_sym_RBRACE] = ACTIONS(883), - [anon_sym_TILDE] = ACTIONS(883), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(898), - [anon_sym_LT_QMARK] = ACTIONS(901), - [aux_sym__html_block_4_token1] = ACTIONS(904), + [anon_sym_EQ] = ACTIONS(887), + [anon_sym_GT] = ACTIONS(887), + [anon_sym_QMARK] = ACTIONS(887), + [anon_sym_AT] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(887), + [anon_sym_BSLASH] = ACTIONS(889), + [anon_sym_RBRACK] = ACTIONS(887), + [anon_sym_CARET] = ACTIONS(887), + [anon_sym__] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(887), + [anon_sym_LBRACE] = ACTIONS(887), + [anon_sym_PIPE] = ACTIONS(887), + [anon_sym_RBRACE] = ACTIONS(887), + [anon_sym_TILDE] = ACTIONS(887), + [aux_sym__html_block_1_token1] = ACTIONS(887), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(889), + [anon_sym_LT_QMARK] = ACTIONS(889), + [aux_sym__html_block_4_token1] = ACTIONS(889), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(887), + [aux_sym__html_block_6_token1] = ACTIONS(889), + [aux_sym__html_block_6_token2] = ACTIONS(887), + [sym__open_tag_html_block] = ACTIONS(887), + [sym__open_tag_html_block_newline] = ACTIONS(887), + [sym__closing_tag_html_block] = ACTIONS(887), + [sym__closing_tag_html_block_newline] = ACTIONS(887), + [sym_backslash_escape] = ACTIONS(887), + [sym_entity_reference] = ACTIONS(887), + [sym_numeric_character_reference] = ACTIONS(887), + [sym_uri_autolink] = ACTIONS(887), + [sym_email_autolink] = ACTIONS(887), + [sym__whitespace_ge_2] = ACTIONS(887), + [aux_sym__whitespace_token1] = ACTIONS(889), + [sym__word_no_digit] = ACTIONS(887), + [sym__digits] = ACTIONS(887), + [aux_sym__newline_token1] = ACTIONS(887), + [sym__block_continuation] = ACTIONS(109), + [sym__block_quote_continuation] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(887), + [sym__indented_chunk_start] = ACTIONS(887), + [sym_atx_h1_marker] = ACTIONS(887), + [sym_atx_h2_marker] = ACTIONS(887), + [sym_atx_h3_marker] = ACTIONS(887), + [sym_atx_h4_marker] = ACTIONS(887), + [sym_atx_h5_marker] = ACTIONS(887), + [sym_atx_h6_marker] = ACTIONS(887), + [sym__thematic_break] = ACTIONS(887), + [sym__list_marker_minus] = ACTIONS(887), + [sym__list_marker_plus] = ACTIONS(887), + [sym__list_marker_star] = ACTIONS(887), + [sym__list_marker_parenthesis] = ACTIONS(887), + [sym__list_marker_dot] = ACTIONS(887), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(887), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(887), + [sym__list_marker_star_dont_interrupt] = ACTIONS(887), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(887), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(887), + [sym__fenced_code_block_start_backtick] = ACTIONS(887), + [sym__fenced_code_block_start_tilde] = ACTIONS(887), + [sym__blank_line_start] = ACTIONS(887), + [sym__code_span_start] = ACTIONS(887), + [sym__emphasis_open_star] = ACTIONS(887), + [sym__emphasis_open_underscore] = ACTIONS(887), + [sym__last_token_whitespace] = ACTIONS(109), + }, + [163] = { + [aux_sym__ignore_matching_tokens] = STATE(157), + [ts_builtin_sym_end] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(891), + [anon_sym_DQUOTE] = ACTIONS(891), + [anon_sym_POUND] = ACTIONS(891), + [anon_sym_DOLLAR] = ACTIONS(891), + [anon_sym_PERCENT] = ACTIONS(891), + [anon_sym_AMP] = ACTIONS(893), + [anon_sym_SQUOTE] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_RPAREN] = ACTIONS(891), + [anon_sym_STAR] = ACTIONS(891), + [anon_sym_PLUS] = ACTIONS(891), + [anon_sym_COMMA] = ACTIONS(891), + [anon_sym_DASH] = ACTIONS(891), + [anon_sym_DOT] = ACTIONS(891), + [anon_sym_SLASH] = ACTIONS(891), + [anon_sym_COLON] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(891), + [anon_sym_LT] = ACTIONS(893), + [anon_sym_EQ] = ACTIONS(891), + [anon_sym_GT] = ACTIONS(891), + [anon_sym_QMARK] = ACTIONS(891), + [anon_sym_AT] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BSLASH] = ACTIONS(893), + [anon_sym_RBRACK] = ACTIONS(891), + [anon_sym_CARET] = ACTIONS(891), + [anon_sym__] = ACTIONS(891), + [anon_sym_BQUOTE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_PIPE] = ACTIONS(891), + [anon_sym_RBRACE] = ACTIONS(891), + [anon_sym_TILDE] = ACTIONS(891), + [aux_sym__html_block_1_token1] = ACTIONS(891), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(893), + [anon_sym_LT_QMARK] = ACTIONS(893), + [aux_sym__html_block_4_token1] = ACTIONS(893), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(891), + [aux_sym__html_block_6_token1] = ACTIONS(893), + [aux_sym__html_block_6_token2] = ACTIONS(891), + [sym__open_tag_html_block] = ACTIONS(891), + [sym__open_tag_html_block_newline] = ACTIONS(891), + [sym__closing_tag_html_block] = ACTIONS(891), + [sym__closing_tag_html_block_newline] = ACTIONS(891), + [sym_backslash_escape] = ACTIONS(891), + [sym_entity_reference] = ACTIONS(891), + [sym_numeric_character_reference] = ACTIONS(891), + [sym_uri_autolink] = ACTIONS(891), + [sym_email_autolink] = ACTIONS(891), + [sym__whitespace_ge_2] = ACTIONS(891), + [aux_sym__whitespace_token1] = ACTIONS(893), + [sym__word_no_digit] = ACTIONS(891), + [sym__digits] = ACTIONS(891), + [aux_sym__newline_token1] = ACTIONS(891), + [sym__block_continuation] = ACTIONS(895), + [sym__block_quote_continuation] = ACTIONS(895), + [sym__block_quote_start] = ACTIONS(891), + [sym__indented_chunk_start] = ACTIONS(891), + [sym_atx_h1_marker] = ACTIONS(891), + [sym_atx_h2_marker] = ACTIONS(891), + [sym_atx_h3_marker] = ACTIONS(891), + [sym_atx_h4_marker] = ACTIONS(891), + [sym_atx_h5_marker] = ACTIONS(891), + [sym_atx_h6_marker] = ACTIONS(891), + [sym__thematic_break] = ACTIONS(891), + [sym__list_marker_minus] = ACTIONS(891), + [sym__list_marker_plus] = ACTIONS(891), + [sym__list_marker_star] = ACTIONS(891), + [sym__list_marker_parenthesis] = ACTIONS(891), + [sym__list_marker_dot] = ACTIONS(891), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(891), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(891), + [sym__list_marker_star_dont_interrupt] = ACTIONS(891), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(891), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(891), + [sym__fenced_code_block_start_backtick] = ACTIONS(891), + [sym__fenced_code_block_start_tilde] = ACTIONS(891), + [sym__blank_line_start] = ACTIONS(891), + [sym__code_span_start] = ACTIONS(891), + [sym__emphasis_open_star] = ACTIONS(891), + [sym__emphasis_open_underscore] = ACTIONS(891), + [sym__last_token_whitespace] = ACTIONS(895), + }, + [164] = { + [aux_sym__ignore_matching_tokens] = STATE(201), + [ts_builtin_sym_end] = ACTIONS(897), + [anon_sym_BANG] = ACTIONS(897), + [anon_sym_DQUOTE] = ACTIONS(897), + [anon_sym_POUND] = ACTIONS(897), + [anon_sym_DOLLAR] = ACTIONS(897), + [anon_sym_PERCENT] = ACTIONS(897), + [anon_sym_AMP] = ACTIONS(899), + [anon_sym_SQUOTE] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_RPAREN] = ACTIONS(897), + [anon_sym_STAR] = ACTIONS(897), + [anon_sym_PLUS] = ACTIONS(897), + [anon_sym_COMMA] = ACTIONS(897), + [anon_sym_DASH] = ACTIONS(897), + [anon_sym_DOT] = ACTIONS(897), + [anon_sym_SLASH] = ACTIONS(897), + [anon_sym_COLON] = ACTIONS(897), + [anon_sym_SEMI] = ACTIONS(897), + [anon_sym_LT] = ACTIONS(899), + [anon_sym_EQ] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_QMARK] = ACTIONS(897), + [anon_sym_AT] = ACTIONS(897), + [anon_sym_LBRACK] = ACTIONS(897), + [anon_sym_BSLASH] = ACTIONS(899), + [anon_sym_RBRACK] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(897), + [anon_sym__] = ACTIONS(897), + [anon_sym_BQUOTE] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(897), + [anon_sym_PIPE] = ACTIONS(897), + [anon_sym_RBRACE] = ACTIONS(897), + [anon_sym_TILDE] = ACTIONS(897), + [aux_sym__html_block_1_token1] = ACTIONS(897), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(899), + [anon_sym_LT_QMARK] = ACTIONS(899), + [aux_sym__html_block_4_token1] = ACTIONS(899), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(897), + [aux_sym__html_block_6_token1] = ACTIONS(899), + [aux_sym__html_block_6_token2] = ACTIONS(897), + [sym__open_tag_html_block] = ACTIONS(897), + [sym__open_tag_html_block_newline] = ACTIONS(897), + [sym__closing_tag_html_block] = ACTIONS(897), + [sym__closing_tag_html_block_newline] = ACTIONS(897), + [sym_backslash_escape] = ACTIONS(897), + [sym_entity_reference] = ACTIONS(897), + [sym_numeric_character_reference] = ACTIONS(897), + [sym_uri_autolink] = ACTIONS(897), + [sym_email_autolink] = ACTIONS(897), + [sym__whitespace_ge_2] = ACTIONS(897), + [aux_sym__whitespace_token1] = ACTIONS(899), + [sym__word_no_digit] = ACTIONS(897), + [sym__digits] = ACTIONS(897), + [aux_sym__newline_token1] = ACTIONS(897), + [sym__block_continuation] = ACTIONS(109), + [sym__block_quote_continuation] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(897), + [sym__indented_chunk_start] = ACTIONS(897), + [sym_atx_h1_marker] = ACTIONS(897), + [sym_atx_h2_marker] = ACTIONS(897), + [sym_atx_h3_marker] = ACTIONS(897), + [sym_atx_h4_marker] = ACTIONS(897), + [sym_atx_h5_marker] = ACTIONS(897), + [sym_atx_h6_marker] = ACTIONS(897), + [sym__thematic_break] = ACTIONS(897), + [sym__list_marker_minus] = ACTIONS(897), + [sym__list_marker_plus] = ACTIONS(897), + [sym__list_marker_star] = ACTIONS(897), + [sym__list_marker_parenthesis] = ACTIONS(897), + [sym__list_marker_dot] = ACTIONS(897), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(897), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(897), + [sym__list_marker_star_dont_interrupt] = ACTIONS(897), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(897), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(897), + [sym__fenced_code_block_start_backtick] = ACTIONS(897), + [sym__fenced_code_block_start_tilde] = ACTIONS(897), + [sym__blank_line_start] = ACTIONS(897), + [sym__code_span_start] = ACTIONS(897), + [sym__emphasis_open_star] = ACTIONS(897), + [sym__emphasis_open_underscore] = ACTIONS(897), + [sym__last_token_whitespace] = ACTIONS(109), + }, + [165] = { + [aux_sym__ignore_matching_tokens] = STATE(201), + [ts_builtin_sym_end] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(891), + [anon_sym_DQUOTE] = ACTIONS(891), + [anon_sym_POUND] = ACTIONS(891), + [anon_sym_DOLLAR] = ACTIONS(891), + [anon_sym_PERCENT] = ACTIONS(891), + [anon_sym_AMP] = ACTIONS(893), + [anon_sym_SQUOTE] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_RPAREN] = ACTIONS(891), + [anon_sym_STAR] = ACTIONS(891), + [anon_sym_PLUS] = ACTIONS(891), + [anon_sym_COMMA] = ACTIONS(891), + [anon_sym_DASH] = ACTIONS(891), + [anon_sym_DOT] = ACTIONS(891), + [anon_sym_SLASH] = ACTIONS(891), + [anon_sym_COLON] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(891), + [anon_sym_LT] = ACTIONS(893), + [anon_sym_EQ] = ACTIONS(891), + [anon_sym_GT] = ACTIONS(891), + [anon_sym_QMARK] = ACTIONS(891), + [anon_sym_AT] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BSLASH] = ACTIONS(893), + [anon_sym_RBRACK] = ACTIONS(891), + [anon_sym_CARET] = ACTIONS(891), + [anon_sym__] = ACTIONS(891), + [anon_sym_BQUOTE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_PIPE] = ACTIONS(891), + [anon_sym_RBRACE] = ACTIONS(891), + [anon_sym_TILDE] = ACTIONS(891), + [aux_sym__html_block_1_token1] = ACTIONS(891), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(893), + [anon_sym_LT_QMARK] = ACTIONS(893), + [aux_sym__html_block_4_token1] = ACTIONS(893), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(891), + [aux_sym__html_block_6_token1] = ACTIONS(893), + [aux_sym__html_block_6_token2] = ACTIONS(891), + [sym__open_tag_html_block] = ACTIONS(891), + [sym__open_tag_html_block_newline] = ACTIONS(891), + [sym__closing_tag_html_block] = ACTIONS(891), + [sym__closing_tag_html_block_newline] = ACTIONS(891), + [sym_backslash_escape] = ACTIONS(891), + [sym_entity_reference] = ACTIONS(891), + [sym_numeric_character_reference] = ACTIONS(891), + [sym_uri_autolink] = ACTIONS(891), + [sym_email_autolink] = ACTIONS(891), + [sym__whitespace_ge_2] = ACTIONS(891), + [aux_sym__whitespace_token1] = ACTIONS(893), + [sym__word_no_digit] = ACTIONS(891), + [sym__digits] = ACTIONS(891), + [aux_sym__newline_token1] = ACTIONS(891), + [sym__block_continuation] = ACTIONS(109), + [sym__block_quote_continuation] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(891), + [sym__indented_chunk_start] = ACTIONS(891), + [sym_atx_h1_marker] = ACTIONS(891), + [sym_atx_h2_marker] = ACTIONS(891), + [sym_atx_h3_marker] = ACTIONS(891), + [sym_atx_h4_marker] = ACTIONS(891), + [sym_atx_h5_marker] = ACTIONS(891), + [sym_atx_h6_marker] = ACTIONS(891), + [sym__thematic_break] = ACTIONS(891), + [sym__list_marker_minus] = ACTIONS(891), + [sym__list_marker_plus] = ACTIONS(891), + [sym__list_marker_star] = ACTIONS(891), + [sym__list_marker_parenthesis] = ACTIONS(891), + [sym__list_marker_dot] = ACTIONS(891), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(891), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(891), + [sym__list_marker_star_dont_interrupt] = ACTIONS(891), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(891), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(891), + [sym__fenced_code_block_start_backtick] = ACTIONS(891), + [sym__fenced_code_block_start_tilde] = ACTIONS(891), + [sym__blank_line_start] = ACTIONS(891), + [sym__code_span_start] = ACTIONS(891), + [sym__emphasis_open_star] = ACTIONS(891), + [sym__emphasis_open_underscore] = ACTIONS(891), + [sym__last_token_whitespace] = ACTIONS(109), + }, + [166] = { + [aux_sym__ignore_matching_tokens] = STATE(267), + [anon_sym_BANG] = ACTIONS(850), + [anon_sym_DQUOTE] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(850), + [anon_sym_DOLLAR] = ACTIONS(850), + [anon_sym_PERCENT] = ACTIONS(850), + [anon_sym_AMP] = ACTIONS(852), + [anon_sym_SQUOTE] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(850), + [anon_sym_RPAREN] = ACTIONS(850), + [anon_sym_STAR] = ACTIONS(850), + [anon_sym_PLUS] = ACTIONS(850), + [anon_sym_COMMA] = ACTIONS(850), + [anon_sym_DASH] = ACTIONS(850), + [anon_sym_DOT] = ACTIONS(850), + [anon_sym_SLASH] = ACTIONS(850), + [anon_sym_COLON] = ACTIONS(850), + [anon_sym_SEMI] = ACTIONS(850), + [anon_sym_LT] = ACTIONS(852), + [anon_sym_EQ] = ACTIONS(850), + [anon_sym_GT] = ACTIONS(850), + [anon_sym_QMARK] = ACTIONS(850), + [anon_sym_AT] = ACTIONS(850), + [anon_sym_LBRACK] = ACTIONS(850), + [anon_sym_BSLASH] = ACTIONS(852), + [anon_sym_RBRACK] = ACTIONS(850), + [anon_sym_CARET] = ACTIONS(850), + [anon_sym__] = ACTIONS(850), + [anon_sym_BQUOTE] = ACTIONS(850), + [anon_sym_LBRACE] = ACTIONS(850), + [anon_sym_PIPE] = ACTIONS(850), + [anon_sym_RBRACE] = ACTIONS(850), + [anon_sym_TILDE] = ACTIONS(850), + [aux_sym__html_block_1_token1] = ACTIONS(850), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(852), + [anon_sym_LT_QMARK] = ACTIONS(852), + [aux_sym__html_block_4_token1] = ACTIONS(852), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(850), + [aux_sym__html_block_6_token1] = ACTIONS(852), + [aux_sym__html_block_6_token2] = ACTIONS(850), + [sym__open_tag_html_block] = ACTIONS(850), + [sym__open_tag_html_block_newline] = ACTIONS(850), + [sym__closing_tag_html_block] = ACTIONS(850), + [sym__closing_tag_html_block_newline] = ACTIONS(850), + [sym_backslash_escape] = ACTIONS(850), + [sym_entity_reference] = ACTIONS(850), + [sym_numeric_character_reference] = ACTIONS(850), + [sym_uri_autolink] = ACTIONS(850), + [sym_email_autolink] = ACTIONS(850), + [sym__whitespace_ge_2] = ACTIONS(850), + [aux_sym__whitespace_token1] = ACTIONS(852), + [sym__word_no_digit] = ACTIONS(850), + [sym__digits] = ACTIONS(850), + [aux_sym__newline_token1] = ACTIONS(850), + [sym__block_close] = ACTIONS(850), + [sym__block_continuation] = ACTIONS(901), + [sym__block_quote_continuation] = ACTIONS(901), + [sym__block_quote_start] = ACTIONS(850), + [sym__indented_chunk_start] = ACTIONS(850), + [sym_atx_h1_marker] = ACTIONS(850), + [sym_atx_h2_marker] = ACTIONS(850), + [sym_atx_h3_marker] = ACTIONS(850), + [sym_atx_h4_marker] = ACTIONS(850), + [sym_atx_h5_marker] = ACTIONS(850), + [sym_atx_h6_marker] = ACTIONS(850), + [sym__thematic_break] = ACTIONS(850), + [sym__list_marker_minus] = ACTIONS(850), + [sym__list_marker_plus] = ACTIONS(850), + [sym__list_marker_star] = ACTIONS(850), + [sym__list_marker_parenthesis] = ACTIONS(850), + [sym__list_marker_dot] = ACTIONS(850), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(850), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(850), + [sym__list_marker_star_dont_interrupt] = ACTIONS(850), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(850), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(850), + [sym__fenced_code_block_start_backtick] = ACTIONS(850), + [sym__fenced_code_block_start_tilde] = ACTIONS(850), + [sym__blank_line_start] = ACTIONS(850), + [sym__code_span_start] = ACTIONS(850), + [sym__emphasis_open_star] = ACTIONS(850), + [sym__emphasis_open_underscore] = ACTIONS(850), + [sym__last_token_whitespace] = ACTIONS(901), + }, + [167] = { + [aux_sym__ignore_matching_tokens] = STATE(160), + [anon_sym_BANG] = ACTIONS(891), + [anon_sym_DQUOTE] = ACTIONS(891), + [anon_sym_POUND] = ACTIONS(891), + [anon_sym_DOLLAR] = ACTIONS(891), + [anon_sym_PERCENT] = ACTIONS(891), + [anon_sym_AMP] = ACTIONS(893), + [anon_sym_SQUOTE] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_RPAREN] = ACTIONS(891), + [anon_sym_STAR] = ACTIONS(891), + [anon_sym_PLUS] = ACTIONS(891), + [anon_sym_COMMA] = ACTIONS(891), + [anon_sym_DASH] = ACTIONS(891), + [anon_sym_DOT] = ACTIONS(891), + [anon_sym_SLASH] = ACTIONS(891), + [anon_sym_COLON] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(891), + [anon_sym_LT] = ACTIONS(893), + [anon_sym_EQ] = ACTIONS(891), + [anon_sym_GT] = ACTIONS(891), + [anon_sym_QMARK] = ACTIONS(891), + [anon_sym_AT] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BSLASH] = ACTIONS(893), + [anon_sym_RBRACK] = ACTIONS(891), + [anon_sym_CARET] = ACTIONS(891), + [anon_sym__] = ACTIONS(891), + [anon_sym_BQUOTE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_PIPE] = ACTIONS(891), + [anon_sym_RBRACE] = ACTIONS(891), + [anon_sym_TILDE] = ACTIONS(891), + [aux_sym__html_block_1_token1] = ACTIONS(891), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(893), + [anon_sym_LT_QMARK] = ACTIONS(893), + [aux_sym__html_block_4_token1] = ACTIONS(893), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(891), + [aux_sym__html_block_6_token1] = ACTIONS(893), + [aux_sym__html_block_6_token2] = ACTIONS(891), + [sym__open_tag_html_block] = ACTIONS(891), + [sym__open_tag_html_block_newline] = ACTIONS(891), + [sym__closing_tag_html_block] = ACTIONS(891), + [sym__closing_tag_html_block_newline] = ACTIONS(891), + [sym_backslash_escape] = ACTIONS(891), + [sym_entity_reference] = ACTIONS(891), + [sym_numeric_character_reference] = ACTIONS(891), + [sym_uri_autolink] = ACTIONS(891), + [sym_email_autolink] = ACTIONS(891), + [sym__whitespace_ge_2] = ACTIONS(891), + [aux_sym__whitespace_token1] = ACTIONS(893), + [sym__word_no_digit] = ACTIONS(891), + [sym__digits] = ACTIONS(891), + [aux_sym__newline_token1] = ACTIONS(891), + [sym__block_close] = ACTIONS(891), + [sym__block_continuation] = ACTIONS(113), + [sym__block_quote_continuation] = ACTIONS(113), + [sym__block_quote_start] = ACTIONS(891), + [sym__indented_chunk_start] = ACTIONS(891), + [sym_atx_h1_marker] = ACTIONS(891), + [sym_atx_h2_marker] = ACTIONS(891), + [sym_atx_h3_marker] = ACTIONS(891), + [sym_atx_h4_marker] = ACTIONS(891), + [sym_atx_h5_marker] = ACTIONS(891), + [sym_atx_h6_marker] = ACTIONS(891), + [sym__thematic_break] = ACTIONS(891), + [sym__list_marker_minus] = ACTIONS(891), + [sym__list_marker_plus] = ACTIONS(891), + [sym__list_marker_star] = ACTIONS(891), + [sym__list_marker_parenthesis] = ACTIONS(891), + [sym__list_marker_dot] = ACTIONS(891), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(891), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(891), + [sym__list_marker_star_dont_interrupt] = ACTIONS(891), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(891), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(891), + [sym__fenced_code_block_start_backtick] = ACTIONS(891), + [sym__fenced_code_block_start_tilde] = ACTIONS(891), + [sym__blank_line_start] = ACTIONS(891), + [sym__code_span_start] = ACTIONS(891), + [sym__emphasis_open_star] = ACTIONS(891), + [sym__emphasis_open_underscore] = ACTIONS(891), + [sym__last_token_whitespace] = ACTIONS(113), + }, + [168] = { + [aux_sym__ignore_matching_tokens] = STATE(228), + [ts_builtin_sym_end] = ACTIONS(897), + [anon_sym_BANG] = ACTIONS(897), + [anon_sym_DQUOTE] = ACTIONS(897), + [anon_sym_POUND] = ACTIONS(897), + [anon_sym_DOLLAR] = ACTIONS(897), + [anon_sym_PERCENT] = ACTIONS(897), + [anon_sym_AMP] = ACTIONS(899), + [anon_sym_SQUOTE] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_RPAREN] = ACTIONS(897), + [anon_sym_STAR] = ACTIONS(897), + [anon_sym_PLUS] = ACTIONS(897), + [anon_sym_COMMA] = ACTIONS(897), + [anon_sym_DASH] = ACTIONS(897), + [anon_sym_DOT] = ACTIONS(897), + [anon_sym_SLASH] = ACTIONS(897), + [anon_sym_COLON] = ACTIONS(897), + [anon_sym_SEMI] = ACTIONS(897), + [anon_sym_LT] = ACTIONS(899), + [anon_sym_EQ] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_QMARK] = ACTIONS(897), + [anon_sym_AT] = ACTIONS(897), + [anon_sym_LBRACK] = ACTIONS(897), + [anon_sym_BSLASH] = ACTIONS(899), + [anon_sym_RBRACK] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(897), + [anon_sym__] = ACTIONS(897), + [anon_sym_BQUOTE] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(897), + [anon_sym_PIPE] = ACTIONS(897), + [anon_sym_RBRACE] = ACTIONS(897), + [anon_sym_TILDE] = ACTIONS(897), + [aux_sym__html_block_1_token1] = ACTIONS(897), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(899), + [anon_sym_LT_QMARK] = ACTIONS(899), + [aux_sym__html_block_4_token1] = ACTIONS(899), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(897), + [aux_sym__html_block_6_token1] = ACTIONS(899), + [aux_sym__html_block_6_token2] = ACTIONS(897), + [sym__open_tag_html_block] = ACTIONS(897), + [sym__open_tag_html_block_newline] = ACTIONS(897), + [sym__closing_tag_html_block] = ACTIONS(897), + [sym__closing_tag_html_block_newline] = ACTIONS(897), + [sym_backslash_escape] = ACTIONS(897), + [sym_entity_reference] = ACTIONS(897), + [sym_numeric_character_reference] = ACTIONS(897), + [sym_uri_autolink] = ACTIONS(897), + [sym_email_autolink] = ACTIONS(897), + [sym__whitespace_ge_2] = ACTIONS(897), + [aux_sym__whitespace_token1] = ACTIONS(899), + [sym__word_no_digit] = ACTIONS(897), + [sym__digits] = ACTIONS(897), + [aux_sym__newline_token1] = ACTIONS(897), + [sym__block_continuation] = ACTIONS(903), + [sym__block_quote_continuation] = ACTIONS(903), + [sym__block_quote_start] = ACTIONS(897), + [sym__indented_chunk_start] = ACTIONS(897), + [sym_atx_h1_marker] = ACTIONS(897), + [sym_atx_h2_marker] = ACTIONS(897), + [sym_atx_h3_marker] = ACTIONS(897), + [sym_atx_h4_marker] = ACTIONS(897), + [sym_atx_h5_marker] = ACTIONS(897), + [sym_atx_h6_marker] = ACTIONS(897), + [sym__thematic_break] = ACTIONS(897), + [sym__list_marker_minus] = ACTIONS(897), + [sym__list_marker_plus] = ACTIONS(897), + [sym__list_marker_star] = ACTIONS(897), + [sym__list_marker_parenthesis] = ACTIONS(897), + [sym__list_marker_dot] = ACTIONS(897), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(897), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(897), + [sym__list_marker_star_dont_interrupt] = ACTIONS(897), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(897), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(897), + [sym__fenced_code_block_start_backtick] = ACTIONS(897), + [sym__fenced_code_block_start_tilde] = ACTIONS(897), + [sym__blank_line_start] = ACTIONS(897), + [sym__code_span_start] = ACTIONS(897), + [sym__emphasis_open_star] = ACTIONS(897), + [sym__emphasis_open_underscore] = ACTIONS(897), + [sym__last_token_whitespace] = ACTIONS(903), + }, + [169] = { + [aux_sym__ignore_matching_tokens] = STATE(264), + [anon_sym_BANG] = ACTIONS(891), + [anon_sym_DQUOTE] = ACTIONS(891), + [anon_sym_POUND] = ACTIONS(891), + [anon_sym_DOLLAR] = ACTIONS(891), + [anon_sym_PERCENT] = ACTIONS(891), + [anon_sym_AMP] = ACTIONS(893), + [anon_sym_SQUOTE] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_RPAREN] = ACTIONS(891), + [anon_sym_STAR] = ACTIONS(891), + [anon_sym_PLUS] = ACTIONS(891), + [anon_sym_COMMA] = ACTIONS(891), + [anon_sym_DASH] = ACTIONS(891), + [anon_sym_DOT] = ACTIONS(891), + [anon_sym_SLASH] = ACTIONS(891), + [anon_sym_COLON] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(891), + [anon_sym_LT] = ACTIONS(893), + [anon_sym_EQ] = ACTIONS(891), + [anon_sym_GT] = ACTIONS(891), + [anon_sym_QMARK] = ACTIONS(891), + [anon_sym_AT] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_BSLASH] = ACTIONS(893), + [anon_sym_RBRACK] = ACTIONS(891), + [anon_sym_CARET] = ACTIONS(891), + [anon_sym__] = ACTIONS(891), + [anon_sym_BQUOTE] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_PIPE] = ACTIONS(891), + [anon_sym_RBRACE] = ACTIONS(891), + [anon_sym_TILDE] = ACTIONS(891), + [aux_sym__html_block_1_token1] = ACTIONS(891), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(893), + [anon_sym_LT_QMARK] = ACTIONS(893), + [aux_sym__html_block_4_token1] = ACTIONS(893), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(891), + [aux_sym__html_block_6_token1] = ACTIONS(893), + [aux_sym__html_block_6_token2] = ACTIONS(891), + [sym__open_tag_html_block] = ACTIONS(891), + [sym__open_tag_html_block_newline] = ACTIONS(891), + [sym__closing_tag_html_block] = ACTIONS(891), + [sym__closing_tag_html_block_newline] = ACTIONS(891), + [sym_backslash_escape] = ACTIONS(891), + [sym_entity_reference] = ACTIONS(891), + [sym_numeric_character_reference] = ACTIONS(891), + [sym_uri_autolink] = ACTIONS(891), + [sym_email_autolink] = ACTIONS(891), + [sym__whitespace_ge_2] = ACTIONS(891), + [aux_sym__whitespace_token1] = ACTIONS(893), + [sym__word_no_digit] = ACTIONS(891), + [sym__digits] = ACTIONS(891), + [aux_sym__newline_token1] = ACTIONS(891), + [sym__block_close] = ACTIONS(891), + [sym__block_continuation] = ACTIONS(905), + [sym__block_quote_continuation] = ACTIONS(905), + [sym__block_quote_start] = ACTIONS(891), + [sym__indented_chunk_start] = ACTIONS(891), + [sym_atx_h1_marker] = ACTIONS(891), + [sym_atx_h2_marker] = ACTIONS(891), + [sym_atx_h3_marker] = ACTIONS(891), + [sym_atx_h4_marker] = ACTIONS(891), + [sym_atx_h5_marker] = ACTIONS(891), + [sym_atx_h6_marker] = ACTIONS(891), + [sym__thematic_break] = ACTIONS(891), + [sym__list_marker_minus] = ACTIONS(891), + [sym__list_marker_plus] = ACTIONS(891), + [sym__list_marker_star] = ACTIONS(891), + [sym__list_marker_parenthesis] = ACTIONS(891), + [sym__list_marker_dot] = ACTIONS(891), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(891), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(891), + [sym__list_marker_star_dont_interrupt] = ACTIONS(891), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(891), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(891), + [sym__fenced_code_block_start_backtick] = ACTIONS(891), + [sym__fenced_code_block_start_tilde] = ACTIONS(891), + [sym__blank_line_start] = ACTIONS(891), + [sym__code_span_start] = ACTIONS(891), + [sym__emphasis_open_star] = ACTIONS(891), + [sym__emphasis_open_underscore] = ACTIONS(891), + [sym__last_token_whitespace] = ACTIONS(905), + }, + [170] = { + [aux_sym__ignore_matching_tokens] = STATE(201), + [ts_builtin_sym_end] = 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), + [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(907), + [sym_numeric_character_reference] = ACTIONS(907), + [sym_uri_autolink] = ACTIONS(907), + [sym_email_autolink] = 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(109), + [sym__block_quote_continuation] = ACTIONS(109), + [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__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__emphasis_open_star] = ACTIONS(907), + [sym__emphasis_open_underscore] = ACTIONS(907), + [sym__last_token_whitespace] = ACTIONS(109), + }, + [171] = { + [aux_sym__ignore_matching_tokens] = STATE(154), + [ts_builtin_sym_end] = ACTIONS(850), + [anon_sym_BANG] = ACTIONS(850), + [anon_sym_DQUOTE] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(850), + [anon_sym_DOLLAR] = ACTIONS(850), + [anon_sym_PERCENT] = ACTIONS(850), + [anon_sym_AMP] = ACTIONS(852), + [anon_sym_SQUOTE] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(850), + [anon_sym_RPAREN] = ACTIONS(850), + [anon_sym_STAR] = ACTIONS(850), + [anon_sym_PLUS] = ACTIONS(850), + [anon_sym_COMMA] = ACTIONS(850), + [anon_sym_DASH] = ACTIONS(850), + [anon_sym_DOT] = ACTIONS(850), + [anon_sym_SLASH] = ACTIONS(850), + [anon_sym_COLON] = ACTIONS(850), + [anon_sym_SEMI] = ACTIONS(850), + [anon_sym_LT] = ACTIONS(852), + [anon_sym_EQ] = ACTIONS(850), + [anon_sym_GT] = ACTIONS(850), + [anon_sym_QMARK] = ACTIONS(850), + [anon_sym_AT] = ACTIONS(850), + [anon_sym_LBRACK] = ACTIONS(850), + [anon_sym_BSLASH] = ACTIONS(852), + [anon_sym_RBRACK] = ACTIONS(850), + [anon_sym_CARET] = ACTIONS(850), + [anon_sym__] = ACTIONS(850), + [anon_sym_BQUOTE] = ACTIONS(850), + [anon_sym_LBRACE] = ACTIONS(850), + [anon_sym_PIPE] = ACTIONS(850), + [anon_sym_RBRACE] = ACTIONS(850), + [anon_sym_TILDE] = ACTIONS(850), + [aux_sym__html_block_1_token1] = ACTIONS(850), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(852), + [anon_sym_LT_QMARK] = ACTIONS(852), + [aux_sym__html_block_4_token1] = ACTIONS(852), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(850), + [aux_sym__html_block_6_token1] = ACTIONS(852), + [aux_sym__html_block_6_token2] = ACTIONS(850), + [sym__open_tag_html_block] = ACTIONS(850), + [sym__open_tag_html_block_newline] = ACTIONS(850), + [sym__closing_tag_html_block] = ACTIONS(850), + [sym__closing_tag_html_block_newline] = ACTIONS(850), + [sym_backslash_escape] = ACTIONS(850), + [sym_entity_reference] = ACTIONS(850), + [sym_numeric_character_reference] = ACTIONS(850), + [sym_uri_autolink] = ACTIONS(850), + [sym_email_autolink] = ACTIONS(850), + [sym__whitespace_ge_2] = ACTIONS(850), + [aux_sym__whitespace_token1] = ACTIONS(852), + [sym__word_no_digit] = ACTIONS(850), + [sym__digits] = ACTIONS(850), + [aux_sym__newline_token1] = ACTIONS(850), + [sym__block_continuation] = ACTIONS(911), + [sym__block_quote_continuation] = ACTIONS(911), + [sym__block_quote_start] = ACTIONS(850), + [sym__indented_chunk_start] = ACTIONS(850), + [sym_atx_h1_marker] = ACTIONS(850), + [sym_atx_h2_marker] = ACTIONS(850), + [sym_atx_h3_marker] = ACTIONS(850), + [sym_atx_h4_marker] = ACTIONS(850), + [sym_atx_h5_marker] = ACTIONS(850), + [sym_atx_h6_marker] = ACTIONS(850), + [sym__thematic_break] = ACTIONS(850), + [sym__list_marker_minus] = ACTIONS(850), + [sym__list_marker_plus] = ACTIONS(850), + [sym__list_marker_star] = ACTIONS(850), + [sym__list_marker_parenthesis] = ACTIONS(850), + [sym__list_marker_dot] = ACTIONS(850), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(850), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(850), + [sym__list_marker_star_dont_interrupt] = ACTIONS(850), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(850), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(850), + [sym__fenced_code_block_start_backtick] = ACTIONS(850), + [sym__fenced_code_block_start_tilde] = ACTIONS(850), + [sym__blank_line_start] = ACTIONS(850), + [sym__code_span_start] = ACTIONS(850), + [sym__emphasis_open_star] = ACTIONS(850), + [sym__emphasis_open_underscore] = ACTIONS(850), + [sym__last_token_whitespace] = ACTIONS(911), + }, + [172] = { + [aux_sym__ignore_matching_tokens] = STATE(160), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_DQUOTE] = ACTIONS(874), + [anon_sym_POUND] = ACTIONS(874), + [anon_sym_DOLLAR] = ACTIONS(874), + [anon_sym_PERCENT] = ACTIONS(874), + [anon_sym_AMP] = ACTIONS(876), + [anon_sym_SQUOTE] = ACTIONS(874), + [anon_sym_LPAREN] = ACTIONS(874), + [anon_sym_RPAREN] = ACTIONS(874), + [anon_sym_STAR] = ACTIONS(874), + [anon_sym_PLUS] = ACTIONS(874), + [anon_sym_COMMA] = ACTIONS(874), + [anon_sym_DASH] = ACTIONS(874), + [anon_sym_DOT] = ACTIONS(874), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_COLON] = ACTIONS(874), + [anon_sym_SEMI] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(876), + [anon_sym_EQ] = ACTIONS(874), + [anon_sym_GT] = ACTIONS(874), + [anon_sym_QMARK] = ACTIONS(874), + [anon_sym_AT] = ACTIONS(874), + [anon_sym_LBRACK] = ACTIONS(874), + [anon_sym_BSLASH] = ACTIONS(876), + [anon_sym_RBRACK] = ACTIONS(874), + [anon_sym_CARET] = ACTIONS(874), + [anon_sym__] = ACTIONS(874), + [anon_sym_BQUOTE] = ACTIONS(874), + [anon_sym_LBRACE] = ACTIONS(874), + [anon_sym_PIPE] = ACTIONS(874), + [anon_sym_RBRACE] = ACTIONS(874), + [anon_sym_TILDE] = ACTIONS(874), + [aux_sym__html_block_1_token1] = ACTIONS(874), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(876), + [anon_sym_LT_QMARK] = ACTIONS(876), + [aux_sym__html_block_4_token1] = ACTIONS(876), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(874), + [aux_sym__html_block_6_token1] = ACTIONS(876), + [aux_sym__html_block_6_token2] = ACTIONS(874), + [sym__open_tag_html_block] = ACTIONS(874), + [sym__open_tag_html_block_newline] = ACTIONS(874), + [sym__closing_tag_html_block] = ACTIONS(874), + [sym__closing_tag_html_block_newline] = ACTIONS(874), + [sym_backslash_escape] = ACTIONS(874), + [sym_entity_reference] = ACTIONS(874), + [sym_numeric_character_reference] = ACTIONS(874), + [sym_uri_autolink] = ACTIONS(874), + [sym_email_autolink] = ACTIONS(874), + [sym__whitespace_ge_2] = ACTIONS(874), + [aux_sym__whitespace_token1] = ACTIONS(876), + [sym__word_no_digit] = ACTIONS(874), + [sym__digits] = ACTIONS(874), + [aux_sym__newline_token1] = ACTIONS(874), + [sym__block_close] = ACTIONS(874), + [sym__block_continuation] = ACTIONS(113), + [sym__block_quote_continuation] = ACTIONS(113), + [sym__block_quote_start] = ACTIONS(874), + [sym__indented_chunk_start] = ACTIONS(874), + [sym_atx_h1_marker] = ACTIONS(874), + [sym_atx_h2_marker] = ACTIONS(874), + [sym_atx_h3_marker] = ACTIONS(874), + [sym_atx_h4_marker] = ACTIONS(874), + [sym_atx_h5_marker] = ACTIONS(874), + [sym_atx_h6_marker] = ACTIONS(874), + [sym__thematic_break] = ACTIONS(874), + [sym__list_marker_minus] = ACTIONS(874), + [sym__list_marker_plus] = ACTIONS(874), + [sym__list_marker_star] = ACTIONS(874), + [sym__list_marker_parenthesis] = ACTIONS(874), + [sym__list_marker_dot] = ACTIONS(874), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(874), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(874), + [sym__list_marker_star_dont_interrupt] = ACTIONS(874), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(874), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(874), + [sym__fenced_code_block_start_backtick] = ACTIONS(874), + [sym__fenced_code_block_start_tilde] = ACTIONS(874), + [sym__blank_line_start] = ACTIONS(874), + [sym__code_span_start] = ACTIONS(874), + [sym__emphasis_open_star] = ACTIONS(874), + [sym__emphasis_open_underscore] = ACTIONS(874), + [sym__last_token_whitespace] = ACTIONS(113), + }, + [173] = { + [aux_sym__ignore_matching_tokens] = STATE(201), + [ts_builtin_sym_end] = ACTIONS(850), + [anon_sym_BANG] = ACTIONS(850), + [anon_sym_DQUOTE] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(850), + [anon_sym_DOLLAR] = ACTIONS(850), + [anon_sym_PERCENT] = ACTIONS(850), + [anon_sym_AMP] = ACTIONS(852), + [anon_sym_SQUOTE] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(850), + [anon_sym_RPAREN] = ACTIONS(850), + [anon_sym_STAR] = ACTIONS(850), + [anon_sym_PLUS] = ACTIONS(850), + [anon_sym_COMMA] = ACTIONS(850), + [anon_sym_DASH] = ACTIONS(850), + [anon_sym_DOT] = ACTIONS(850), + [anon_sym_SLASH] = ACTIONS(850), + [anon_sym_COLON] = ACTIONS(850), + [anon_sym_SEMI] = ACTIONS(850), + [anon_sym_LT] = ACTIONS(852), + [anon_sym_EQ] = ACTIONS(850), + [anon_sym_GT] = ACTIONS(850), + [anon_sym_QMARK] = ACTIONS(850), + [anon_sym_AT] = ACTIONS(850), + [anon_sym_LBRACK] = ACTIONS(850), + [anon_sym_BSLASH] = ACTIONS(852), + [anon_sym_RBRACK] = ACTIONS(850), + [anon_sym_CARET] = ACTIONS(850), + [anon_sym__] = ACTIONS(850), + [anon_sym_BQUOTE] = ACTIONS(850), + [anon_sym_LBRACE] = ACTIONS(850), + [anon_sym_PIPE] = ACTIONS(850), + [anon_sym_RBRACE] = ACTIONS(850), + [anon_sym_TILDE] = ACTIONS(850), + [aux_sym__html_block_1_token1] = ACTIONS(850), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(852), + [anon_sym_LT_QMARK] = ACTIONS(852), + [aux_sym__html_block_4_token1] = ACTIONS(852), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(850), + [aux_sym__html_block_6_token1] = ACTIONS(852), + [aux_sym__html_block_6_token2] = ACTIONS(850), + [sym__open_tag_html_block] = ACTIONS(850), + [sym__open_tag_html_block_newline] = ACTIONS(850), + [sym__closing_tag_html_block] = ACTIONS(850), + [sym__closing_tag_html_block_newline] = ACTIONS(850), + [sym_backslash_escape] = ACTIONS(850), + [sym_entity_reference] = ACTIONS(850), + [sym_numeric_character_reference] = ACTIONS(850), + [sym_uri_autolink] = ACTIONS(850), + [sym_email_autolink] = ACTIONS(850), + [sym__whitespace_ge_2] = ACTIONS(850), + [aux_sym__whitespace_token1] = ACTIONS(852), + [sym__word_no_digit] = ACTIONS(850), + [sym__digits] = ACTIONS(850), + [aux_sym__newline_token1] = ACTIONS(850), + [sym__block_continuation] = ACTIONS(109), + [sym__block_quote_continuation] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(850), + [sym__indented_chunk_start] = ACTIONS(850), + [sym_atx_h1_marker] = ACTIONS(850), + [sym_atx_h2_marker] = ACTIONS(850), + [sym_atx_h3_marker] = ACTIONS(850), + [sym_atx_h4_marker] = ACTIONS(850), + [sym_atx_h5_marker] = ACTIONS(850), + [sym_atx_h6_marker] = ACTIONS(850), + [sym__thematic_break] = ACTIONS(850), + [sym__list_marker_minus] = ACTIONS(850), + [sym__list_marker_plus] = ACTIONS(850), + [sym__list_marker_star] = ACTIONS(850), + [sym__list_marker_parenthesis] = ACTIONS(850), + [sym__list_marker_dot] = ACTIONS(850), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(850), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(850), + [sym__list_marker_star_dont_interrupt] = ACTIONS(850), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(850), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(850), + [sym__fenced_code_block_start_backtick] = ACTIONS(850), + [sym__fenced_code_block_start_tilde] = ACTIONS(850), + [sym__blank_line_start] = ACTIONS(850), + [sym__code_span_start] = ACTIONS(850), + [sym__emphasis_open_star] = ACTIONS(850), + [sym__emphasis_open_underscore] = ACTIONS(850), + [sym__last_token_whitespace] = ACTIONS(109), + }, + [174] = { + [aux_sym__ignore_matching_tokens] = STATE(231), + [ts_builtin_sym_end] = 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), + [aux_sym__html_block_1_token1] = 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), - [sym_backslash_escape] = ACTIONS(910), - [sym_entity_reference] = ACTIONS(910), - [sym_numeric_character_reference] = ACTIONS(910), - [sym_uri_autolink] = ACTIONS(910), - [sym_email_autolink] = ACTIONS(910), - [sym__whitespace_ge_2] = ACTIONS(913), - [aux_sym__whitespace_token1] = ACTIONS(916), - [sym__word_no_digit] = ACTIONS(910), - [sym__digits] = ACTIONS(910), - [aux_sym__newline_token1] = ACTIONS(919), - [sym__code_span_start] = ACTIONS(922), + [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_entity_reference] = ACTIONS(907), + [sym_numeric_character_reference] = ACTIONS(907), + [sym_uri_autolink] = ACTIONS(907), + [sym_email_autolink] = 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(913), + [sym__block_quote_continuation] = ACTIONS(913), + [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__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__emphasis_open_star] = ACTIONS(907), + [sym__emphasis_open_underscore] = ACTIONS(907), + [sym__last_token_whitespace] = ACTIONS(913), + }, + [175] = { + [aux_sym__ignore_matching_tokens] = STATE(152), + [ts_builtin_sym_end] = ACTIONS(826), + [anon_sym_BANG] = ACTIONS(826), + [anon_sym_DQUOTE] = ACTIONS(826), + [anon_sym_POUND] = ACTIONS(826), + [anon_sym_DOLLAR] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(828), + [anon_sym_SQUOTE] = ACTIONS(826), + [anon_sym_LPAREN] = ACTIONS(826), + [anon_sym_RPAREN] = ACTIONS(826), + [anon_sym_STAR] = ACTIONS(826), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_COMMA] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOT] = ACTIONS(826), + [anon_sym_SLASH] = ACTIONS(826), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_SEMI] = ACTIONS(826), + [anon_sym_LT] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(826), + [anon_sym_QMARK] = ACTIONS(826), + [anon_sym_AT] = ACTIONS(826), + [anon_sym_LBRACK] = ACTIONS(826), + [anon_sym_BSLASH] = ACTIONS(828), + [anon_sym_RBRACK] = ACTIONS(826), + [anon_sym_CARET] = ACTIONS(826), + [anon_sym__] = ACTIONS(826), + [anon_sym_BQUOTE] = ACTIONS(826), + [anon_sym_LBRACE] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_RBRACE] = ACTIONS(826), + [anon_sym_TILDE] = ACTIONS(826), + [aux_sym__html_block_1_token1] = ACTIONS(826), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(828), + [anon_sym_LT_QMARK] = ACTIONS(828), + [aux_sym__html_block_4_token1] = ACTIONS(828), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(826), + [aux_sym__html_block_6_token1] = ACTIONS(828), + [aux_sym__html_block_6_token2] = ACTIONS(826), + [sym__open_tag_html_block] = ACTIONS(826), + [sym__open_tag_html_block_newline] = ACTIONS(826), + [sym__closing_tag_html_block] = ACTIONS(826), + [sym__closing_tag_html_block_newline] = ACTIONS(826), + [sym_backslash_escape] = ACTIONS(826), + [sym_entity_reference] = ACTIONS(826), + [sym_numeric_character_reference] = ACTIONS(826), + [sym_uri_autolink] = ACTIONS(826), + [sym_email_autolink] = ACTIONS(826), + [sym__whitespace_ge_2] = ACTIONS(826), + [aux_sym__whitespace_token1] = ACTIONS(828), + [sym__word_no_digit] = ACTIONS(826), + [sym__digits] = ACTIONS(826), + [aux_sym__newline_token1] = ACTIONS(826), + [sym__block_continuation] = ACTIONS(915), + [sym__block_quote_continuation] = ACTIONS(915), + [sym__block_quote_start] = ACTIONS(826), + [sym__indented_chunk_start] = ACTIONS(826), + [sym_atx_h1_marker] = ACTIONS(826), + [sym_atx_h2_marker] = ACTIONS(826), + [sym_atx_h3_marker] = ACTIONS(826), + [sym_atx_h4_marker] = ACTIONS(826), + [sym_atx_h5_marker] = ACTIONS(826), + [sym_atx_h6_marker] = ACTIONS(826), + [sym__thematic_break] = ACTIONS(826), + [sym__list_marker_minus] = ACTIONS(826), + [sym__list_marker_plus] = ACTIONS(826), + [sym__list_marker_star] = ACTIONS(826), + [sym__list_marker_parenthesis] = ACTIONS(826), + [sym__list_marker_dot] = ACTIONS(826), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(826), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(826), + [sym__list_marker_star_dont_interrupt] = ACTIONS(826), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(826), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(826), + [sym__fenced_code_block_start_backtick] = ACTIONS(826), + [sym__fenced_code_block_start_tilde] = ACTIONS(826), + [sym__blank_line_start] = ACTIONS(826), + [sym__code_span_start] = ACTIONS(826), + [sym__emphasis_open_star] = ACTIONS(826), + [sym__emphasis_open_underscore] = ACTIONS(826), + [sym__last_token_whitespace] = ACTIONS(915), + }, + [176] = { + [aux_sym__ignore_matching_tokens] = STATE(201), + [ts_builtin_sym_end] = 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), + [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(917), + [sym_numeric_character_reference] = ACTIONS(917), + [sym_uri_autolink] = ACTIONS(917), + [sym_email_autolink] = 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_continuation] = ACTIONS(109), + [sym__block_quote_continuation] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(917), + [sym__indented_chunk_start] = ACTIONS(917), + [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__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(917), + [sym__code_span_start] = ACTIONS(917), + [sym__emphasis_open_star] = ACTIONS(917), + [sym__emphasis_open_underscore] = ACTIONS(917), + [sym__last_token_whitespace] = ACTIONS(109), + }, + [177] = { + [aux_sym__ignore_matching_tokens] = STATE(201), + [ts_builtin_sym_end] = ACTIONS(826), + [anon_sym_BANG] = ACTIONS(826), + [anon_sym_DQUOTE] = ACTIONS(826), + [anon_sym_POUND] = ACTIONS(826), + [anon_sym_DOLLAR] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(828), + [anon_sym_SQUOTE] = ACTIONS(826), + [anon_sym_LPAREN] = ACTIONS(826), + [anon_sym_RPAREN] = ACTIONS(826), + [anon_sym_STAR] = ACTIONS(826), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_COMMA] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOT] = ACTIONS(826), + [anon_sym_SLASH] = ACTIONS(826), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_SEMI] = ACTIONS(826), + [anon_sym_LT] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(826), + [anon_sym_QMARK] = ACTIONS(826), + [anon_sym_AT] = ACTIONS(826), + [anon_sym_LBRACK] = ACTIONS(826), + [anon_sym_BSLASH] = ACTIONS(828), + [anon_sym_RBRACK] = ACTIONS(826), + [anon_sym_CARET] = ACTIONS(826), + [anon_sym__] = ACTIONS(826), + [anon_sym_BQUOTE] = ACTIONS(826), + [anon_sym_LBRACE] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_RBRACE] = ACTIONS(826), + [anon_sym_TILDE] = ACTIONS(826), + [aux_sym__html_block_1_token1] = ACTIONS(826), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(828), + [anon_sym_LT_QMARK] = ACTIONS(828), + [aux_sym__html_block_4_token1] = ACTIONS(828), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(826), + [aux_sym__html_block_6_token1] = ACTIONS(828), + [aux_sym__html_block_6_token2] = ACTIONS(826), + [sym__open_tag_html_block] = ACTIONS(826), + [sym__open_tag_html_block_newline] = ACTIONS(826), + [sym__closing_tag_html_block] = ACTIONS(826), + [sym__closing_tag_html_block_newline] = ACTIONS(826), + [sym_backslash_escape] = ACTIONS(826), + [sym_entity_reference] = ACTIONS(826), + [sym_numeric_character_reference] = ACTIONS(826), + [sym_uri_autolink] = ACTIONS(826), + [sym_email_autolink] = ACTIONS(826), + [sym__whitespace_ge_2] = ACTIONS(826), + [aux_sym__whitespace_token1] = ACTIONS(828), + [sym__word_no_digit] = ACTIONS(826), + [sym__digits] = ACTIONS(826), + [aux_sym__newline_token1] = ACTIONS(826), + [sym__block_continuation] = ACTIONS(109), + [sym__block_quote_continuation] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(826), + [sym__indented_chunk_start] = ACTIONS(826), + [sym_atx_h1_marker] = ACTIONS(826), + [sym_atx_h2_marker] = ACTIONS(826), + [sym_atx_h3_marker] = ACTIONS(826), + [sym_atx_h4_marker] = ACTIONS(826), + [sym_atx_h5_marker] = ACTIONS(826), + [sym_atx_h6_marker] = ACTIONS(826), + [sym__thematic_break] = ACTIONS(826), + [sym__list_marker_minus] = ACTIONS(826), + [sym__list_marker_plus] = ACTIONS(826), + [sym__list_marker_star] = ACTIONS(826), + [sym__list_marker_parenthesis] = ACTIONS(826), + [sym__list_marker_dot] = ACTIONS(826), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(826), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(826), + [sym__list_marker_star_dont_interrupt] = ACTIONS(826), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(826), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(826), + [sym__fenced_code_block_start_backtick] = ACTIONS(826), + [sym__fenced_code_block_start_tilde] = ACTIONS(826), + [sym__blank_line_start] = ACTIONS(826), + [sym__code_span_start] = ACTIONS(826), + [sym__emphasis_open_star] = ACTIONS(826), + [sym__emphasis_open_underscore] = ACTIONS(826), + [sym__last_token_whitespace] = ACTIONS(109), + }, + [178] = { + [aux_sym__ignore_matching_tokens] = STATE(201), + [ts_builtin_sym_end] = 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), + [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(921), + [sym_numeric_character_reference] = ACTIONS(921), + [sym_uri_autolink] = ACTIONS(921), + [sym_email_autolink] = 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(109), + [sym__block_quote_continuation] = ACTIONS(109), + [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__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__emphasis_open_star] = ACTIONS(921), + [sym__emphasis_open_underscore] = ACTIONS(921), + [sym__last_token_whitespace] = ACTIONS(109), + }, + [179] = { + [aux_sym__ignore_matching_tokens] = STATE(201), + [ts_builtin_sym_end] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_POUND] = ACTIONS(925), + [anon_sym_DOLLAR] = ACTIONS(925), + [anon_sym_PERCENT] = ACTIONS(925), + [anon_sym_AMP] = ACTIONS(927), + [anon_sym_SQUOTE] = ACTIONS(925), + [anon_sym_LPAREN] = ACTIONS(925), + [anon_sym_RPAREN] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_PLUS] = ACTIONS(925), + [anon_sym_COMMA] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_DOT] = ACTIONS(925), + [anon_sym_SLASH] = ACTIONS(925), + [anon_sym_COLON] = ACTIONS(925), + [anon_sym_SEMI] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(927), + [anon_sym_EQ] = ACTIONS(925), + [anon_sym_GT] = ACTIONS(925), + [anon_sym_QMARK] = ACTIONS(925), + [anon_sym_AT] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(925), + [anon_sym_BSLASH] = ACTIONS(927), + [anon_sym_RBRACK] = ACTIONS(925), + [anon_sym_CARET] = ACTIONS(925), + [anon_sym__] = ACTIONS(925), + [anon_sym_BQUOTE] = ACTIONS(925), + [anon_sym_LBRACE] = ACTIONS(925), + [anon_sym_PIPE] = ACTIONS(925), + [anon_sym_RBRACE] = ACTIONS(925), + [anon_sym_TILDE] = ACTIONS(925), + [aux_sym__html_block_1_token1] = ACTIONS(925), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(927), + [anon_sym_LT_QMARK] = ACTIONS(927), + [aux_sym__html_block_4_token1] = ACTIONS(927), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(925), + [aux_sym__html_block_6_token1] = ACTIONS(927), + [aux_sym__html_block_6_token2] = ACTIONS(925), + [sym__open_tag_html_block] = ACTIONS(925), + [sym__open_tag_html_block_newline] = ACTIONS(925), + [sym__closing_tag_html_block] = ACTIONS(925), + [sym__closing_tag_html_block_newline] = ACTIONS(925), + [sym_backslash_escape] = ACTIONS(925), + [sym_entity_reference] = ACTIONS(925), + [sym_numeric_character_reference] = ACTIONS(925), + [sym_uri_autolink] = ACTIONS(925), + [sym_email_autolink] = ACTIONS(925), + [sym__whitespace_ge_2] = ACTIONS(925), + [aux_sym__whitespace_token1] = ACTIONS(927), + [sym__word_no_digit] = ACTIONS(925), + [sym__digits] = ACTIONS(925), + [aux_sym__newline_token1] = ACTIONS(925), + [sym__block_continuation] = ACTIONS(109), + [sym__block_quote_continuation] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(925), + [sym__indented_chunk_start] = ACTIONS(925), + [sym_atx_h1_marker] = ACTIONS(925), + [sym_atx_h2_marker] = ACTIONS(925), + [sym_atx_h3_marker] = ACTIONS(925), + [sym_atx_h4_marker] = ACTIONS(925), + [sym_atx_h5_marker] = ACTIONS(925), + [sym_atx_h6_marker] = ACTIONS(925), + [sym__thematic_break] = ACTIONS(925), + [sym__list_marker_minus] = ACTIONS(925), + [sym__list_marker_plus] = ACTIONS(925), + [sym__list_marker_star] = ACTIONS(925), + [sym__list_marker_parenthesis] = ACTIONS(925), + [sym__list_marker_dot] = ACTIONS(925), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(925), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(925), + [sym__list_marker_star_dont_interrupt] = ACTIONS(925), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(925), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(925), + [sym__fenced_code_block_start_backtick] = ACTIONS(925), + [sym__fenced_code_block_start_tilde] = ACTIONS(925), + [sym__blank_line_start] = ACTIONS(925), + [sym__code_span_start] = ACTIONS(925), [sym__emphasis_open_star] = ACTIONS(925), - [sym__emphasis_open_underscore] = ACTIONS(928), - [sym__emphasis_close_star] = ACTIONS(931), + [sym__emphasis_open_underscore] = ACTIONS(925), + [sym__last_token_whitespace] = ACTIONS(109), + }, + [180] = { + [aux_sym__ignore_matching_tokens] = STATE(201), + [ts_builtin_sym_end] = ACTIONS(929), + [anon_sym_BANG] = ACTIONS(929), + [anon_sym_DQUOTE] = ACTIONS(929), + [anon_sym_POUND] = ACTIONS(929), + [anon_sym_DOLLAR] = ACTIONS(929), + [anon_sym_PERCENT] = ACTIONS(929), + [anon_sym_AMP] = ACTIONS(931), + [anon_sym_SQUOTE] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(929), + [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(931), + [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(931), + [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), + [aux_sym__html_block_1_token1] = ACTIONS(929), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(931), + [anon_sym_LT_QMARK] = ACTIONS(931), + [aux_sym__html_block_4_token1] = ACTIONS(931), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(929), + [aux_sym__html_block_6_token1] = ACTIONS(931), + [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_entity_reference] = ACTIONS(929), + [sym_numeric_character_reference] = ACTIONS(929), + [sym_uri_autolink] = ACTIONS(929), + [sym_email_autolink] = ACTIONS(929), + [sym__whitespace_ge_2] = ACTIONS(929), + [aux_sym__whitespace_token1] = ACTIONS(931), + [sym__word_no_digit] = ACTIONS(929), + [sym__digits] = ACTIONS(929), + [aux_sym__newline_token1] = ACTIONS(929), + [sym__block_continuation] = ACTIONS(109), + [sym__block_quote_continuation] = ACTIONS(109), + [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__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__last_token_whitespace] = ACTIONS(109), }, [181] = { - [aux_sym__ignore_matching_tokens] = STATE(202), - [ts_builtin_sym_end] = ACTIONS(870), - [anon_sym_BANG] = ACTIONS(870), - [anon_sym_DQUOTE] = ACTIONS(870), - [anon_sym_POUND] = ACTIONS(870), - [anon_sym_DOLLAR] = ACTIONS(870), - [anon_sym_PERCENT] = ACTIONS(870), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_SQUOTE] = ACTIONS(870), - [anon_sym_LPAREN] = ACTIONS(870), - [anon_sym_RPAREN] = ACTIONS(870), - [anon_sym_STAR] = ACTIONS(870), - [anon_sym_PLUS] = ACTIONS(870), - [anon_sym_COMMA] = ACTIONS(870), - [anon_sym_DASH] = ACTIONS(870), - [anon_sym_DOT] = ACTIONS(870), - [anon_sym_SLASH] = ACTIONS(870), - [anon_sym_COLON] = ACTIONS(870), - [anon_sym_SEMI] = ACTIONS(870), - [anon_sym_LT] = ACTIONS(872), - [anon_sym_EQ] = ACTIONS(870), - [anon_sym_GT] = ACTIONS(870), - [anon_sym_QMARK] = ACTIONS(870), - [anon_sym_AT] = ACTIONS(870), - [anon_sym_LBRACK] = ACTIONS(870), - [anon_sym_BSLASH] = ACTIONS(872), - [anon_sym_RBRACK] = ACTIONS(870), - [anon_sym_CARET] = ACTIONS(870), - [anon_sym__] = ACTIONS(870), - [anon_sym_BQUOTE] = ACTIONS(870), - [anon_sym_LBRACE] = ACTIONS(870), - [anon_sym_PIPE] = ACTIONS(870), - [anon_sym_RBRACE] = ACTIONS(870), - [anon_sym_TILDE] = ACTIONS(870), - [aux_sym__html_block_1_token1] = ACTIONS(870), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(872), - [anon_sym_LT_QMARK] = ACTIONS(872), - [aux_sym__html_block_4_token1] = ACTIONS(872), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(870), - [aux_sym__html_block_6_token1] = ACTIONS(872), - [aux_sym__html_block_6_token2] = ACTIONS(870), - [sym__open_tag_html_block] = ACTIONS(870), - [sym__open_tag_html_block_newline] = ACTIONS(870), - [sym__closing_tag_html_block] = ACTIONS(870), - [sym__closing_tag_html_block_newline] = ACTIONS(870), - [sym_backslash_escape] = ACTIONS(870), - [sym_entity_reference] = ACTIONS(870), - [sym_numeric_character_reference] = ACTIONS(870), - [sym_uri_autolink] = ACTIONS(870), - [sym_email_autolink] = ACTIONS(870), - [sym__whitespace_ge_2] = ACTIONS(870), - [aux_sym__whitespace_token1] = ACTIONS(872), - [sym__word_no_digit] = ACTIONS(870), - [sym__digits] = ACTIONS(870), - [aux_sym__newline_token1] = ACTIONS(870), - [sym__block_continuation] = ACTIONS(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(870), - [sym__indented_chunk_start] = ACTIONS(870), - [sym_atx_h1_marker] = ACTIONS(870), - [sym_atx_h2_marker] = ACTIONS(870), - [sym_atx_h3_marker] = ACTIONS(870), - [sym_atx_h4_marker] = ACTIONS(870), - [sym_atx_h5_marker] = ACTIONS(870), - [sym_atx_h6_marker] = ACTIONS(870), - [sym__thematic_break] = ACTIONS(870), - [sym__list_marker_minus] = ACTIONS(870), - [sym__list_marker_plus] = ACTIONS(870), - [sym__list_marker_star] = ACTIONS(870), - [sym__list_marker_parenthesis] = ACTIONS(870), - [sym__list_marker_dot] = ACTIONS(870), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(870), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(870), - [sym__list_marker_star_dont_interrupt] = ACTIONS(870), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(870), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(870), - [sym__fenced_code_block_start_backtick] = ACTIONS(870), - [sym__fenced_code_block_start_tilde] = ACTIONS(870), - [sym__blank_line_start] = ACTIONS(870), - [sym__code_span_start] = ACTIONS(870), - [sym__emphasis_open_star] = ACTIONS(870), - [sym__emphasis_open_underscore] = ACTIONS(870), - [sym__last_token_whitespace] = ACTIONS(111), - }, - [182] = { - [aux_sym__ignore_matching_tokens] = STATE(108), + [aux_sym__ignore_matching_tokens] = STATE(201), [ts_builtin_sym_end] = ACTIONS(933), [anon_sym_BANG] = ACTIONS(933), [anon_sym_DQUOTE] = ACTIONS(933), @@ -48296,8 +48218,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__word_no_digit] = ACTIONS(933), [sym__digits] = ACTIONS(933), [aux_sym__newline_token1] = ACTIONS(933), - [sym__block_continuation] = ACTIONS(937), - [sym__block_quote_continuation] = ACTIONS(937), + [sym__block_continuation] = ACTIONS(109), + [sym__block_quote_continuation] = ACTIONS(109), [sym__block_quote_start] = ACTIONS(933), [sym__indented_chunk_start] = ACTIONS(933), [sym_atx_h1_marker] = ACTIONS(933), @@ -48323,96 +48245,4430 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(933), [sym__emphasis_open_star] = ACTIONS(933), [sym__emphasis_open_underscore] = ACTIONS(933), - [sym__last_token_whitespace] = ACTIONS(937), + [sym__last_token_whitespace] = ACTIONS(109), + }, + [182] = { + [aux_sym__ignore_matching_tokens] = STATE(160), + [anon_sym_BANG] = ACTIONS(937), + [anon_sym_DQUOTE] = ACTIONS(937), + [anon_sym_POUND] = ACTIONS(937), + [anon_sym_DOLLAR] = ACTIONS(937), + [anon_sym_PERCENT] = ACTIONS(937), + [anon_sym_AMP] = ACTIONS(939), + [anon_sym_SQUOTE] = ACTIONS(937), + [anon_sym_LPAREN] = ACTIONS(937), + [anon_sym_RPAREN] = ACTIONS(937), + [anon_sym_STAR] = ACTIONS(937), + [anon_sym_PLUS] = ACTIONS(937), + [anon_sym_COMMA] = ACTIONS(937), + [anon_sym_DASH] = ACTIONS(937), + [anon_sym_DOT] = ACTIONS(937), + [anon_sym_SLASH] = ACTIONS(937), + [anon_sym_COLON] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(937), + [anon_sym_LT] = ACTIONS(939), + [anon_sym_EQ] = ACTIONS(937), + [anon_sym_GT] = ACTIONS(937), + [anon_sym_QMARK] = ACTIONS(937), + [anon_sym_AT] = ACTIONS(937), + [anon_sym_LBRACK] = ACTIONS(937), + [anon_sym_BSLASH] = ACTIONS(939), + [anon_sym_RBRACK] = ACTIONS(937), + [anon_sym_CARET] = ACTIONS(937), + [anon_sym__] = ACTIONS(937), + [anon_sym_BQUOTE] = ACTIONS(937), + [anon_sym_LBRACE] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(937), + [anon_sym_RBRACE] = ACTIONS(937), + [anon_sym_TILDE] = ACTIONS(937), + [aux_sym__html_block_1_token1] = ACTIONS(937), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(939), + [anon_sym_LT_QMARK] = ACTIONS(939), + [aux_sym__html_block_4_token1] = ACTIONS(939), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(937), + [aux_sym__html_block_6_token1] = ACTIONS(939), + [aux_sym__html_block_6_token2] = ACTIONS(937), + [sym__open_tag_html_block] = ACTIONS(937), + [sym__open_tag_html_block_newline] = ACTIONS(937), + [sym__closing_tag_html_block] = ACTIONS(937), + [sym__closing_tag_html_block_newline] = ACTIONS(937), + [sym_backslash_escape] = ACTIONS(937), + [sym_entity_reference] = ACTIONS(937), + [sym_numeric_character_reference] = ACTIONS(937), + [sym_uri_autolink] = ACTIONS(937), + [sym_email_autolink] = ACTIONS(937), + [sym__whitespace_ge_2] = ACTIONS(937), + [aux_sym__whitespace_token1] = ACTIONS(939), + [sym__word_no_digit] = ACTIONS(937), + [sym__digits] = ACTIONS(937), + [aux_sym__newline_token1] = ACTIONS(937), + [sym__block_close] = ACTIONS(937), + [sym__block_continuation] = ACTIONS(113), + [sym__block_quote_continuation] = ACTIONS(113), + [sym__block_quote_start] = ACTIONS(937), + [sym__indented_chunk_start] = ACTIONS(937), + [sym_atx_h1_marker] = ACTIONS(937), + [sym_atx_h2_marker] = ACTIONS(937), + [sym_atx_h3_marker] = ACTIONS(937), + [sym_atx_h4_marker] = ACTIONS(937), + [sym_atx_h5_marker] = ACTIONS(937), + [sym_atx_h6_marker] = ACTIONS(937), + [sym__thematic_break] = ACTIONS(937), + [sym__list_marker_minus] = ACTIONS(937), + [sym__list_marker_plus] = ACTIONS(937), + [sym__list_marker_star] = ACTIONS(937), + [sym__list_marker_parenthesis] = ACTIONS(937), + [sym__list_marker_dot] = ACTIONS(937), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(937), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(937), + [sym__list_marker_star_dont_interrupt] = ACTIONS(937), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(937), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(937), + [sym__fenced_code_block_start_backtick] = ACTIONS(937), + [sym__fenced_code_block_start_tilde] = ACTIONS(937), + [sym__blank_line_start] = ACTIONS(937), + [sym__code_span_start] = ACTIONS(937), + [sym__emphasis_open_star] = ACTIONS(937), + [sym__emphasis_open_underscore] = ACTIONS(937), + [sym__last_token_whitespace] = ACTIONS(113), }, [183] = { - [aux_sym__ignore_matching_tokens] = STATE(275), - [anon_sym_BANG] = ACTIONS(705), - [anon_sym_DQUOTE] = ACTIONS(705), - [anon_sym_POUND] = ACTIONS(705), - [anon_sym_DOLLAR] = ACTIONS(705), - [anon_sym_PERCENT] = ACTIONS(705), - [anon_sym_AMP] = ACTIONS(707), - [anon_sym_SQUOTE] = ACTIONS(705), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_RPAREN] = ACTIONS(705), - [anon_sym_STAR] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(705), - [anon_sym_COMMA] = ACTIONS(705), - [anon_sym_DASH] = ACTIONS(705), - [anon_sym_DOT] = ACTIONS(705), - [anon_sym_SLASH] = ACTIONS(705), - [anon_sym_COLON] = ACTIONS(705), - [anon_sym_SEMI] = ACTIONS(705), - [anon_sym_LT] = ACTIONS(707), - [anon_sym_EQ] = ACTIONS(705), - [anon_sym_GT] = ACTIONS(705), - [anon_sym_QMARK] = ACTIONS(705), - [anon_sym_AT] = ACTIONS(705), - [anon_sym_LBRACK] = ACTIONS(705), - [anon_sym_BSLASH] = ACTIONS(707), - [anon_sym_RBRACK] = ACTIONS(705), - [anon_sym_CARET] = ACTIONS(705), - [anon_sym__] = ACTIONS(705), - [anon_sym_BQUOTE] = ACTIONS(705), - [anon_sym_LBRACE] = ACTIONS(705), - [anon_sym_PIPE] = ACTIONS(705), - [anon_sym_RBRACE] = ACTIONS(705), - [anon_sym_TILDE] = ACTIONS(705), - [aux_sym__html_block_1_token1] = ACTIONS(705), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(707), - [anon_sym_LT_QMARK] = ACTIONS(707), - [aux_sym__html_block_4_token1] = ACTIONS(707), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(705), - [aux_sym__html_block_6_token1] = ACTIONS(707), - [aux_sym__html_block_6_token2] = ACTIONS(705), - [sym__open_tag_html_block] = ACTIONS(705), - [sym__open_tag_html_block_newline] = ACTIONS(705), - [sym__closing_tag_html_block] = ACTIONS(705), - [sym__closing_tag_html_block_newline] = ACTIONS(705), - [sym_backslash_escape] = ACTIONS(705), - [sym_entity_reference] = ACTIONS(705), - [sym_numeric_character_reference] = ACTIONS(705), - [sym_uri_autolink] = ACTIONS(705), - [sym_email_autolink] = ACTIONS(705), - [sym__whitespace_ge_2] = ACTIONS(705), - [aux_sym__whitespace_token1] = ACTIONS(707), - [sym__word_no_digit] = ACTIONS(705), - [sym__digits] = ACTIONS(705), - [aux_sym__newline_token1] = ACTIONS(705), - [sym__block_close] = ACTIONS(705), - [sym__block_continuation] = ACTIONS(125), - [sym__block_quote_continuation] = ACTIONS(125), - [sym__block_quote_start] = ACTIONS(705), - [sym__indented_chunk_start] = ACTIONS(705), - [sym_atx_h1_marker] = ACTIONS(705), - [sym_atx_h2_marker] = ACTIONS(705), - [sym_atx_h3_marker] = ACTIONS(705), - [sym_atx_h4_marker] = ACTIONS(705), - [sym_atx_h5_marker] = ACTIONS(705), - [sym_atx_h6_marker] = ACTIONS(705), - [sym__thematic_break] = ACTIONS(705), - [sym__list_marker_minus] = ACTIONS(705), - [sym__list_marker_plus] = ACTIONS(705), - [sym__list_marker_star] = ACTIONS(705), - [sym__list_marker_parenthesis] = ACTIONS(705), - [sym__list_marker_dot] = ACTIONS(705), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(705), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(705), - [sym__list_marker_star_dont_interrupt] = ACTIONS(705), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(705), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(705), - [sym__fenced_code_block_start_backtick] = ACTIONS(705), - [sym__fenced_code_block_start_tilde] = ACTIONS(705), - [sym__blank_line_start] = ACTIONS(705), - [sym__code_span_start] = ACTIONS(705), - [sym__emphasis_open_star] = ACTIONS(705), - [sym__emphasis_open_underscore] = ACTIONS(705), - [sym__last_token_whitespace] = ACTIONS(125), + [aux_sym__ignore_matching_tokens] = STATE(160), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_DQUOTE] = ACTIONS(941), + [anon_sym_POUND] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_PERCENT] = ACTIONS(941), + [anon_sym_AMP] = ACTIONS(943), + [anon_sym_SQUOTE] = ACTIONS(941), + [anon_sym_LPAREN] = ACTIONS(941), + [anon_sym_RPAREN] = ACTIONS(941), + [anon_sym_STAR] = ACTIONS(941), + [anon_sym_PLUS] = ACTIONS(941), + [anon_sym_COMMA] = ACTIONS(941), + [anon_sym_DASH] = ACTIONS(941), + [anon_sym_DOT] = ACTIONS(941), + [anon_sym_SLASH] = ACTIONS(941), + [anon_sym_COLON] = ACTIONS(941), + [anon_sym_SEMI] = ACTIONS(941), + [anon_sym_LT] = ACTIONS(943), + [anon_sym_EQ] = ACTIONS(941), + [anon_sym_GT] = ACTIONS(941), + [anon_sym_QMARK] = ACTIONS(941), + [anon_sym_AT] = ACTIONS(941), + [anon_sym_LBRACK] = ACTIONS(941), + [anon_sym_BSLASH] = ACTIONS(943), + [anon_sym_RBRACK] = ACTIONS(941), + [anon_sym_CARET] = ACTIONS(941), + [anon_sym__] = ACTIONS(941), + [anon_sym_BQUOTE] = ACTIONS(941), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_PIPE] = ACTIONS(941), + [anon_sym_RBRACE] = ACTIONS(941), + [anon_sym_TILDE] = ACTIONS(941), + [aux_sym__html_block_1_token1] = ACTIONS(941), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(943), + [anon_sym_LT_QMARK] = ACTIONS(943), + [aux_sym__html_block_4_token1] = ACTIONS(943), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(941), + [aux_sym__html_block_6_token1] = ACTIONS(943), + [aux_sym__html_block_6_token2] = ACTIONS(941), + [sym__open_tag_html_block] = ACTIONS(941), + [sym__open_tag_html_block_newline] = ACTIONS(941), + [sym__closing_tag_html_block] = ACTIONS(941), + [sym__closing_tag_html_block_newline] = ACTIONS(941), + [sym_backslash_escape] = ACTIONS(941), + [sym_entity_reference] = ACTIONS(941), + [sym_numeric_character_reference] = ACTIONS(941), + [sym_uri_autolink] = ACTIONS(941), + [sym_email_autolink] = ACTIONS(941), + [sym__whitespace_ge_2] = ACTIONS(941), + [aux_sym__whitespace_token1] = ACTIONS(943), + [sym__word_no_digit] = ACTIONS(941), + [sym__digits] = ACTIONS(941), + [aux_sym__newline_token1] = ACTIONS(941), + [sym__block_close] = ACTIONS(941), + [sym__block_continuation] = ACTIONS(113), + [sym__block_quote_continuation] = ACTIONS(113), + [sym__block_quote_start] = ACTIONS(941), + [sym__indented_chunk_start] = ACTIONS(941), + [sym_atx_h1_marker] = ACTIONS(941), + [sym_atx_h2_marker] = ACTIONS(941), + [sym_atx_h3_marker] = ACTIONS(941), + [sym_atx_h4_marker] = ACTIONS(941), + [sym_atx_h5_marker] = ACTIONS(941), + [sym_atx_h6_marker] = ACTIONS(941), + [sym__thematic_break] = ACTIONS(941), + [sym__list_marker_minus] = ACTIONS(941), + [sym__list_marker_plus] = ACTIONS(941), + [sym__list_marker_star] = ACTIONS(941), + [sym__list_marker_parenthesis] = ACTIONS(941), + [sym__list_marker_dot] = ACTIONS(941), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(941), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(941), + [sym__list_marker_star_dont_interrupt] = ACTIONS(941), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(941), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(941), + [sym__fenced_code_block_start_backtick] = ACTIONS(941), + [sym__fenced_code_block_start_tilde] = ACTIONS(941), + [sym__blank_line_start] = ACTIONS(941), + [sym__code_span_start] = ACTIONS(941), + [sym__emphasis_open_star] = ACTIONS(941), + [sym__emphasis_open_underscore] = ACTIONS(941), + [sym__last_token_whitespace] = ACTIONS(113), }, [184] = { - [aux_sym__ignore_matching_tokens] = STATE(202), - [ts_builtin_sym_end] = ACTIONS(933), + [aux_sym__ignore_matching_tokens] = STATE(182), + [anon_sym_BANG] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(945), + [anon_sym_POUND] = ACTIONS(945), + [anon_sym_DOLLAR] = ACTIONS(945), + [anon_sym_PERCENT] = ACTIONS(945), + [anon_sym_AMP] = ACTIONS(947), + [anon_sym_SQUOTE] = ACTIONS(945), + [anon_sym_LPAREN] = ACTIONS(945), + [anon_sym_RPAREN] = ACTIONS(945), + [anon_sym_STAR] = ACTIONS(945), + [anon_sym_PLUS] = ACTIONS(945), + [anon_sym_COMMA] = ACTIONS(945), + [anon_sym_DASH] = ACTIONS(945), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_SLASH] = ACTIONS(945), + [anon_sym_COLON] = ACTIONS(945), + [anon_sym_SEMI] = ACTIONS(945), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_EQ] = ACTIONS(945), + [anon_sym_GT] = ACTIONS(945), + [anon_sym_QMARK] = ACTIONS(945), + [anon_sym_AT] = ACTIONS(945), + [anon_sym_LBRACK] = ACTIONS(945), + [anon_sym_BSLASH] = ACTIONS(947), + [anon_sym_RBRACK] = ACTIONS(945), + [anon_sym_CARET] = ACTIONS(945), + [anon_sym__] = ACTIONS(945), + [anon_sym_BQUOTE] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(945), + [anon_sym_PIPE] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(945), + [anon_sym_TILDE] = ACTIONS(945), + [aux_sym__html_block_1_token1] = ACTIONS(945), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(947), + [anon_sym_LT_QMARK] = ACTIONS(947), + [aux_sym__html_block_4_token1] = ACTIONS(947), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(945), + [aux_sym__html_block_6_token1] = ACTIONS(947), + [aux_sym__html_block_6_token2] = ACTIONS(945), + [sym__open_tag_html_block] = ACTIONS(945), + [sym__open_tag_html_block_newline] = ACTIONS(945), + [sym__closing_tag_html_block] = ACTIONS(945), + [sym__closing_tag_html_block_newline] = ACTIONS(945), + [sym_backslash_escape] = ACTIONS(945), + [sym_entity_reference] = ACTIONS(945), + [sym_numeric_character_reference] = ACTIONS(945), + [sym_uri_autolink] = ACTIONS(945), + [sym_email_autolink] = ACTIONS(945), + [sym__whitespace_ge_2] = ACTIONS(945), + [aux_sym__whitespace_token1] = ACTIONS(947), + [sym__word_no_digit] = ACTIONS(945), + [sym__digits] = ACTIONS(945), + [aux_sym__newline_token1] = ACTIONS(945), + [sym__block_close] = ACTIONS(945), + [sym__block_continuation] = ACTIONS(949), + [sym__block_quote_continuation] = ACTIONS(949), + [sym__block_quote_start] = ACTIONS(945), + [sym__indented_chunk_start] = ACTIONS(945), + [sym_atx_h1_marker] = ACTIONS(945), + [sym_atx_h2_marker] = ACTIONS(945), + [sym_atx_h3_marker] = ACTIONS(945), + [sym_atx_h4_marker] = ACTIONS(945), + [sym_atx_h5_marker] = ACTIONS(945), + [sym_atx_h6_marker] = ACTIONS(945), + [sym__thematic_break] = ACTIONS(945), + [sym__list_marker_minus] = ACTIONS(945), + [sym__list_marker_plus] = ACTIONS(945), + [sym__list_marker_star] = ACTIONS(945), + [sym__list_marker_parenthesis] = ACTIONS(945), + [sym__list_marker_dot] = ACTIONS(945), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(945), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(945), + [sym__list_marker_star_dont_interrupt] = ACTIONS(945), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(945), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(945), + [sym__fenced_code_block_start_backtick] = ACTIONS(945), + [sym__fenced_code_block_start_tilde] = ACTIONS(945), + [sym__blank_line_start] = ACTIONS(945), + [sym__code_span_start] = ACTIONS(945), + [sym__emphasis_open_star] = ACTIONS(945), + [sym__emphasis_open_underscore] = ACTIONS(945), + [sym__last_token_whitespace] = ACTIONS(949), + }, + [185] = { + [aux_sym__ignore_matching_tokens] = STATE(262), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_DQUOTE] = ACTIONS(874), + [anon_sym_POUND] = ACTIONS(874), + [anon_sym_DOLLAR] = ACTIONS(874), + [anon_sym_PERCENT] = ACTIONS(874), + [anon_sym_AMP] = ACTIONS(876), + [anon_sym_SQUOTE] = ACTIONS(874), + [anon_sym_LPAREN] = ACTIONS(874), + [anon_sym_RPAREN] = ACTIONS(874), + [anon_sym_STAR] = ACTIONS(874), + [anon_sym_PLUS] = ACTIONS(874), + [anon_sym_COMMA] = ACTIONS(874), + [anon_sym_DASH] = ACTIONS(874), + [anon_sym_DOT] = ACTIONS(874), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_COLON] = ACTIONS(874), + [anon_sym_SEMI] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(876), + [anon_sym_EQ] = ACTIONS(874), + [anon_sym_GT] = ACTIONS(874), + [anon_sym_QMARK] = ACTIONS(874), + [anon_sym_AT] = ACTIONS(874), + [anon_sym_LBRACK] = ACTIONS(874), + [anon_sym_BSLASH] = ACTIONS(876), + [anon_sym_RBRACK] = ACTIONS(874), + [anon_sym_CARET] = ACTIONS(874), + [anon_sym__] = ACTIONS(874), + [anon_sym_BQUOTE] = ACTIONS(874), + [anon_sym_LBRACE] = ACTIONS(874), + [anon_sym_PIPE] = ACTIONS(874), + [anon_sym_RBRACE] = ACTIONS(874), + [anon_sym_TILDE] = ACTIONS(874), + [aux_sym__html_block_1_token1] = ACTIONS(874), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(876), + [anon_sym_LT_QMARK] = ACTIONS(876), + [aux_sym__html_block_4_token1] = ACTIONS(876), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(874), + [aux_sym__html_block_6_token1] = ACTIONS(876), + [aux_sym__html_block_6_token2] = ACTIONS(874), + [sym__open_tag_html_block] = ACTIONS(874), + [sym__open_tag_html_block_newline] = ACTIONS(874), + [sym__closing_tag_html_block] = ACTIONS(874), + [sym__closing_tag_html_block_newline] = ACTIONS(874), + [sym_backslash_escape] = ACTIONS(874), + [sym_entity_reference] = ACTIONS(874), + [sym_numeric_character_reference] = ACTIONS(874), + [sym_uri_autolink] = ACTIONS(874), + [sym_email_autolink] = ACTIONS(874), + [sym__whitespace_ge_2] = ACTIONS(874), + [aux_sym__whitespace_token1] = ACTIONS(876), + [sym__word_no_digit] = ACTIONS(874), + [sym__digits] = ACTIONS(874), + [aux_sym__newline_token1] = ACTIONS(874), + [sym__block_close] = ACTIONS(874), + [sym__block_continuation] = ACTIONS(951), + [sym__block_quote_continuation] = ACTIONS(951), + [sym__block_quote_start] = ACTIONS(874), + [sym__indented_chunk_start] = ACTIONS(874), + [sym_atx_h1_marker] = ACTIONS(874), + [sym_atx_h2_marker] = ACTIONS(874), + [sym_atx_h3_marker] = ACTIONS(874), + [sym_atx_h4_marker] = ACTIONS(874), + [sym_atx_h5_marker] = ACTIONS(874), + [sym_atx_h6_marker] = ACTIONS(874), + [sym__thematic_break] = ACTIONS(874), + [sym__list_marker_minus] = ACTIONS(874), + [sym__list_marker_plus] = ACTIONS(874), + [sym__list_marker_star] = ACTIONS(874), + [sym__list_marker_parenthesis] = ACTIONS(874), + [sym__list_marker_dot] = ACTIONS(874), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(874), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(874), + [sym__list_marker_star_dont_interrupt] = ACTIONS(874), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(874), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(874), + [sym__fenced_code_block_start_backtick] = ACTIONS(874), + [sym__fenced_code_block_start_tilde] = ACTIONS(874), + [sym__blank_line_start] = ACTIONS(874), + [sym__code_span_start] = ACTIONS(874), + [sym__emphasis_open_star] = ACTIONS(874), + [sym__emphasis_open_underscore] = ACTIONS(874), + [sym__last_token_whitespace] = ACTIONS(951), + }, + [186] = { + [aux_sym__ignore_matching_tokens] = STATE(149), + [anon_sym_BANG] = ACTIONS(953), + [anon_sym_DQUOTE] = ACTIONS(953), + [anon_sym_POUND] = ACTIONS(953), + [anon_sym_DOLLAR] = ACTIONS(953), + [anon_sym_PERCENT] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(955), + [anon_sym_SQUOTE] = ACTIONS(953), + [anon_sym_LPAREN] = ACTIONS(953), + [anon_sym_RPAREN] = ACTIONS(953), + [anon_sym_STAR] = ACTIONS(953), + [anon_sym_PLUS] = ACTIONS(953), + [anon_sym_COMMA] = ACTIONS(953), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_DOT] = ACTIONS(953), + [anon_sym_SLASH] = ACTIONS(953), + [anon_sym_COLON] = ACTIONS(953), + [anon_sym_SEMI] = ACTIONS(953), + [anon_sym_LT] = ACTIONS(955), + [anon_sym_EQ] = ACTIONS(953), + [anon_sym_GT] = ACTIONS(953), + [anon_sym_QMARK] = ACTIONS(953), + [anon_sym_AT] = ACTIONS(953), + [anon_sym_LBRACK] = ACTIONS(953), + [anon_sym_BSLASH] = ACTIONS(955), + [anon_sym_RBRACK] = ACTIONS(953), + [anon_sym_CARET] = ACTIONS(953), + [anon_sym__] = ACTIONS(953), + [anon_sym_BQUOTE] = ACTIONS(953), + [anon_sym_LBRACE] = ACTIONS(953), + [anon_sym_PIPE] = ACTIONS(953), + [anon_sym_RBRACE] = ACTIONS(953), + [anon_sym_TILDE] = ACTIONS(953), + [aux_sym__html_block_1_token1] = ACTIONS(953), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(955), + [anon_sym_LT_QMARK] = ACTIONS(955), + [aux_sym__html_block_4_token1] = ACTIONS(955), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(953), + [aux_sym__html_block_6_token1] = ACTIONS(955), + [aux_sym__html_block_6_token2] = ACTIONS(953), + [sym__open_tag_html_block] = ACTIONS(953), + [sym__open_tag_html_block_newline] = ACTIONS(953), + [sym__closing_tag_html_block] = ACTIONS(953), + [sym__closing_tag_html_block_newline] = ACTIONS(953), + [sym_backslash_escape] = ACTIONS(953), + [sym_entity_reference] = ACTIONS(953), + [sym_numeric_character_reference] = ACTIONS(953), + [sym_uri_autolink] = ACTIONS(953), + [sym_email_autolink] = ACTIONS(953), + [sym__whitespace_ge_2] = ACTIONS(953), + [aux_sym__whitespace_token1] = ACTIONS(955), + [sym__word_no_digit] = ACTIONS(953), + [sym__digits] = ACTIONS(953), + [aux_sym__newline_token1] = ACTIONS(953), + [sym__block_close] = ACTIONS(953), + [sym__block_continuation] = ACTIONS(957), + [sym__block_quote_continuation] = ACTIONS(957), + [sym__block_quote_start] = ACTIONS(953), + [sym__indented_chunk_start] = ACTIONS(953), + [sym_atx_h1_marker] = ACTIONS(953), + [sym_atx_h2_marker] = ACTIONS(953), + [sym_atx_h3_marker] = ACTIONS(953), + [sym_atx_h4_marker] = ACTIONS(953), + [sym_atx_h5_marker] = ACTIONS(953), + [sym_atx_h6_marker] = ACTIONS(953), + [sym__thematic_break] = ACTIONS(953), + [sym__list_marker_minus] = ACTIONS(953), + [sym__list_marker_plus] = ACTIONS(953), + [sym__list_marker_star] = ACTIONS(953), + [sym__list_marker_parenthesis] = ACTIONS(953), + [sym__list_marker_dot] = ACTIONS(953), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(953), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(953), + [sym__list_marker_star_dont_interrupt] = ACTIONS(953), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(953), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(953), + [sym__fenced_code_block_start_backtick] = ACTIONS(953), + [sym__fenced_code_block_start_tilde] = ACTIONS(953), + [sym__blank_line_start] = ACTIONS(953), + [sym__code_span_start] = ACTIONS(953), + [sym__emphasis_open_star] = ACTIONS(953), + [sym__emphasis_open_underscore] = ACTIONS(953), + [sym__last_token_whitespace] = ACTIONS(957), + }, + [187] = { + [aux_sym__ignore_matching_tokens] = STATE(151), + [anon_sym_BANG] = ACTIONS(959), + [anon_sym_DQUOTE] = ACTIONS(959), + [anon_sym_POUND] = ACTIONS(959), + [anon_sym_DOLLAR] = ACTIONS(959), + [anon_sym_PERCENT] = ACTIONS(959), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_SQUOTE] = ACTIONS(959), + [anon_sym_LPAREN] = ACTIONS(959), + [anon_sym_RPAREN] = ACTIONS(959), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_COMMA] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_DOT] = ACTIONS(959), + [anon_sym_SLASH] = ACTIONS(959), + [anon_sym_COLON] = ACTIONS(959), + [anon_sym_SEMI] = ACTIONS(959), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(959), + [anon_sym_GT] = ACTIONS(959), + [anon_sym_QMARK] = ACTIONS(959), + [anon_sym_AT] = ACTIONS(959), + [anon_sym_LBRACK] = ACTIONS(959), + [anon_sym_BSLASH] = ACTIONS(961), + [anon_sym_RBRACK] = ACTIONS(959), + [anon_sym_CARET] = ACTIONS(959), + [anon_sym__] = ACTIONS(959), + [anon_sym_BQUOTE] = ACTIONS(959), + [anon_sym_LBRACE] = ACTIONS(959), + [anon_sym_PIPE] = ACTIONS(959), + [anon_sym_RBRACE] = ACTIONS(959), + [anon_sym_TILDE] = ACTIONS(959), + [aux_sym__html_block_1_token1] = ACTIONS(959), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(961), + [anon_sym_LT_QMARK] = ACTIONS(961), + [aux_sym__html_block_4_token1] = ACTIONS(961), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(959), + [aux_sym__html_block_6_token1] = ACTIONS(961), + [aux_sym__html_block_6_token2] = ACTIONS(959), + [sym__open_tag_html_block] = ACTIONS(959), + [sym__open_tag_html_block_newline] = ACTIONS(959), + [sym__closing_tag_html_block] = ACTIONS(959), + [sym__closing_tag_html_block_newline] = ACTIONS(959), + [sym_backslash_escape] = ACTIONS(959), + [sym_entity_reference] = ACTIONS(959), + [sym_numeric_character_reference] = ACTIONS(959), + [sym_uri_autolink] = ACTIONS(959), + [sym_email_autolink] = ACTIONS(959), + [sym__whitespace_ge_2] = ACTIONS(959), + [aux_sym__whitespace_token1] = ACTIONS(961), + [sym__word_no_digit] = ACTIONS(959), + [sym__digits] = ACTIONS(959), + [aux_sym__newline_token1] = ACTIONS(959), + [sym__block_close] = ACTIONS(959), + [sym__block_continuation] = ACTIONS(963), + [sym__block_quote_continuation] = ACTIONS(963), + [sym__block_quote_start] = ACTIONS(959), + [sym__indented_chunk_start] = ACTIONS(959), + [sym_atx_h1_marker] = ACTIONS(959), + [sym_atx_h2_marker] = ACTIONS(959), + [sym_atx_h3_marker] = ACTIONS(959), + [sym_atx_h4_marker] = ACTIONS(959), + [sym_atx_h5_marker] = ACTIONS(959), + [sym_atx_h6_marker] = ACTIONS(959), + [sym__thematic_break] = ACTIONS(959), + [sym__list_marker_minus] = ACTIONS(959), + [sym__list_marker_plus] = ACTIONS(959), + [sym__list_marker_star] = ACTIONS(959), + [sym__list_marker_parenthesis] = ACTIONS(959), + [sym__list_marker_dot] = ACTIONS(959), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(959), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(959), + [sym__list_marker_star_dont_interrupt] = ACTIONS(959), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(959), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(959), + [sym__fenced_code_block_start_backtick] = ACTIONS(959), + [sym__fenced_code_block_start_tilde] = ACTIONS(959), + [sym__blank_line_start] = ACTIONS(959), + [sym__code_span_start] = ACTIONS(959), + [sym__emphasis_open_star] = ACTIONS(959), + [sym__emphasis_open_underscore] = ACTIONS(959), + [sym__last_token_whitespace] = ACTIONS(963), + }, + [188] = { + [aux_sym__ignore_matching_tokens] = STATE(160), + [anon_sym_BANG] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(945), + [anon_sym_POUND] = ACTIONS(945), + [anon_sym_DOLLAR] = ACTIONS(945), + [anon_sym_PERCENT] = ACTIONS(945), + [anon_sym_AMP] = ACTIONS(947), + [anon_sym_SQUOTE] = ACTIONS(945), + [anon_sym_LPAREN] = ACTIONS(945), + [anon_sym_RPAREN] = ACTIONS(945), + [anon_sym_STAR] = ACTIONS(945), + [anon_sym_PLUS] = ACTIONS(945), + [anon_sym_COMMA] = ACTIONS(945), + [anon_sym_DASH] = ACTIONS(945), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_SLASH] = ACTIONS(945), + [anon_sym_COLON] = ACTIONS(945), + [anon_sym_SEMI] = ACTIONS(945), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_EQ] = ACTIONS(945), + [anon_sym_GT] = ACTIONS(945), + [anon_sym_QMARK] = ACTIONS(945), + [anon_sym_AT] = ACTIONS(945), + [anon_sym_LBRACK] = ACTIONS(945), + [anon_sym_BSLASH] = ACTIONS(947), + [anon_sym_RBRACK] = ACTIONS(945), + [anon_sym_CARET] = ACTIONS(945), + [anon_sym__] = ACTIONS(945), + [anon_sym_BQUOTE] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(945), + [anon_sym_PIPE] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(945), + [anon_sym_TILDE] = ACTIONS(945), + [aux_sym__html_block_1_token1] = ACTIONS(945), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(947), + [anon_sym_LT_QMARK] = ACTIONS(947), + [aux_sym__html_block_4_token1] = ACTIONS(947), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(945), + [aux_sym__html_block_6_token1] = ACTIONS(947), + [aux_sym__html_block_6_token2] = ACTIONS(945), + [sym__open_tag_html_block] = ACTIONS(945), + [sym__open_tag_html_block_newline] = ACTIONS(945), + [sym__closing_tag_html_block] = ACTIONS(945), + [sym__closing_tag_html_block_newline] = ACTIONS(945), + [sym_backslash_escape] = ACTIONS(945), + [sym_entity_reference] = ACTIONS(945), + [sym_numeric_character_reference] = ACTIONS(945), + [sym_uri_autolink] = ACTIONS(945), + [sym_email_autolink] = ACTIONS(945), + [sym__whitespace_ge_2] = ACTIONS(945), + [aux_sym__whitespace_token1] = ACTIONS(947), + [sym__word_no_digit] = ACTIONS(945), + [sym__digits] = ACTIONS(945), + [aux_sym__newline_token1] = ACTIONS(945), + [sym__block_close] = ACTIONS(945), + [sym__block_continuation] = ACTIONS(113), + [sym__block_quote_continuation] = ACTIONS(113), + [sym__block_quote_start] = ACTIONS(945), + [sym__indented_chunk_start] = ACTIONS(945), + [sym_atx_h1_marker] = ACTIONS(945), + [sym_atx_h2_marker] = ACTIONS(945), + [sym_atx_h3_marker] = ACTIONS(945), + [sym_atx_h4_marker] = ACTIONS(945), + [sym_atx_h5_marker] = ACTIONS(945), + [sym_atx_h6_marker] = ACTIONS(945), + [sym__thematic_break] = ACTIONS(945), + [sym__list_marker_minus] = ACTIONS(945), + [sym__list_marker_plus] = ACTIONS(945), + [sym__list_marker_star] = ACTIONS(945), + [sym__list_marker_parenthesis] = ACTIONS(945), + [sym__list_marker_dot] = ACTIONS(945), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(945), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(945), + [sym__list_marker_star_dont_interrupt] = ACTIONS(945), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(945), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(945), + [sym__fenced_code_block_start_backtick] = ACTIONS(945), + [sym__fenced_code_block_start_tilde] = ACTIONS(945), + [sym__blank_line_start] = ACTIONS(945), + [sym__code_span_start] = ACTIONS(945), + [sym__emphasis_open_star] = ACTIONS(945), + [sym__emphasis_open_underscore] = ACTIONS(945), + [sym__last_token_whitespace] = ACTIONS(113), + }, + [189] = { + [aux_sym__ignore_matching_tokens] = STATE(183), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_DQUOTE] = ACTIONS(965), + [anon_sym_POUND] = ACTIONS(965), + [anon_sym_DOLLAR] = ACTIONS(965), + [anon_sym_PERCENT] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(967), + [anon_sym_SQUOTE] = ACTIONS(965), + [anon_sym_LPAREN] = ACTIONS(965), + [anon_sym_RPAREN] = ACTIONS(965), + [anon_sym_STAR] = ACTIONS(965), + [anon_sym_PLUS] = ACTIONS(965), + [anon_sym_COMMA] = ACTIONS(965), + [anon_sym_DASH] = ACTIONS(965), + [anon_sym_DOT] = ACTIONS(965), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_COLON] = ACTIONS(965), + [anon_sym_SEMI] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(967), + [anon_sym_EQ] = ACTIONS(965), + [anon_sym_GT] = ACTIONS(965), + [anon_sym_QMARK] = ACTIONS(965), + [anon_sym_AT] = ACTIONS(965), + [anon_sym_LBRACK] = ACTIONS(965), + [anon_sym_BSLASH] = ACTIONS(967), + [anon_sym_RBRACK] = ACTIONS(965), + [anon_sym_CARET] = ACTIONS(965), + [anon_sym__] = ACTIONS(965), + [anon_sym_BQUOTE] = ACTIONS(965), + [anon_sym_LBRACE] = ACTIONS(965), + [anon_sym_PIPE] = ACTIONS(965), + [anon_sym_RBRACE] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(965), + [aux_sym__html_block_1_token1] = ACTIONS(965), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(967), + [anon_sym_LT_QMARK] = ACTIONS(967), + [aux_sym__html_block_4_token1] = ACTIONS(967), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(965), + [aux_sym__html_block_6_token1] = ACTIONS(967), + [aux_sym__html_block_6_token2] = ACTIONS(965), + [sym__open_tag_html_block] = ACTIONS(965), + [sym__open_tag_html_block_newline] = ACTIONS(965), + [sym__closing_tag_html_block] = ACTIONS(965), + [sym__closing_tag_html_block_newline] = ACTIONS(965), + [sym_backslash_escape] = ACTIONS(965), + [sym_entity_reference] = ACTIONS(965), + [sym_numeric_character_reference] = ACTIONS(965), + [sym_uri_autolink] = ACTIONS(965), + [sym_email_autolink] = ACTIONS(965), + [sym__whitespace_ge_2] = ACTIONS(965), + [aux_sym__whitespace_token1] = ACTIONS(967), + [sym__word_no_digit] = ACTIONS(965), + [sym__digits] = ACTIONS(965), + [aux_sym__newline_token1] = ACTIONS(965), + [sym__block_close] = ACTIONS(965), + [sym__block_continuation] = ACTIONS(969), + [sym__block_quote_continuation] = ACTIONS(969), + [sym__block_quote_start] = ACTIONS(965), + [sym__indented_chunk_start] = ACTIONS(965), + [sym_atx_h1_marker] = ACTIONS(965), + [sym_atx_h2_marker] = ACTIONS(965), + [sym_atx_h3_marker] = ACTIONS(965), + [sym_atx_h4_marker] = ACTIONS(965), + [sym_atx_h5_marker] = ACTIONS(965), + [sym_atx_h6_marker] = ACTIONS(965), + [sym__thematic_break] = ACTIONS(965), + [sym__list_marker_minus] = ACTIONS(965), + [sym__list_marker_plus] = ACTIONS(965), + [sym__list_marker_star] = ACTIONS(965), + [sym__list_marker_parenthesis] = ACTIONS(965), + [sym__list_marker_dot] = ACTIONS(965), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(965), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(965), + [sym__list_marker_star_dont_interrupt] = ACTIONS(965), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(965), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(965), + [sym__fenced_code_block_start_backtick] = ACTIONS(965), + [sym__fenced_code_block_start_tilde] = ACTIONS(965), + [sym__blank_line_start] = ACTIONS(965), + [sym__code_span_start] = ACTIONS(965), + [sym__emphasis_open_star] = ACTIONS(965), + [sym__emphasis_open_underscore] = ACTIONS(965), + [sym__last_token_whitespace] = ACTIONS(969), + }, + [190] = { + [sym__soft_line_break] = STATE(825), + [sym__paragraph_end_newline] = STATE(342), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), + [sym__whitespace] = STATE(825), + [sym__word] = STATE(825), + [sym__newline] = STATE(89), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(290), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [anon_sym_BANG] = ACTIONS(5), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(9), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(11), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(971), + [anon_sym_BSLASH] = ACTIONS(15), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(973), + [anon_sym_LT_QMARK] = ACTIONS(975), + [aux_sym__html_block_4_token1] = ACTIONS(977), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(979), + [sym_backslash_escape] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym__whitespace_ge_2] = ACTIONS(981), + [aux_sym__whitespace_token1] = ACTIONS(983), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), + [aux_sym__newline_token1] = ACTIONS(985), + [sym__code_span_start] = ACTIONS(69), + [sym__emphasis_open_star] = ACTIONS(71), + [sym__emphasis_open_underscore] = ACTIONS(73), + }, + [191] = { + [aux_sym__ignore_matching_tokens] = STATE(160), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_DQUOTE] = ACTIONS(965), + [anon_sym_POUND] = ACTIONS(965), + [anon_sym_DOLLAR] = ACTIONS(965), + [anon_sym_PERCENT] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(967), + [anon_sym_SQUOTE] = ACTIONS(965), + [anon_sym_LPAREN] = ACTIONS(965), + [anon_sym_RPAREN] = ACTIONS(965), + [anon_sym_STAR] = ACTIONS(965), + [anon_sym_PLUS] = ACTIONS(965), + [anon_sym_COMMA] = ACTIONS(965), + [anon_sym_DASH] = ACTIONS(965), + [anon_sym_DOT] = ACTIONS(965), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_COLON] = ACTIONS(965), + [anon_sym_SEMI] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(967), + [anon_sym_EQ] = ACTIONS(965), + [anon_sym_GT] = ACTIONS(965), + [anon_sym_QMARK] = ACTIONS(965), + [anon_sym_AT] = ACTIONS(965), + [anon_sym_LBRACK] = ACTIONS(965), + [anon_sym_BSLASH] = ACTIONS(967), + [anon_sym_RBRACK] = ACTIONS(965), + [anon_sym_CARET] = ACTIONS(965), + [anon_sym__] = ACTIONS(965), + [anon_sym_BQUOTE] = ACTIONS(965), + [anon_sym_LBRACE] = ACTIONS(965), + [anon_sym_PIPE] = ACTIONS(965), + [anon_sym_RBRACE] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(965), + [aux_sym__html_block_1_token1] = ACTIONS(965), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(967), + [anon_sym_LT_QMARK] = ACTIONS(967), + [aux_sym__html_block_4_token1] = ACTIONS(967), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(965), + [aux_sym__html_block_6_token1] = ACTIONS(967), + [aux_sym__html_block_6_token2] = ACTIONS(965), + [sym__open_tag_html_block] = ACTIONS(965), + [sym__open_tag_html_block_newline] = ACTIONS(965), + [sym__closing_tag_html_block] = ACTIONS(965), + [sym__closing_tag_html_block_newline] = ACTIONS(965), + [sym_backslash_escape] = ACTIONS(965), + [sym_entity_reference] = ACTIONS(965), + [sym_numeric_character_reference] = ACTIONS(965), + [sym_uri_autolink] = ACTIONS(965), + [sym_email_autolink] = ACTIONS(965), + [sym__whitespace_ge_2] = ACTIONS(965), + [aux_sym__whitespace_token1] = ACTIONS(967), + [sym__word_no_digit] = ACTIONS(965), + [sym__digits] = ACTIONS(965), + [aux_sym__newline_token1] = ACTIONS(965), + [sym__block_close] = ACTIONS(965), + [sym__block_continuation] = ACTIONS(113), + [sym__block_quote_continuation] = ACTIONS(113), + [sym__block_quote_start] = ACTIONS(965), + [sym__indented_chunk_start] = ACTIONS(965), + [sym_atx_h1_marker] = ACTIONS(965), + [sym_atx_h2_marker] = ACTIONS(965), + [sym_atx_h3_marker] = ACTIONS(965), + [sym_atx_h4_marker] = ACTIONS(965), + [sym_atx_h5_marker] = ACTIONS(965), + [sym_atx_h6_marker] = ACTIONS(965), + [sym__thematic_break] = ACTIONS(965), + [sym__list_marker_minus] = ACTIONS(965), + [sym__list_marker_plus] = ACTIONS(965), + [sym__list_marker_star] = ACTIONS(965), + [sym__list_marker_parenthesis] = ACTIONS(965), + [sym__list_marker_dot] = ACTIONS(965), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(965), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(965), + [sym__list_marker_star_dont_interrupt] = ACTIONS(965), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(965), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(965), + [sym__fenced_code_block_start_backtick] = ACTIONS(965), + [sym__fenced_code_block_start_tilde] = ACTIONS(965), + [sym__blank_line_start] = ACTIONS(965), + [sym__code_span_start] = ACTIONS(965), + [sym__emphasis_open_star] = ACTIONS(965), + [sym__emphasis_open_underscore] = ACTIONS(965), + [sym__last_token_whitespace] = ACTIONS(113), + }, + [192] = { + [sym__soft_line_break] = STATE(253), + [sym__link_text] = STATE(2124), + [sym__link_text_non_empty] = STATE(712), + [sym_shortcut_link] = STATE(253), + [sym_full_reference_link] = STATE(253), + [sym_collapsed_reference_link] = STATE(253), + [sym_inline_link] = STATE(253), + [sym_image] = STATE(253), + [sym__image_inline_link] = STATE(713), + [sym__image_shortcut_link] = STATE(713), + [sym__image_full_reference_link] = STATE(713), + [sym__image_collapsed_reference_link] = STATE(713), + [sym__image_description] = STATE(2120), + [sym__image_description_non_empty] = STATE(714), + [sym_html_tag] = STATE(253), + [sym__open_tag] = STATE(715), + [sym__closing_tag] = STATE(715), + [sym__html_comment] = STATE(715), + [sym__processing_instruction] = STATE(715), + [sym__declaration] = STATE(715), + [sym__cdata_section] = STATE(715), + [sym_hard_line_break] = STATE(253), + [sym__whitespace] = STATE(253), + [sym__word] = STATE(253), + [sym__newline] = STATE(2144), + [sym__inline_element_no_star] = STATE(253), + [aux_sym__inline_no_star] = STATE(253), + [sym__text_inline_no_star] = STATE(253), + [sym__emphasis_star] = STATE(811), + [sym__strong_emphasis_star] = STATE(253), + [sym__emphasis_underscore] = STATE(811), + [sym__strong_emphasis_underscore] = STATE(253), + [sym__code_span] = STATE(253), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_DQUOTE] = ACTIONS(599), + [anon_sym_POUND] = ACTIONS(599), + [anon_sym_DOLLAR] = ACTIONS(599), + [anon_sym_PERCENT] = ACTIONS(599), + [anon_sym_AMP] = ACTIONS(601), + [anon_sym_SQUOTE] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_RPAREN] = ACTIONS(599), + [anon_sym_STAR] = ACTIONS(599), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_COMMA] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_DOT] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(599), + [anon_sym_COLON] = ACTIONS(599), + [anon_sym_SEMI] = ACTIONS(599), + [anon_sym_LT] = ACTIONS(603), + [anon_sym_EQ] = ACTIONS(599), + [anon_sym_GT] = ACTIONS(599), + [anon_sym_QMARK] = ACTIONS(599), + [anon_sym_AT] = ACTIONS(599), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_BSLASH] = ACTIONS(607), + [anon_sym_RBRACK] = ACTIONS(599), + [anon_sym_CARET] = ACTIONS(599), + [anon_sym__] = ACTIONS(599), + [anon_sym_BQUOTE] = ACTIONS(599), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_PIPE] = ACTIONS(599), + [anon_sym_RBRACE] = ACTIONS(599), + [anon_sym_TILDE] = ACTIONS(599), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(609), + [anon_sym_LT_QMARK] = ACTIONS(611), + [aux_sym__html_block_4_token1] = ACTIONS(613), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(615), + [sym_backslash_escape] = ACTIONS(617), + [sym_entity_reference] = ACTIONS(617), + [sym_numeric_character_reference] = ACTIONS(617), + [sym_uri_autolink] = ACTIONS(617), + [sym_email_autolink] = ACTIONS(617), + [sym__whitespace_ge_2] = ACTIONS(619), + [aux_sym__whitespace_token1] = ACTIONS(621), + [sym__word_no_digit] = ACTIONS(617), + [sym__digits] = ACTIONS(617), + [aux_sym__newline_token1] = ACTIONS(41), + [sym__code_span_start] = ACTIONS(623), + [sym__emphasis_open_star] = ACTIONS(625), + [sym__emphasis_open_underscore] = ACTIONS(627), + [sym__emphasis_close_star] = ACTIONS(987), + }, + [193] = { + [aux_sym__ignore_matching_tokens] = STATE(201), + [ts_builtin_sym_end] = ACTIONS(593), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_DQUOTE] = ACTIONS(593), + [anon_sym_POUND] = ACTIONS(593), + [anon_sym_DOLLAR] = ACTIONS(593), + [anon_sym_PERCENT] = ACTIONS(593), + [anon_sym_AMP] = ACTIONS(595), + [anon_sym_SQUOTE] = ACTIONS(593), + [anon_sym_LPAREN] = ACTIONS(593), + [anon_sym_RPAREN] = ACTIONS(593), + [anon_sym_STAR] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_COMMA] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_DOT] = ACTIONS(593), + [anon_sym_SLASH] = ACTIONS(593), + [anon_sym_COLON] = ACTIONS(593), + [anon_sym_SEMI] = ACTIONS(593), + [anon_sym_LT] = ACTIONS(595), + [anon_sym_EQ] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(593), + [anon_sym_LBRACK] = ACTIONS(593), + [anon_sym_BSLASH] = ACTIONS(595), + [anon_sym_RBRACK] = ACTIONS(593), + [anon_sym_CARET] = ACTIONS(593), + [anon_sym__] = ACTIONS(593), + [anon_sym_BQUOTE] = ACTIONS(593), + [anon_sym_LBRACE] = ACTIONS(593), + [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_RBRACE] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(593), + [aux_sym__html_block_1_token1] = ACTIONS(593), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(595), + [anon_sym_LT_QMARK] = ACTIONS(595), + [aux_sym__html_block_4_token1] = ACTIONS(595), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(593), + [aux_sym__html_block_6_token1] = ACTIONS(595), + [aux_sym__html_block_6_token2] = ACTIONS(593), + [sym__open_tag_html_block] = ACTIONS(593), + [sym__open_tag_html_block_newline] = ACTIONS(593), + [sym__closing_tag_html_block] = ACTIONS(593), + [sym__closing_tag_html_block_newline] = ACTIONS(593), + [sym_backslash_escape] = ACTIONS(593), + [sym_entity_reference] = ACTIONS(593), + [sym_numeric_character_reference] = ACTIONS(593), + [sym_uri_autolink] = ACTIONS(593), + [sym_email_autolink] = ACTIONS(593), + [sym__whitespace_ge_2] = ACTIONS(593), + [aux_sym__whitespace_token1] = ACTIONS(595), + [sym__word_no_digit] = ACTIONS(593), + [sym__digits] = ACTIONS(593), + [aux_sym__newline_token1] = ACTIONS(593), + [sym__block_continuation] = ACTIONS(109), + [sym__block_quote_continuation] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(593), + [sym__indented_chunk_start] = ACTIONS(593), + [sym_atx_h1_marker] = ACTIONS(593), + [sym_atx_h2_marker] = ACTIONS(593), + [sym_atx_h3_marker] = ACTIONS(593), + [sym_atx_h4_marker] = ACTIONS(593), + [sym_atx_h5_marker] = ACTIONS(593), + [sym_atx_h6_marker] = ACTIONS(593), + [sym__thematic_break] = ACTIONS(593), + [sym__list_marker_minus] = ACTIONS(593), + [sym__list_marker_plus] = ACTIONS(593), + [sym__list_marker_star] = ACTIONS(593), + [sym__list_marker_parenthesis] = ACTIONS(593), + [sym__list_marker_dot] = ACTIONS(593), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(593), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(593), + [sym__list_marker_star_dont_interrupt] = ACTIONS(593), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(593), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(593), + [sym__fenced_code_block_start_backtick] = ACTIONS(593), + [sym__fenced_code_block_start_tilde] = ACTIONS(593), + [sym__blank_line_start] = ACTIONS(593), + [sym__code_span_start] = ACTIONS(593), + [sym__emphasis_open_star] = ACTIONS(593), + [sym__emphasis_open_underscore] = ACTIONS(593), + [sym__last_token_whitespace] = ACTIONS(109), + }, + [194] = { + [aux_sym__ignore_matching_tokens] = STATE(133), + [ts_builtin_sym_end] = ACTIONS(631), + [anon_sym_BANG] = ACTIONS(631), + [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(633), + [anon_sym_EQ] = ACTIONS(631), + [anon_sym_GT] = ACTIONS(631), + [anon_sym_QMARK] = ACTIONS(631), + [anon_sym_AT] = ACTIONS(631), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_BSLASH] = ACTIONS(633), + [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), + [aux_sym__html_block_1_token1] = ACTIONS(631), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(633), + [anon_sym_LT_QMARK] = ACTIONS(633), + [aux_sym__html_block_4_token1] = ACTIONS(633), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(631), + [aux_sym__html_block_6_token1] = ACTIONS(633), + [aux_sym__html_block_6_token2] = ACTIONS(631), + [sym__open_tag_html_block] = ACTIONS(631), + [sym__open_tag_html_block_newline] = ACTIONS(631), + [sym__closing_tag_html_block] = ACTIONS(631), + [sym__closing_tag_html_block_newline] = ACTIONS(631), + [sym_backslash_escape] = ACTIONS(631), + [sym_entity_reference] = ACTIONS(631), + [sym_numeric_character_reference] = ACTIONS(631), + [sym_uri_autolink] = ACTIONS(631), + [sym_email_autolink] = ACTIONS(631), + [sym__whitespace_ge_2] = ACTIONS(631), + [aux_sym__whitespace_token1] = ACTIONS(633), + [sym__word_no_digit] = ACTIONS(631), + [sym__digits] = ACTIONS(631), + [aux_sym__newline_token1] = ACTIONS(631), + [sym__block_continuation] = ACTIONS(989), + [sym__block_quote_continuation] = ACTIONS(989), + [sym__block_quote_start] = ACTIONS(631), + [sym__indented_chunk_start] = ACTIONS(631), + [sym_atx_h1_marker] = ACTIONS(631), + [sym_atx_h2_marker] = ACTIONS(631), + [sym_atx_h3_marker] = ACTIONS(631), + [sym_atx_h4_marker] = ACTIONS(631), + [sym_atx_h5_marker] = ACTIONS(631), + [sym_atx_h6_marker] = ACTIONS(631), + [sym__thematic_break] = ACTIONS(631), + [sym__list_marker_minus] = ACTIONS(631), + [sym__list_marker_plus] = ACTIONS(631), + [sym__list_marker_star] = ACTIONS(631), + [sym__list_marker_parenthesis] = ACTIONS(631), + [sym__list_marker_dot] = ACTIONS(631), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(631), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(631), + [sym__list_marker_star_dont_interrupt] = ACTIONS(631), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(631), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(631), + [sym__fenced_code_block_start_backtick] = ACTIONS(631), + [sym__fenced_code_block_start_tilde] = ACTIONS(631), + [sym__blank_line_start] = ACTIONS(631), + [sym__code_span_start] = ACTIONS(631), + [sym__emphasis_open_star] = ACTIONS(631), + [sym__emphasis_open_underscore] = ACTIONS(631), + [sym__last_token_whitespace] = ACTIONS(989), + }, + [195] = { + [sym__soft_line_break] = STATE(103), + [sym__link_text] = STATE(2126), + [sym__link_text_non_empty] = STATE(716), + [sym_shortcut_link] = STATE(103), + [sym_full_reference_link] = STATE(103), + [sym_collapsed_reference_link] = STATE(103), + [sym_inline_link] = STATE(103), + [sym_image] = STATE(103), + [sym__image_inline_link] = STATE(663), + [sym__image_shortcut_link] = STATE(663), + [sym__image_full_reference_link] = STATE(663), + [sym__image_collapsed_reference_link] = STATE(663), + [sym__image_description] = STATE(2134), + [sym__image_description_non_empty] = STATE(705), + [sym_html_tag] = STATE(103), + [sym__open_tag] = STATE(702), + [sym__closing_tag] = STATE(702), + [sym__html_comment] = STATE(702), + [sym__processing_instruction] = STATE(702), + [sym__declaration] = STATE(702), + [sym__cdata_section] = STATE(702), + [sym_hard_line_break] = STATE(103), + [sym__whitespace] = STATE(103), + [sym__word] = STATE(103), + [sym__newline] = STATE(2143), + [sym__inline_element_no_underscore] = STATE(103), + [aux_sym__inline_no_underscore] = STATE(103), + [sym__text_inline_no_underscore] = STATE(103), + [sym__emphasis_star] = STATE(800), + [sym__strong_emphasis_star] = STATE(103), + [sym__emphasis_underscore] = STATE(792), + [sym__strong_emphasis_underscore] = STATE(103), + [sym__code_span] = STATE(103), + [anon_sym_BANG] = ACTIONS(991), + [anon_sym_DQUOTE] = ACTIONS(994), + [anon_sym_POUND] = ACTIONS(994), + [anon_sym_DOLLAR] = ACTIONS(994), + [anon_sym_PERCENT] = ACTIONS(994), + [anon_sym_AMP] = ACTIONS(997), + [anon_sym_SQUOTE] = ACTIONS(994), + [anon_sym_LPAREN] = ACTIONS(994), + [anon_sym_RPAREN] = ACTIONS(994), + [anon_sym_STAR] = ACTIONS(994), + [anon_sym_PLUS] = ACTIONS(994), + [anon_sym_COMMA] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(994), + [anon_sym_DOT] = ACTIONS(994), + [anon_sym_SLASH] = ACTIONS(994), + [anon_sym_COLON] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_LT] = ACTIONS(1000), + [anon_sym_EQ] = ACTIONS(994), + [anon_sym_GT] = ACTIONS(994), + [anon_sym_QMARK] = ACTIONS(994), + [anon_sym_AT] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1003), + [anon_sym_BSLASH] = ACTIONS(1006), + [anon_sym_RBRACK] = ACTIONS(994), + [anon_sym_CARET] = ACTIONS(994), + [anon_sym__] = ACTIONS(994), + [anon_sym_BQUOTE] = ACTIONS(994), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(994), + [anon_sym_TILDE] = ACTIONS(994), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1009), + [anon_sym_LT_QMARK] = ACTIONS(1012), + [aux_sym__html_block_4_token1] = ACTIONS(1015), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1018), + [sym_backslash_escape] = ACTIONS(1021), + [sym_entity_reference] = ACTIONS(1021), + [sym_numeric_character_reference] = ACTIONS(1021), + [sym_uri_autolink] = ACTIONS(1021), + [sym_email_autolink] = ACTIONS(1021), + [sym__whitespace_ge_2] = ACTIONS(1024), + [aux_sym__whitespace_token1] = ACTIONS(1027), + [sym__word_no_digit] = ACTIONS(1021), + [sym__digits] = ACTIONS(1021), + [aux_sym__newline_token1] = ACTIONS(1030), + [sym__code_span_start] = ACTIONS(1033), + [sym__emphasis_open_star] = ACTIONS(1036), + [sym__emphasis_open_underscore] = ACTIONS(1039), + [sym__emphasis_close_star] = ACTIONS(1042), + }, + [196] = { + [aux_sym__ignore_matching_tokens] = STATE(201), + [ts_builtin_sym_end] = ACTIONS(631), + [anon_sym_BANG] = ACTIONS(631), + [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(633), + [anon_sym_EQ] = ACTIONS(631), + [anon_sym_GT] = ACTIONS(631), + [anon_sym_QMARK] = ACTIONS(631), + [anon_sym_AT] = ACTIONS(631), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_BSLASH] = ACTIONS(633), + [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), + [aux_sym__html_block_1_token1] = ACTIONS(631), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(633), + [anon_sym_LT_QMARK] = ACTIONS(633), + [aux_sym__html_block_4_token1] = ACTIONS(633), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(631), + [aux_sym__html_block_6_token1] = ACTIONS(633), + [aux_sym__html_block_6_token2] = ACTIONS(631), + [sym__open_tag_html_block] = ACTIONS(631), + [sym__open_tag_html_block_newline] = ACTIONS(631), + [sym__closing_tag_html_block] = ACTIONS(631), + [sym__closing_tag_html_block_newline] = ACTIONS(631), + [sym_backslash_escape] = ACTIONS(631), + [sym_entity_reference] = ACTIONS(631), + [sym_numeric_character_reference] = ACTIONS(631), + [sym_uri_autolink] = ACTIONS(631), + [sym_email_autolink] = ACTIONS(631), + [sym__whitespace_ge_2] = ACTIONS(631), + [aux_sym__whitespace_token1] = ACTIONS(633), + [sym__word_no_digit] = ACTIONS(631), + [sym__digits] = ACTIONS(631), + [aux_sym__newline_token1] = ACTIONS(631), + [sym__block_continuation] = ACTIONS(109), + [sym__block_quote_continuation] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(631), + [sym__indented_chunk_start] = ACTIONS(631), + [sym_atx_h1_marker] = ACTIONS(631), + [sym_atx_h2_marker] = ACTIONS(631), + [sym_atx_h3_marker] = ACTIONS(631), + [sym_atx_h4_marker] = ACTIONS(631), + [sym_atx_h5_marker] = ACTIONS(631), + [sym_atx_h6_marker] = ACTIONS(631), + [sym__thematic_break] = ACTIONS(631), + [sym__list_marker_minus] = ACTIONS(631), + [sym__list_marker_plus] = ACTIONS(631), + [sym__list_marker_star] = ACTIONS(631), + [sym__list_marker_parenthesis] = ACTIONS(631), + [sym__list_marker_dot] = ACTIONS(631), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(631), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(631), + [sym__list_marker_star_dont_interrupt] = ACTIONS(631), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(631), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(631), + [sym__fenced_code_block_start_backtick] = ACTIONS(631), + [sym__fenced_code_block_start_tilde] = ACTIONS(631), + [sym__blank_line_start] = ACTIONS(631), + [sym__code_span_start] = ACTIONS(631), + [sym__emphasis_open_star] = ACTIONS(631), + [sym__emphasis_open_underscore] = ACTIONS(631), + [sym__last_token_whitespace] = ACTIONS(109), + }, + [197] = { + [aux_sym__paragraph_end_newline_repeat1] = STATE(132), + [ts_builtin_sym_end] = 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), + [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(696), + [sym_numeric_character_reference] = ACTIONS(696), + [sym_uri_autolink] = ACTIONS(696), + [sym_email_autolink] = 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_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_h1_underline] = ACTIONS(696), + [sym_setext_h2_underline] = 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__split_token] = ACTIONS(1044), + [sym__code_span_start] = ACTIONS(696), + [sym__emphasis_open_star] = ACTIONS(696), + [sym__emphasis_open_underscore] = ACTIONS(696), + }, + [198] = { + [ts_builtin_sym_end] = ACTIONS(702), + [anon_sym_BANG] = ACTIONS(702), + [anon_sym_DQUOTE] = ACTIONS(702), + [anon_sym_POUND] = ACTIONS(702), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PERCENT] = ACTIONS(702), + [anon_sym_AMP] = ACTIONS(704), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_LPAREN] = ACTIONS(702), + [anon_sym_RPAREN] = ACTIONS(702), + [anon_sym_STAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(702), + [anon_sym_COMMA] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(702), + [anon_sym_DOT] = ACTIONS(702), + [anon_sym_SLASH] = ACTIONS(702), + [anon_sym_COLON] = ACTIONS(702), + [anon_sym_SEMI] = ACTIONS(702), + [anon_sym_LT] = ACTIONS(704), + [anon_sym_EQ] = ACTIONS(702), + [anon_sym_GT] = ACTIONS(702), + [anon_sym_QMARK] = ACTIONS(702), + [anon_sym_AT] = ACTIONS(702), + [anon_sym_LBRACK] = ACTIONS(702), + [anon_sym_BSLASH] = ACTIONS(704), + [anon_sym_RBRACK] = ACTIONS(702), + [anon_sym_CARET] = ACTIONS(702), + [anon_sym__] = ACTIONS(702), + [anon_sym_BQUOTE] = ACTIONS(702), + [anon_sym_LBRACE] = ACTIONS(702), + [anon_sym_PIPE] = ACTIONS(702), + [anon_sym_RBRACE] = ACTIONS(702), + [anon_sym_TILDE] = ACTIONS(702), + [aux_sym__html_block_1_token1] = ACTIONS(702), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(704), + [anon_sym_LT_QMARK] = ACTIONS(704), + [aux_sym__html_block_4_token1] = ACTIONS(704), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(702), + [aux_sym__html_block_6_token1] = ACTIONS(704), + [aux_sym__html_block_6_token2] = ACTIONS(702), + [sym__open_tag_html_block] = ACTIONS(702), + [sym__open_tag_html_block_newline] = ACTIONS(702), + [sym__closing_tag_html_block] = ACTIONS(702), + [sym__closing_tag_html_block_newline] = ACTIONS(702), + [sym_backslash_escape] = ACTIONS(702), + [sym_entity_reference] = ACTIONS(702), + [sym_numeric_character_reference] = ACTIONS(702), + [sym_uri_autolink] = ACTIONS(702), + [sym_email_autolink] = ACTIONS(702), + [sym__whitespace_ge_2] = ACTIONS(702), + [aux_sym__whitespace_token1] = ACTIONS(704), + [sym__word_no_digit] = ACTIONS(702), + [sym__digits] = ACTIONS(702), + [aux_sym__newline_token1] = ACTIONS(702), + [sym__block_quote_start] = ACTIONS(702), + [sym__indented_chunk_start] = ACTIONS(702), + [sym_atx_h1_marker] = ACTIONS(702), + [sym_atx_h2_marker] = ACTIONS(702), + [sym_atx_h3_marker] = ACTIONS(702), + [sym_atx_h4_marker] = ACTIONS(702), + [sym_atx_h5_marker] = ACTIONS(702), + [sym_atx_h6_marker] = ACTIONS(702), + [sym_setext_h1_underline] = ACTIONS(702), + [sym_setext_h2_underline] = ACTIONS(702), + [sym__thematic_break] = ACTIONS(702), + [sym__list_marker_minus] = ACTIONS(702), + [sym__list_marker_plus] = ACTIONS(702), + [sym__list_marker_star] = ACTIONS(702), + [sym__list_marker_parenthesis] = ACTIONS(702), + [sym__list_marker_dot] = ACTIONS(702), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(702), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(702), + [sym__list_marker_star_dont_interrupt] = ACTIONS(702), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(702), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(702), + [sym__fenced_code_block_start_backtick] = ACTIONS(702), + [sym__fenced_code_block_start_tilde] = ACTIONS(702), + [sym__blank_line_start] = ACTIONS(702), + [sym__split_token] = ACTIONS(706), + [sym__soft_line_break_marker] = ACTIONS(447), + [sym__code_span_start] = ACTIONS(702), + [sym__emphasis_open_star] = ACTIONS(702), + [sym__emphasis_open_underscore] = ACTIONS(702), + }, + [199] = { + [sym__soft_line_break] = STATE(825), + [sym__paragraph_end_newline] = STATE(356), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), + [sym__whitespace] = STATE(825), + [sym__word] = STATE(825), + [sym__newline] = STATE(83), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(290), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [anon_sym_BANG] = ACTIONS(5), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(9), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(11), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(971), + [anon_sym_BSLASH] = ACTIONS(15), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(973), + [anon_sym_LT_QMARK] = ACTIONS(975), + [aux_sym__html_block_4_token1] = ACTIONS(977), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(979), + [sym_backslash_escape] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym__whitespace_ge_2] = ACTIONS(981), + [aux_sym__whitespace_token1] = ACTIONS(983), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), + [aux_sym__newline_token1] = ACTIONS(1046), + [sym__code_span_start] = ACTIONS(69), + [sym__emphasis_open_star] = ACTIONS(71), + [sym__emphasis_open_underscore] = ACTIONS(73), + }, + [200] = { + [aux_sym__ignore_matching_tokens] = STATE(212), + [ts_builtin_sym_end] = ACTIONS(959), + [anon_sym_BANG] = ACTIONS(959), + [anon_sym_DQUOTE] = ACTIONS(959), + [anon_sym_POUND] = ACTIONS(959), + [anon_sym_DOLLAR] = ACTIONS(959), + [anon_sym_PERCENT] = ACTIONS(959), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_SQUOTE] = ACTIONS(959), + [anon_sym_LPAREN] = ACTIONS(959), + [anon_sym_RPAREN] = ACTIONS(959), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_COMMA] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_DOT] = ACTIONS(959), + [anon_sym_SLASH] = ACTIONS(959), + [anon_sym_COLON] = ACTIONS(959), + [anon_sym_SEMI] = ACTIONS(959), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(959), + [anon_sym_GT] = ACTIONS(959), + [anon_sym_QMARK] = ACTIONS(959), + [anon_sym_AT] = ACTIONS(959), + [anon_sym_LBRACK] = ACTIONS(959), + [anon_sym_BSLASH] = ACTIONS(961), + [anon_sym_RBRACK] = ACTIONS(959), + [anon_sym_CARET] = ACTIONS(959), + [anon_sym__] = ACTIONS(959), + [anon_sym_BQUOTE] = ACTIONS(959), + [anon_sym_LBRACE] = ACTIONS(959), + [anon_sym_PIPE] = ACTIONS(959), + [anon_sym_RBRACE] = ACTIONS(959), + [anon_sym_TILDE] = ACTIONS(959), + [aux_sym__html_block_1_token1] = ACTIONS(959), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(961), + [anon_sym_LT_QMARK] = ACTIONS(961), + [aux_sym__html_block_4_token1] = ACTIONS(961), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(959), + [aux_sym__html_block_6_token1] = ACTIONS(961), + [aux_sym__html_block_6_token2] = ACTIONS(959), + [sym__open_tag_html_block] = ACTIONS(959), + [sym__open_tag_html_block_newline] = ACTIONS(959), + [sym__closing_tag_html_block] = ACTIONS(959), + [sym__closing_tag_html_block_newline] = ACTIONS(959), + [sym_backslash_escape] = ACTIONS(959), + [sym_entity_reference] = ACTIONS(959), + [sym_numeric_character_reference] = ACTIONS(959), + [sym_uri_autolink] = ACTIONS(959), + [sym_email_autolink] = ACTIONS(959), + [sym__whitespace_ge_2] = ACTIONS(959), + [aux_sym__whitespace_token1] = ACTIONS(961), + [sym__word_no_digit] = ACTIONS(959), + [sym__digits] = ACTIONS(959), + [aux_sym__newline_token1] = ACTIONS(959), + [sym__block_continuation] = ACTIONS(1048), + [sym__block_quote_continuation] = ACTIONS(1048), + [sym__block_quote_start] = ACTIONS(959), + [sym__indented_chunk_start] = ACTIONS(959), + [sym_atx_h1_marker] = ACTIONS(959), + [sym_atx_h2_marker] = ACTIONS(959), + [sym_atx_h3_marker] = ACTIONS(959), + [sym_atx_h4_marker] = ACTIONS(959), + [sym_atx_h5_marker] = ACTIONS(959), + [sym_atx_h6_marker] = ACTIONS(959), + [sym__thematic_break] = ACTIONS(959), + [sym__list_marker_minus] = ACTIONS(959), + [sym__list_marker_plus] = ACTIONS(959), + [sym__list_marker_star] = ACTIONS(959), + [sym__list_marker_parenthesis] = ACTIONS(959), + [sym__list_marker_dot] = ACTIONS(959), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(959), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(959), + [sym__list_marker_star_dont_interrupt] = ACTIONS(959), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(959), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(959), + [sym__fenced_code_block_start_backtick] = ACTIONS(959), + [sym__fenced_code_block_start_tilde] = ACTIONS(959), + [sym__blank_line_start] = ACTIONS(959), + [sym__code_span_start] = ACTIONS(959), + [sym__emphasis_open_star] = ACTIONS(959), + [sym__emphasis_open_underscore] = ACTIONS(959), + [sym__last_token_whitespace] = ACTIONS(1048), + }, + [201] = { + [aux_sym__ignore_matching_tokens] = STATE(201), + [ts_builtin_sym_end] = ACTIONS(403), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_DQUOTE] = ACTIONS(403), + [anon_sym_POUND] = ACTIONS(403), + [anon_sym_DOLLAR] = ACTIONS(403), + [anon_sym_PERCENT] = ACTIONS(403), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_SQUOTE] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(403), + [anon_sym_RPAREN] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_PLUS] = ACTIONS(403), + [anon_sym_COMMA] = ACTIONS(403), + [anon_sym_DASH] = ACTIONS(403), + [anon_sym_DOT] = ACTIONS(403), + [anon_sym_SLASH] = ACTIONS(403), + [anon_sym_COLON] = ACTIONS(403), + [anon_sym_SEMI] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(403), + [anon_sym_GT] = ACTIONS(403), + [anon_sym_QMARK] = ACTIONS(403), + [anon_sym_AT] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_BSLASH] = ACTIONS(405), + [anon_sym_RBRACK] = ACTIONS(403), + [anon_sym_CARET] = ACTIONS(403), + [anon_sym__] = ACTIONS(403), + [anon_sym_BQUOTE] = ACTIONS(403), + [anon_sym_LBRACE] = ACTIONS(403), + [anon_sym_PIPE] = ACTIONS(403), + [anon_sym_RBRACE] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [aux_sym__html_block_1_token1] = ACTIONS(403), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(405), + [anon_sym_LT_QMARK] = ACTIONS(405), + [aux_sym__html_block_4_token1] = ACTIONS(405), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(403), + [aux_sym__html_block_6_token1] = ACTIONS(405), + [aux_sym__html_block_6_token2] = ACTIONS(403), + [sym__open_tag_html_block] = ACTIONS(403), + [sym__open_tag_html_block_newline] = ACTIONS(403), + [sym__closing_tag_html_block] = ACTIONS(403), + [sym__closing_tag_html_block_newline] = ACTIONS(403), + [sym_backslash_escape] = ACTIONS(403), + [sym_entity_reference] = ACTIONS(403), + [sym_numeric_character_reference] = ACTIONS(403), + [sym_uri_autolink] = ACTIONS(403), + [sym_email_autolink] = ACTIONS(403), + [sym__whitespace_ge_2] = ACTIONS(403), + [aux_sym__whitespace_token1] = ACTIONS(405), + [sym__word_no_digit] = ACTIONS(403), + [sym__digits] = ACTIONS(403), + [aux_sym__newline_token1] = ACTIONS(403), + [sym__block_continuation] = ACTIONS(1050), + [sym__block_quote_continuation] = ACTIONS(1050), + [sym__block_quote_start] = ACTIONS(403), + [sym__indented_chunk_start] = ACTIONS(403), + [sym_atx_h1_marker] = ACTIONS(403), + [sym_atx_h2_marker] = ACTIONS(403), + [sym_atx_h3_marker] = ACTIONS(403), + [sym_atx_h4_marker] = ACTIONS(403), + [sym_atx_h5_marker] = ACTIONS(403), + [sym_atx_h6_marker] = ACTIONS(403), + [sym__thematic_break] = ACTIONS(403), + [sym__list_marker_minus] = ACTIONS(403), + [sym__list_marker_plus] = ACTIONS(403), + [sym__list_marker_star] = ACTIONS(403), + [sym__list_marker_parenthesis] = ACTIONS(403), + [sym__list_marker_dot] = ACTIONS(403), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(403), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(403), + [sym__list_marker_star_dont_interrupt] = ACTIONS(403), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(403), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(403), + [sym__fenced_code_block_start_backtick] = ACTIONS(403), + [sym__fenced_code_block_start_tilde] = ACTIONS(403), + [sym__blank_line_start] = ACTIONS(403), + [sym__code_span_start] = ACTIONS(403), + [sym__emphasis_open_star] = ACTIONS(403), + [sym__emphasis_open_underscore] = ACTIONS(403), + [sym__last_token_whitespace] = ACTIONS(1050), + }, + [202] = { + [aux_sym__ignore_matching_tokens] = STATE(215), + [ts_builtin_sym_end] = ACTIONS(953), + [anon_sym_BANG] = ACTIONS(953), + [anon_sym_DQUOTE] = ACTIONS(953), + [anon_sym_POUND] = ACTIONS(953), + [anon_sym_DOLLAR] = ACTIONS(953), + [anon_sym_PERCENT] = ACTIONS(953), + [anon_sym_AMP] = ACTIONS(955), + [anon_sym_SQUOTE] = ACTIONS(953), + [anon_sym_LPAREN] = ACTIONS(953), + [anon_sym_RPAREN] = ACTIONS(953), + [anon_sym_STAR] = ACTIONS(953), + [anon_sym_PLUS] = ACTIONS(953), + [anon_sym_COMMA] = ACTIONS(953), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_DOT] = ACTIONS(953), + [anon_sym_SLASH] = ACTIONS(953), + [anon_sym_COLON] = ACTIONS(953), + [anon_sym_SEMI] = ACTIONS(953), + [anon_sym_LT] = ACTIONS(955), + [anon_sym_EQ] = ACTIONS(953), + [anon_sym_GT] = ACTIONS(953), + [anon_sym_QMARK] = ACTIONS(953), + [anon_sym_AT] = ACTIONS(953), + [anon_sym_LBRACK] = ACTIONS(953), + [anon_sym_BSLASH] = ACTIONS(955), + [anon_sym_RBRACK] = ACTIONS(953), + [anon_sym_CARET] = ACTIONS(953), + [anon_sym__] = ACTIONS(953), + [anon_sym_BQUOTE] = ACTIONS(953), + [anon_sym_LBRACE] = ACTIONS(953), + [anon_sym_PIPE] = ACTIONS(953), + [anon_sym_RBRACE] = ACTIONS(953), + [anon_sym_TILDE] = ACTIONS(953), + [aux_sym__html_block_1_token1] = ACTIONS(953), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(955), + [anon_sym_LT_QMARK] = ACTIONS(955), + [aux_sym__html_block_4_token1] = ACTIONS(955), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(953), + [aux_sym__html_block_6_token1] = ACTIONS(955), + [aux_sym__html_block_6_token2] = ACTIONS(953), + [sym__open_tag_html_block] = ACTIONS(953), + [sym__open_tag_html_block_newline] = ACTIONS(953), + [sym__closing_tag_html_block] = ACTIONS(953), + [sym__closing_tag_html_block_newline] = ACTIONS(953), + [sym_backslash_escape] = ACTIONS(953), + [sym_entity_reference] = ACTIONS(953), + [sym_numeric_character_reference] = ACTIONS(953), + [sym_uri_autolink] = ACTIONS(953), + [sym_email_autolink] = ACTIONS(953), + [sym__whitespace_ge_2] = ACTIONS(953), + [aux_sym__whitespace_token1] = ACTIONS(955), + [sym__word_no_digit] = ACTIONS(953), + [sym__digits] = ACTIONS(953), + [aux_sym__newline_token1] = ACTIONS(953), + [sym__block_continuation] = ACTIONS(1053), + [sym__block_quote_continuation] = ACTIONS(1053), + [sym__block_quote_start] = ACTIONS(953), + [sym__indented_chunk_start] = ACTIONS(953), + [sym_atx_h1_marker] = ACTIONS(953), + [sym_atx_h2_marker] = ACTIONS(953), + [sym_atx_h3_marker] = ACTIONS(953), + [sym_atx_h4_marker] = ACTIONS(953), + [sym_atx_h5_marker] = ACTIONS(953), + [sym_atx_h6_marker] = ACTIONS(953), + [sym__thematic_break] = ACTIONS(953), + [sym__list_marker_minus] = ACTIONS(953), + [sym__list_marker_plus] = ACTIONS(953), + [sym__list_marker_star] = ACTIONS(953), + [sym__list_marker_parenthesis] = ACTIONS(953), + [sym__list_marker_dot] = ACTIONS(953), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(953), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(953), + [sym__list_marker_star_dont_interrupt] = ACTIONS(953), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(953), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(953), + [sym__fenced_code_block_start_backtick] = ACTIONS(953), + [sym__fenced_code_block_start_tilde] = ACTIONS(953), + [sym__blank_line_start] = ACTIONS(953), + [sym__code_span_start] = ACTIONS(953), + [sym__emphasis_open_star] = ACTIONS(953), + [sym__emphasis_open_underscore] = ACTIONS(953), + [sym__last_token_whitespace] = ACTIONS(1053), + }, + [203] = { + [aux_sym__ignore_matching_tokens] = STATE(188), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_DQUOTE] = ACTIONS(1055), + [anon_sym_POUND] = ACTIONS(1055), + [anon_sym_DOLLAR] = ACTIONS(1055), + [anon_sym_PERCENT] = ACTIONS(1055), + [anon_sym_AMP] = ACTIONS(1057), + [anon_sym_SQUOTE] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1055), + [anon_sym_RPAREN] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1055), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_COMMA] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_DOT] = ACTIONS(1055), + [anon_sym_SLASH] = ACTIONS(1055), + [anon_sym_COLON] = ACTIONS(1055), + [anon_sym_SEMI] = ACTIONS(1055), + [anon_sym_LT] = ACTIONS(1057), + [anon_sym_EQ] = ACTIONS(1055), + [anon_sym_GT] = ACTIONS(1055), + [anon_sym_QMARK] = ACTIONS(1055), + [anon_sym_AT] = ACTIONS(1055), + [anon_sym_LBRACK] = ACTIONS(1055), + [anon_sym_BSLASH] = ACTIONS(1057), + [anon_sym_RBRACK] = ACTIONS(1055), + [anon_sym_CARET] = ACTIONS(1055), + [anon_sym__] = ACTIONS(1055), + [anon_sym_BQUOTE] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(1055), + [anon_sym_PIPE] = ACTIONS(1055), + [anon_sym_RBRACE] = ACTIONS(1055), + [anon_sym_TILDE] = ACTIONS(1055), + [aux_sym__html_block_1_token1] = ACTIONS(1055), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1057), + [anon_sym_LT_QMARK] = ACTIONS(1057), + [aux_sym__html_block_4_token1] = ACTIONS(1057), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1055), + [aux_sym__html_block_6_token1] = ACTIONS(1057), + [aux_sym__html_block_6_token2] = ACTIONS(1055), + [sym__open_tag_html_block] = ACTIONS(1055), + [sym__open_tag_html_block_newline] = ACTIONS(1055), + [sym__closing_tag_html_block] = ACTIONS(1055), + [sym__closing_tag_html_block_newline] = ACTIONS(1055), + [sym_backslash_escape] = ACTIONS(1055), + [sym_entity_reference] = ACTIONS(1055), + [sym_numeric_character_reference] = ACTIONS(1055), + [sym_uri_autolink] = ACTIONS(1055), + [sym_email_autolink] = ACTIONS(1055), + [sym__whitespace_ge_2] = ACTIONS(1055), + [aux_sym__whitespace_token1] = ACTIONS(1057), + [sym__word_no_digit] = ACTIONS(1055), + [sym__digits] = ACTIONS(1055), + [aux_sym__newline_token1] = ACTIONS(1055), + [sym__block_close] = ACTIONS(1055), + [sym__block_continuation] = ACTIONS(1059), + [sym__block_quote_continuation] = ACTIONS(1059), + [sym__block_quote_start] = ACTIONS(1055), + [sym__indented_chunk_start] = ACTIONS(1055), + [sym_atx_h1_marker] = ACTIONS(1055), + [sym_atx_h2_marker] = ACTIONS(1055), + [sym_atx_h3_marker] = ACTIONS(1055), + [sym_atx_h4_marker] = ACTIONS(1055), + [sym_atx_h5_marker] = ACTIONS(1055), + [sym_atx_h6_marker] = ACTIONS(1055), + [sym__thematic_break] = ACTIONS(1055), + [sym__list_marker_minus] = ACTIONS(1055), + [sym__list_marker_plus] = ACTIONS(1055), + [sym__list_marker_star] = ACTIONS(1055), + [sym__list_marker_parenthesis] = ACTIONS(1055), + [sym__list_marker_dot] = ACTIONS(1055), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1055), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1055), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1055), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1055), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1055), + [sym__fenced_code_block_start_backtick] = ACTIONS(1055), + [sym__fenced_code_block_start_tilde] = ACTIONS(1055), + [sym__blank_line_start] = ACTIONS(1055), + [sym__code_span_start] = ACTIONS(1055), + [sym__emphasis_open_star] = ACTIONS(1055), + [sym__emphasis_open_underscore] = ACTIONS(1055), + [sym__last_token_whitespace] = ACTIONS(1059), + }, + [204] = { + [aux_sym__ignore_matching_tokens] = STATE(160), + [anon_sym_BANG] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(836), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR] = ACTIONS(836), + [anon_sym_PERCENT] = ACTIONS(836), + [anon_sym_AMP] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(836), + [anon_sym_LPAREN] = ACTIONS(836), + [anon_sym_RPAREN] = ACTIONS(836), + [anon_sym_STAR] = ACTIONS(836), + [anon_sym_PLUS] = ACTIONS(836), + [anon_sym_COMMA] = ACTIONS(836), + [anon_sym_DASH] = ACTIONS(836), + [anon_sym_DOT] = ACTIONS(836), + [anon_sym_SLASH] = ACTIONS(836), + [anon_sym_COLON] = ACTIONS(836), + [anon_sym_SEMI] = ACTIONS(836), + [anon_sym_LT] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(836), + [anon_sym_GT] = ACTIONS(836), + [anon_sym_QMARK] = ACTIONS(836), + [anon_sym_AT] = ACTIONS(836), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_BSLASH] = ACTIONS(838), + [anon_sym_RBRACK] = ACTIONS(836), + [anon_sym_CARET] = ACTIONS(836), + [anon_sym__] = ACTIONS(836), + [anon_sym_BQUOTE] = ACTIONS(836), + [anon_sym_LBRACE] = ACTIONS(836), + [anon_sym_PIPE] = ACTIONS(836), + [anon_sym_RBRACE] = ACTIONS(836), + [anon_sym_TILDE] = ACTIONS(836), + [aux_sym__html_block_1_token1] = ACTIONS(836), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(838), + [anon_sym_LT_QMARK] = ACTIONS(838), + [aux_sym__html_block_4_token1] = ACTIONS(838), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(836), + [aux_sym__html_block_6_token1] = ACTIONS(838), + [aux_sym__html_block_6_token2] = ACTIONS(836), + [sym__open_tag_html_block] = ACTIONS(836), + [sym__open_tag_html_block_newline] = ACTIONS(836), + [sym__closing_tag_html_block] = ACTIONS(836), + [sym__closing_tag_html_block_newline] = ACTIONS(836), + [sym_backslash_escape] = ACTIONS(836), + [sym_entity_reference] = ACTIONS(836), + [sym_numeric_character_reference] = ACTIONS(836), + [sym_uri_autolink] = ACTIONS(836), + [sym_email_autolink] = ACTIONS(836), + [sym__whitespace_ge_2] = ACTIONS(836), + [aux_sym__whitespace_token1] = ACTIONS(838), + [sym__word_no_digit] = ACTIONS(836), + [sym__digits] = ACTIONS(836), + [aux_sym__newline_token1] = ACTIONS(836), + [sym__block_close] = ACTIONS(836), + [sym__block_continuation] = ACTIONS(113), + [sym__block_quote_continuation] = ACTIONS(113), + [sym__block_quote_start] = ACTIONS(836), + [sym__indented_chunk_start] = ACTIONS(836), + [sym_atx_h1_marker] = ACTIONS(836), + [sym_atx_h2_marker] = ACTIONS(836), + [sym_atx_h3_marker] = ACTIONS(836), + [sym_atx_h4_marker] = ACTIONS(836), + [sym_atx_h5_marker] = ACTIONS(836), + [sym_atx_h6_marker] = ACTIONS(836), + [sym__thematic_break] = ACTIONS(836), + [sym__list_marker_minus] = ACTIONS(836), + [sym__list_marker_plus] = ACTIONS(836), + [sym__list_marker_star] = ACTIONS(836), + [sym__list_marker_parenthesis] = ACTIONS(836), + [sym__list_marker_dot] = ACTIONS(836), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(836), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(836), + [sym__list_marker_star_dont_interrupt] = ACTIONS(836), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(836), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(836), + [sym__fenced_code_block_start_backtick] = ACTIONS(836), + [sym__fenced_code_block_start_tilde] = ACTIONS(836), + [sym__blank_line_start] = ACTIONS(836), + [sym__code_span_start] = ACTIONS(836), + [sym__emphasis_open_star] = ACTIONS(836), + [sym__emphasis_open_underscore] = ACTIONS(836), + [sym__last_token_whitespace] = ACTIONS(113), + }, + [205] = { + [aux_sym__ignore_matching_tokens] = STATE(160), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_DQUOTE] = ACTIONS(1055), + [anon_sym_POUND] = ACTIONS(1055), + [anon_sym_DOLLAR] = ACTIONS(1055), + [anon_sym_PERCENT] = ACTIONS(1055), + [anon_sym_AMP] = ACTIONS(1057), + [anon_sym_SQUOTE] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1055), + [anon_sym_RPAREN] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1055), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_COMMA] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_DOT] = ACTIONS(1055), + [anon_sym_SLASH] = ACTIONS(1055), + [anon_sym_COLON] = ACTIONS(1055), + [anon_sym_SEMI] = ACTIONS(1055), + [anon_sym_LT] = ACTIONS(1057), + [anon_sym_EQ] = ACTIONS(1055), + [anon_sym_GT] = ACTIONS(1055), + [anon_sym_QMARK] = ACTIONS(1055), + [anon_sym_AT] = ACTIONS(1055), + [anon_sym_LBRACK] = ACTIONS(1055), + [anon_sym_BSLASH] = ACTIONS(1057), + [anon_sym_RBRACK] = ACTIONS(1055), + [anon_sym_CARET] = ACTIONS(1055), + [anon_sym__] = ACTIONS(1055), + [anon_sym_BQUOTE] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(1055), + [anon_sym_PIPE] = ACTIONS(1055), + [anon_sym_RBRACE] = ACTIONS(1055), + [anon_sym_TILDE] = ACTIONS(1055), + [aux_sym__html_block_1_token1] = ACTIONS(1055), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1057), + [anon_sym_LT_QMARK] = ACTIONS(1057), + [aux_sym__html_block_4_token1] = ACTIONS(1057), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1055), + [aux_sym__html_block_6_token1] = ACTIONS(1057), + [aux_sym__html_block_6_token2] = ACTIONS(1055), + [sym__open_tag_html_block] = ACTIONS(1055), + [sym__open_tag_html_block_newline] = ACTIONS(1055), + [sym__closing_tag_html_block] = ACTIONS(1055), + [sym__closing_tag_html_block_newline] = ACTIONS(1055), + [sym_backslash_escape] = ACTIONS(1055), + [sym_entity_reference] = ACTIONS(1055), + [sym_numeric_character_reference] = ACTIONS(1055), + [sym_uri_autolink] = ACTIONS(1055), + [sym_email_autolink] = ACTIONS(1055), + [sym__whitespace_ge_2] = ACTIONS(1055), + [aux_sym__whitespace_token1] = ACTIONS(1057), + [sym__word_no_digit] = ACTIONS(1055), + [sym__digits] = ACTIONS(1055), + [aux_sym__newline_token1] = ACTIONS(1055), + [sym__block_close] = ACTIONS(1055), + [sym__block_continuation] = ACTIONS(113), + [sym__block_quote_continuation] = ACTIONS(113), + [sym__block_quote_start] = ACTIONS(1055), + [sym__indented_chunk_start] = ACTIONS(1055), + [sym_atx_h1_marker] = ACTIONS(1055), + [sym_atx_h2_marker] = ACTIONS(1055), + [sym_atx_h3_marker] = ACTIONS(1055), + [sym_atx_h4_marker] = ACTIONS(1055), + [sym_atx_h5_marker] = ACTIONS(1055), + [sym_atx_h6_marker] = ACTIONS(1055), + [sym__thematic_break] = ACTIONS(1055), + [sym__list_marker_minus] = ACTIONS(1055), + [sym__list_marker_plus] = ACTIONS(1055), + [sym__list_marker_star] = ACTIONS(1055), + [sym__list_marker_parenthesis] = ACTIONS(1055), + [sym__list_marker_dot] = ACTIONS(1055), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1055), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1055), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1055), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1055), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1055), + [sym__fenced_code_block_start_backtick] = ACTIONS(1055), + [sym__fenced_code_block_start_tilde] = ACTIONS(1055), + [sym__blank_line_start] = ACTIONS(1055), + [sym__code_span_start] = ACTIONS(1055), + [sym__emphasis_open_star] = ACTIONS(1055), + [sym__emphasis_open_underscore] = ACTIONS(1055), + [sym__last_token_whitespace] = ACTIONS(113), + }, + [206] = { + [aux_sym__ignore_matching_tokens] = STATE(191), + [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), + [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(1061), + [sym_numeric_character_reference] = ACTIONS(1061), + [sym_uri_autolink] = ACTIONS(1061), + [sym_email_autolink] = 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_continuation] = ACTIONS(1065), + [sym__block_quote_continuation] = ACTIONS(1065), + [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__thematic_break] = ACTIONS(1061), + [sym__list_marker_minus] = ACTIONS(1061), + [sym__list_marker_plus] = ACTIONS(1061), + [sym__list_marker_star] = ACTIONS(1061), + [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(1061), + [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), + [sym__last_token_whitespace] = ACTIONS(1065), + }, + [207] = { + [aux_sym__ignore_matching_tokens] = STATE(160), + [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), + [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(1061), + [sym_numeric_character_reference] = ACTIONS(1061), + [sym_uri_autolink] = ACTIONS(1061), + [sym_email_autolink] = 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_continuation] = ACTIONS(113), + [sym__block_quote_continuation] = ACTIONS(113), + [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__thematic_break] = ACTIONS(1061), + [sym__list_marker_minus] = ACTIONS(1061), + [sym__list_marker_plus] = ACTIONS(1061), + [sym__list_marker_star] = ACTIONS(1061), + [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(1061), + [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), + [sym__last_token_whitespace] = ACTIONS(113), + }, + [208] = { + [aux_sym__ignore_matching_tokens] = STATE(112), + [ts_builtin_sym_end] = ACTIONS(721), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_DQUOTE] = ACTIONS(721), + [anon_sym_POUND] = ACTIONS(721), + [anon_sym_DOLLAR] = ACTIONS(721), + [anon_sym_PERCENT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_SQUOTE] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(721), + [anon_sym_RPAREN] = ACTIONS(721), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_COMMA] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_DOT] = ACTIONS(721), + [anon_sym_SLASH] = ACTIONS(721), + [anon_sym_COLON] = ACTIONS(721), + [anon_sym_SEMI] = ACTIONS(721), + [anon_sym_LT] = ACTIONS(723), + [anon_sym_EQ] = ACTIONS(721), + [anon_sym_GT] = ACTIONS(721), + [anon_sym_QMARK] = ACTIONS(721), + [anon_sym_AT] = ACTIONS(721), + [anon_sym_LBRACK] = ACTIONS(721), + [anon_sym_BSLASH] = ACTIONS(723), + [anon_sym_RBRACK] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(721), + [anon_sym__] = ACTIONS(721), + [anon_sym_BQUOTE] = ACTIONS(721), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(721), + [anon_sym_RBRACE] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(721), + [aux_sym__html_block_1_token1] = ACTIONS(721), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(723), + [anon_sym_LT_QMARK] = ACTIONS(723), + [aux_sym__html_block_4_token1] = ACTIONS(723), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(721), + [aux_sym__html_block_6_token1] = ACTIONS(723), + [aux_sym__html_block_6_token2] = ACTIONS(721), + [sym__open_tag_html_block] = ACTIONS(721), + [sym__open_tag_html_block_newline] = ACTIONS(721), + [sym__closing_tag_html_block] = ACTIONS(721), + [sym__closing_tag_html_block_newline] = ACTIONS(721), + [sym_backslash_escape] = ACTIONS(721), + [sym_entity_reference] = ACTIONS(721), + [sym_numeric_character_reference] = ACTIONS(721), + [sym_uri_autolink] = ACTIONS(721), + [sym_email_autolink] = ACTIONS(721), + [sym__whitespace_ge_2] = ACTIONS(721), + [aux_sym__whitespace_token1] = ACTIONS(723), + [sym__word_no_digit] = ACTIONS(721), + [sym__digits] = ACTIONS(721), + [aux_sym__newline_token1] = ACTIONS(721), + [sym__block_continuation] = ACTIONS(1067), + [sym__block_quote_continuation] = ACTIONS(1067), + [sym__block_quote_start] = ACTIONS(721), + [sym__indented_chunk_start] = ACTIONS(721), + [sym_atx_h1_marker] = ACTIONS(721), + [sym_atx_h2_marker] = ACTIONS(721), + [sym_atx_h3_marker] = ACTIONS(721), + [sym_atx_h4_marker] = ACTIONS(721), + [sym_atx_h5_marker] = ACTIONS(721), + [sym_atx_h6_marker] = ACTIONS(721), + [sym__thematic_break] = ACTIONS(721), + [sym__list_marker_minus] = ACTIONS(721), + [sym__list_marker_plus] = ACTIONS(721), + [sym__list_marker_star] = ACTIONS(721), + [sym__list_marker_parenthesis] = ACTIONS(721), + [sym__list_marker_dot] = ACTIONS(721), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(721), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(721), + [sym__list_marker_star_dont_interrupt] = ACTIONS(721), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(721), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(721), + [sym__fenced_code_block_start_backtick] = ACTIONS(721), + [sym__fenced_code_block_start_tilde] = ACTIONS(721), + [sym__blank_line_start] = ACTIONS(721), + [sym__code_span_start] = ACTIONS(721), + [sym__emphasis_open_star] = ACTIONS(721), + [sym__emphasis_open_underscore] = ACTIONS(721), + [sym__last_token_whitespace] = ACTIONS(1067), + }, + [209] = { + [aux_sym__ignore_matching_tokens] = STATE(116), + [ts_builtin_sym_end] = ACTIONS(727), + [anon_sym_BANG] = ACTIONS(727), + [anon_sym_DQUOTE] = ACTIONS(727), + [anon_sym_POUND] = ACTIONS(727), + [anon_sym_DOLLAR] = ACTIONS(727), + [anon_sym_PERCENT] = ACTIONS(727), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_SQUOTE] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(727), + [anon_sym_RPAREN] = ACTIONS(727), + [anon_sym_STAR] = ACTIONS(727), + [anon_sym_PLUS] = ACTIONS(727), + [anon_sym_COMMA] = ACTIONS(727), + [anon_sym_DASH] = ACTIONS(727), + [anon_sym_DOT] = ACTIONS(727), + [anon_sym_SLASH] = ACTIONS(727), + [anon_sym_COLON] = ACTIONS(727), + [anon_sym_SEMI] = ACTIONS(727), + [anon_sym_LT] = ACTIONS(729), + [anon_sym_EQ] = ACTIONS(727), + [anon_sym_GT] = ACTIONS(727), + [anon_sym_QMARK] = ACTIONS(727), + [anon_sym_AT] = ACTIONS(727), + [anon_sym_LBRACK] = ACTIONS(727), + [anon_sym_BSLASH] = ACTIONS(729), + [anon_sym_RBRACK] = ACTIONS(727), + [anon_sym_CARET] = ACTIONS(727), + [anon_sym__] = ACTIONS(727), + [anon_sym_BQUOTE] = ACTIONS(727), + [anon_sym_LBRACE] = ACTIONS(727), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_RBRACE] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(727), + [aux_sym__html_block_1_token1] = ACTIONS(727), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(729), + [anon_sym_LT_QMARK] = ACTIONS(729), + [aux_sym__html_block_4_token1] = ACTIONS(729), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(727), + [aux_sym__html_block_6_token1] = ACTIONS(729), + [aux_sym__html_block_6_token2] = ACTIONS(727), + [sym__open_tag_html_block] = ACTIONS(727), + [sym__open_tag_html_block_newline] = ACTIONS(727), + [sym__closing_tag_html_block] = ACTIONS(727), + [sym__closing_tag_html_block_newline] = ACTIONS(727), + [sym_backslash_escape] = ACTIONS(727), + [sym_entity_reference] = ACTIONS(727), + [sym_numeric_character_reference] = ACTIONS(727), + [sym_uri_autolink] = ACTIONS(727), + [sym_email_autolink] = ACTIONS(727), + [sym__whitespace_ge_2] = ACTIONS(727), + [aux_sym__whitespace_token1] = ACTIONS(729), + [sym__word_no_digit] = ACTIONS(727), + [sym__digits] = ACTIONS(727), + [aux_sym__newline_token1] = ACTIONS(727), + [sym__block_continuation] = ACTIONS(1069), + [sym__block_quote_continuation] = ACTIONS(1069), + [sym__block_quote_start] = ACTIONS(727), + [sym__indented_chunk_start] = ACTIONS(727), + [sym_atx_h1_marker] = ACTIONS(727), + [sym_atx_h2_marker] = ACTIONS(727), + [sym_atx_h3_marker] = ACTIONS(727), + [sym_atx_h4_marker] = ACTIONS(727), + [sym_atx_h5_marker] = ACTIONS(727), + [sym_atx_h6_marker] = ACTIONS(727), + [sym__thematic_break] = ACTIONS(727), + [sym__list_marker_minus] = ACTIONS(727), + [sym__list_marker_plus] = ACTIONS(727), + [sym__list_marker_star] = ACTIONS(727), + [sym__list_marker_parenthesis] = ACTIONS(727), + [sym__list_marker_dot] = ACTIONS(727), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(727), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(727), + [sym__list_marker_star_dont_interrupt] = ACTIONS(727), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(727), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(727), + [sym__fenced_code_block_start_backtick] = ACTIONS(727), + [sym__fenced_code_block_start_tilde] = ACTIONS(727), + [sym__blank_line_start] = ACTIONS(727), + [sym__code_span_start] = ACTIONS(727), + [sym__emphasis_open_star] = ACTIONS(727), + [sym__emphasis_open_underscore] = ACTIONS(727), + [sym__last_token_whitespace] = ACTIONS(1069), + }, + [210] = { + [aux_sym__ignore_matching_tokens] = STATE(160), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_DQUOTE] = ACTIONS(1071), + [anon_sym_POUND] = ACTIONS(1071), + [anon_sym_DOLLAR] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_AMP] = ACTIONS(1073), + [anon_sym_SQUOTE] = ACTIONS(1071), + [anon_sym_LPAREN] = ACTIONS(1071), + [anon_sym_RPAREN] = ACTIONS(1071), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(1071), + [anon_sym_COMMA] = ACTIONS(1071), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_DOT] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_COLON] = ACTIONS(1071), + [anon_sym_SEMI] = ACTIONS(1071), + [anon_sym_LT] = ACTIONS(1073), + [anon_sym_EQ] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_AT] = ACTIONS(1071), + [anon_sym_LBRACK] = ACTIONS(1071), + [anon_sym_BSLASH] = ACTIONS(1073), + [anon_sym_RBRACK] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1071), + [anon_sym__] = ACTIONS(1071), + [anon_sym_BQUOTE] = ACTIONS(1071), + [anon_sym_LBRACE] = ACTIONS(1071), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_RBRACE] = ACTIONS(1071), + [anon_sym_TILDE] = ACTIONS(1071), + [aux_sym__html_block_1_token1] = ACTIONS(1071), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1073), + [anon_sym_LT_QMARK] = ACTIONS(1073), + [aux_sym__html_block_4_token1] = ACTIONS(1073), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1071), + [aux_sym__html_block_6_token1] = ACTIONS(1073), + [aux_sym__html_block_6_token2] = ACTIONS(1071), + [sym__open_tag_html_block] = ACTIONS(1071), + [sym__open_tag_html_block_newline] = ACTIONS(1071), + [sym__closing_tag_html_block] = ACTIONS(1071), + [sym__closing_tag_html_block_newline] = ACTIONS(1071), + [sym_backslash_escape] = ACTIONS(1071), + [sym_entity_reference] = ACTIONS(1071), + [sym_numeric_character_reference] = ACTIONS(1071), + [sym_uri_autolink] = ACTIONS(1071), + [sym_email_autolink] = ACTIONS(1071), + [sym__whitespace_ge_2] = ACTIONS(1071), + [aux_sym__whitespace_token1] = ACTIONS(1073), + [sym__word_no_digit] = ACTIONS(1071), + [sym__digits] = ACTIONS(1071), + [aux_sym__newline_token1] = ACTIONS(1071), + [sym__block_close] = ACTIONS(1071), + [sym__block_continuation] = ACTIONS(113), + [sym__block_quote_continuation] = ACTIONS(113), + [sym__block_quote_start] = ACTIONS(1071), + [sym__indented_chunk_start] = ACTIONS(1071), + [sym_atx_h1_marker] = ACTIONS(1071), + [sym_atx_h2_marker] = ACTIONS(1071), + [sym_atx_h3_marker] = ACTIONS(1071), + [sym_atx_h4_marker] = ACTIONS(1071), + [sym_atx_h5_marker] = ACTIONS(1071), + [sym_atx_h6_marker] = ACTIONS(1071), + [sym__thematic_break] = ACTIONS(1071), + [sym__list_marker_minus] = ACTIONS(1071), + [sym__list_marker_plus] = ACTIONS(1071), + [sym__list_marker_star] = ACTIONS(1071), + [sym__list_marker_parenthesis] = ACTIONS(1071), + [sym__list_marker_dot] = ACTIONS(1071), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1071), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1071), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1071), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1071), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1071), + [sym__fenced_code_block_start_backtick] = ACTIONS(1071), + [sym__fenced_code_block_start_tilde] = ACTIONS(1071), + [sym__blank_line_start] = ACTIONS(1071), + [sym__code_span_start] = ACTIONS(1071), + [sym__emphasis_open_star] = ACTIONS(1071), + [sym__emphasis_open_underscore] = ACTIONS(1071), + [sym__last_token_whitespace] = ACTIONS(113), + }, + [211] = { + [aux_sym__ignore_matching_tokens] = STATE(119), + [ts_builtin_sym_end] = ACTIONS(741), + [anon_sym_BANG] = ACTIONS(741), + [anon_sym_DQUOTE] = ACTIONS(741), + [anon_sym_POUND] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(741), + [anon_sym_PERCENT] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(743), + [anon_sym_SQUOTE] = ACTIONS(741), + [anon_sym_LPAREN] = ACTIONS(741), + [anon_sym_RPAREN] = ACTIONS(741), + [anon_sym_STAR] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(741), + [anon_sym_COMMA] = ACTIONS(741), + [anon_sym_DASH] = ACTIONS(741), + [anon_sym_DOT] = ACTIONS(741), + [anon_sym_SLASH] = ACTIONS(741), + [anon_sym_COLON] = ACTIONS(741), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(743), + [anon_sym_EQ] = ACTIONS(741), + [anon_sym_GT] = ACTIONS(741), + [anon_sym_QMARK] = ACTIONS(741), + [anon_sym_AT] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(741), + [anon_sym_BSLASH] = ACTIONS(743), + [anon_sym_RBRACK] = ACTIONS(741), + [anon_sym_CARET] = ACTIONS(741), + [anon_sym__] = ACTIONS(741), + [anon_sym_BQUOTE] = ACTIONS(741), + [anon_sym_LBRACE] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(741), + [anon_sym_RBRACE] = ACTIONS(741), + [anon_sym_TILDE] = ACTIONS(741), + [aux_sym__html_block_1_token1] = ACTIONS(741), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(743), + [anon_sym_LT_QMARK] = ACTIONS(743), + [aux_sym__html_block_4_token1] = ACTIONS(743), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(741), + [aux_sym__html_block_6_token1] = ACTIONS(743), + [aux_sym__html_block_6_token2] = ACTIONS(741), + [sym__open_tag_html_block] = ACTIONS(741), + [sym__open_tag_html_block_newline] = ACTIONS(741), + [sym__closing_tag_html_block] = ACTIONS(741), + [sym__closing_tag_html_block_newline] = ACTIONS(741), + [sym_backslash_escape] = ACTIONS(741), + [sym_entity_reference] = ACTIONS(741), + [sym_numeric_character_reference] = ACTIONS(741), + [sym_uri_autolink] = ACTIONS(741), + [sym_email_autolink] = ACTIONS(741), + [sym__whitespace_ge_2] = ACTIONS(741), + [aux_sym__whitespace_token1] = ACTIONS(743), + [sym__word_no_digit] = ACTIONS(741), + [sym__digits] = ACTIONS(741), + [aux_sym__newline_token1] = ACTIONS(741), + [sym__block_continuation] = ACTIONS(1075), + [sym__block_quote_continuation] = ACTIONS(1075), + [sym__block_quote_start] = ACTIONS(741), + [sym__indented_chunk_start] = ACTIONS(741), + [sym_atx_h1_marker] = ACTIONS(741), + [sym_atx_h2_marker] = ACTIONS(741), + [sym_atx_h3_marker] = ACTIONS(741), + [sym_atx_h4_marker] = ACTIONS(741), + [sym_atx_h5_marker] = ACTIONS(741), + [sym_atx_h6_marker] = ACTIONS(741), + [sym__thematic_break] = ACTIONS(741), + [sym__list_marker_minus] = ACTIONS(741), + [sym__list_marker_plus] = ACTIONS(741), + [sym__list_marker_star] = ACTIONS(741), + [sym__list_marker_parenthesis] = ACTIONS(741), + [sym__list_marker_dot] = ACTIONS(741), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(741), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(741), + [sym__list_marker_star_dont_interrupt] = ACTIONS(741), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(741), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(741), + [sym__fenced_code_block_start_backtick] = ACTIONS(741), + [sym__fenced_code_block_start_tilde] = ACTIONS(741), + [sym__blank_line_start] = ACTIONS(741), + [sym__code_span_start] = ACTIONS(741), + [sym__emphasis_open_star] = ACTIONS(741), + [sym__emphasis_open_underscore] = ACTIONS(741), + [sym__last_token_whitespace] = ACTIONS(1075), + }, + [212] = { + [aux_sym__ignore_matching_tokens] = STATE(201), + [ts_builtin_sym_end] = ACTIONS(854), + [anon_sym_BANG] = ACTIONS(854), + [anon_sym_DQUOTE] = ACTIONS(854), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR] = ACTIONS(854), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_SQUOTE] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(854), + [anon_sym_RPAREN] = ACTIONS(854), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_PLUS] = ACTIONS(854), + [anon_sym_COMMA] = ACTIONS(854), + [anon_sym_DASH] = ACTIONS(854), + [anon_sym_DOT] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(854), + [anon_sym_SEMI] = ACTIONS(854), + [anon_sym_LT] = ACTIONS(856), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_GT] = ACTIONS(854), + [anon_sym_QMARK] = ACTIONS(854), + [anon_sym_AT] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(854), + [anon_sym_BSLASH] = ACTIONS(856), + [anon_sym_RBRACK] = ACTIONS(854), + [anon_sym_CARET] = ACTIONS(854), + [anon_sym__] = ACTIONS(854), + [anon_sym_BQUOTE] = ACTIONS(854), + [anon_sym_LBRACE] = ACTIONS(854), + [anon_sym_PIPE] = ACTIONS(854), + [anon_sym_RBRACE] = ACTIONS(854), + [anon_sym_TILDE] = ACTIONS(854), + [aux_sym__html_block_1_token1] = ACTIONS(854), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(856), + [anon_sym_LT_QMARK] = ACTIONS(856), + [aux_sym__html_block_4_token1] = ACTIONS(856), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(854), + [aux_sym__html_block_6_token1] = ACTIONS(856), + [aux_sym__html_block_6_token2] = ACTIONS(854), + [sym__open_tag_html_block] = ACTIONS(854), + [sym__open_tag_html_block_newline] = ACTIONS(854), + [sym__closing_tag_html_block] = ACTIONS(854), + [sym__closing_tag_html_block_newline] = ACTIONS(854), + [sym_backslash_escape] = ACTIONS(854), + [sym_entity_reference] = ACTIONS(854), + [sym_numeric_character_reference] = ACTIONS(854), + [sym_uri_autolink] = ACTIONS(854), + [sym_email_autolink] = ACTIONS(854), + [sym__whitespace_ge_2] = ACTIONS(854), + [aux_sym__whitespace_token1] = ACTIONS(856), + [sym__word_no_digit] = ACTIONS(854), + [sym__digits] = ACTIONS(854), + [aux_sym__newline_token1] = ACTIONS(854), + [sym__block_continuation] = ACTIONS(109), + [sym__block_quote_continuation] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(854), + [sym__indented_chunk_start] = ACTIONS(854), + [sym_atx_h1_marker] = ACTIONS(854), + [sym_atx_h2_marker] = ACTIONS(854), + [sym_atx_h3_marker] = ACTIONS(854), + [sym_atx_h4_marker] = ACTIONS(854), + [sym_atx_h5_marker] = ACTIONS(854), + [sym_atx_h6_marker] = ACTIONS(854), + [sym__thematic_break] = ACTIONS(854), + [sym__list_marker_minus] = ACTIONS(854), + [sym__list_marker_plus] = ACTIONS(854), + [sym__list_marker_star] = ACTIONS(854), + [sym__list_marker_parenthesis] = ACTIONS(854), + [sym__list_marker_dot] = ACTIONS(854), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(854), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(854), + [sym__list_marker_star_dont_interrupt] = ACTIONS(854), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(854), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(854), + [sym__fenced_code_block_start_backtick] = ACTIONS(854), + [sym__fenced_code_block_start_tilde] = ACTIONS(854), + [sym__blank_line_start] = ACTIONS(854), + [sym__code_span_start] = ACTIONS(854), + [sym__emphasis_open_star] = ACTIONS(854), + [sym__emphasis_open_underscore] = ACTIONS(854), + [sym__last_token_whitespace] = ACTIONS(109), + }, + [213] = { + [aux_sym__ignore_matching_tokens] = STATE(196), + [ts_builtin_sym_end] = ACTIONS(854), + [anon_sym_BANG] = ACTIONS(854), + [anon_sym_DQUOTE] = ACTIONS(854), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR] = ACTIONS(854), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_SQUOTE] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(854), + [anon_sym_RPAREN] = ACTIONS(854), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_PLUS] = ACTIONS(854), + [anon_sym_COMMA] = ACTIONS(854), + [anon_sym_DASH] = ACTIONS(854), + [anon_sym_DOT] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(854), + [anon_sym_SEMI] = ACTIONS(854), + [anon_sym_LT] = ACTIONS(856), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_GT] = ACTIONS(854), + [anon_sym_QMARK] = ACTIONS(854), + [anon_sym_AT] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(854), + [anon_sym_BSLASH] = ACTIONS(856), + [anon_sym_RBRACK] = ACTIONS(854), + [anon_sym_CARET] = ACTIONS(854), + [anon_sym__] = ACTIONS(854), + [anon_sym_BQUOTE] = ACTIONS(854), + [anon_sym_LBRACE] = ACTIONS(854), + [anon_sym_PIPE] = ACTIONS(854), + [anon_sym_RBRACE] = ACTIONS(854), + [anon_sym_TILDE] = ACTIONS(854), + [aux_sym__html_block_1_token1] = ACTIONS(854), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(856), + [anon_sym_LT_QMARK] = ACTIONS(856), + [aux_sym__html_block_4_token1] = ACTIONS(856), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(854), + [aux_sym__html_block_6_token1] = ACTIONS(856), + [aux_sym__html_block_6_token2] = ACTIONS(854), + [sym__open_tag_html_block] = ACTIONS(854), + [sym__open_tag_html_block_newline] = ACTIONS(854), + [sym__closing_tag_html_block] = ACTIONS(854), + [sym__closing_tag_html_block_newline] = ACTIONS(854), + [sym_backslash_escape] = ACTIONS(854), + [sym_entity_reference] = ACTIONS(854), + [sym_numeric_character_reference] = ACTIONS(854), + [sym_uri_autolink] = ACTIONS(854), + [sym_email_autolink] = ACTIONS(854), + [sym__whitespace_ge_2] = ACTIONS(854), + [aux_sym__whitespace_token1] = ACTIONS(856), + [sym__word_no_digit] = ACTIONS(854), + [sym__digits] = ACTIONS(854), + [aux_sym__newline_token1] = ACTIONS(854), + [sym__block_continuation] = ACTIONS(1077), + [sym__block_quote_continuation] = ACTIONS(1077), + [sym__block_quote_start] = ACTIONS(854), + [sym__indented_chunk_start] = ACTIONS(854), + [sym_atx_h1_marker] = ACTIONS(854), + [sym_atx_h2_marker] = ACTIONS(854), + [sym_atx_h3_marker] = ACTIONS(854), + [sym_atx_h4_marker] = ACTIONS(854), + [sym_atx_h5_marker] = ACTIONS(854), + [sym_atx_h6_marker] = ACTIONS(854), + [sym__thematic_break] = ACTIONS(854), + [sym__list_marker_minus] = ACTIONS(854), + [sym__list_marker_plus] = ACTIONS(854), + [sym__list_marker_star] = ACTIONS(854), + [sym__list_marker_parenthesis] = ACTIONS(854), + [sym__list_marker_dot] = ACTIONS(854), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(854), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(854), + [sym__list_marker_star_dont_interrupt] = ACTIONS(854), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(854), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(854), + [sym__fenced_code_block_start_backtick] = ACTIONS(854), + [sym__fenced_code_block_start_tilde] = ACTIONS(854), + [sym__blank_line_start] = ACTIONS(854), + [sym__code_span_start] = ACTIONS(854), + [sym__emphasis_open_star] = ACTIONS(854), + [sym__emphasis_open_underscore] = ACTIONS(854), + [sym__last_token_whitespace] = ACTIONS(1077), + }, + [214] = { + [aux_sym__ignore_matching_tokens] = STATE(252), + [anon_sym_BANG] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(836), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR] = ACTIONS(836), + [anon_sym_PERCENT] = ACTIONS(836), + [anon_sym_AMP] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(836), + [anon_sym_LPAREN] = ACTIONS(836), + [anon_sym_RPAREN] = ACTIONS(836), + [anon_sym_STAR] = ACTIONS(836), + [anon_sym_PLUS] = ACTIONS(836), + [anon_sym_COMMA] = ACTIONS(836), + [anon_sym_DASH] = ACTIONS(836), + [anon_sym_DOT] = ACTIONS(836), + [anon_sym_SLASH] = ACTIONS(836), + [anon_sym_COLON] = ACTIONS(836), + [anon_sym_SEMI] = ACTIONS(836), + [anon_sym_LT] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(836), + [anon_sym_GT] = ACTIONS(836), + [anon_sym_QMARK] = ACTIONS(836), + [anon_sym_AT] = ACTIONS(836), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_BSLASH] = ACTIONS(838), + [anon_sym_RBRACK] = ACTIONS(836), + [anon_sym_CARET] = ACTIONS(836), + [anon_sym__] = ACTIONS(836), + [anon_sym_BQUOTE] = ACTIONS(836), + [anon_sym_LBRACE] = ACTIONS(836), + [anon_sym_PIPE] = ACTIONS(836), + [anon_sym_RBRACE] = ACTIONS(836), + [anon_sym_TILDE] = ACTIONS(836), + [aux_sym__html_block_1_token1] = ACTIONS(836), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(838), + [anon_sym_LT_QMARK] = ACTIONS(838), + [aux_sym__html_block_4_token1] = ACTIONS(838), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(836), + [aux_sym__html_block_6_token1] = ACTIONS(838), + [aux_sym__html_block_6_token2] = ACTIONS(836), + [sym__open_tag_html_block] = ACTIONS(836), + [sym__open_tag_html_block_newline] = ACTIONS(836), + [sym__closing_tag_html_block] = ACTIONS(836), + [sym__closing_tag_html_block_newline] = ACTIONS(836), + [sym_backslash_escape] = ACTIONS(836), + [sym_entity_reference] = ACTIONS(836), + [sym_numeric_character_reference] = ACTIONS(836), + [sym_uri_autolink] = ACTIONS(836), + [sym_email_autolink] = ACTIONS(836), + [sym__whitespace_ge_2] = ACTIONS(836), + [aux_sym__whitespace_token1] = ACTIONS(838), + [sym__word_no_digit] = ACTIONS(836), + [sym__digits] = ACTIONS(836), + [aux_sym__newline_token1] = ACTIONS(836), + [sym__block_close] = ACTIONS(836), + [sym__block_continuation] = ACTIONS(1079), + [sym__block_quote_continuation] = ACTIONS(1079), + [sym__block_quote_start] = ACTIONS(836), + [sym__indented_chunk_start] = ACTIONS(836), + [sym_atx_h1_marker] = ACTIONS(836), + [sym_atx_h2_marker] = ACTIONS(836), + [sym_atx_h3_marker] = ACTIONS(836), + [sym_atx_h4_marker] = ACTIONS(836), + [sym_atx_h5_marker] = ACTIONS(836), + [sym_atx_h6_marker] = ACTIONS(836), + [sym__thematic_break] = ACTIONS(836), + [sym__list_marker_minus] = ACTIONS(836), + [sym__list_marker_plus] = ACTIONS(836), + [sym__list_marker_star] = ACTIONS(836), + [sym__list_marker_parenthesis] = ACTIONS(836), + [sym__list_marker_dot] = ACTIONS(836), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(836), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(836), + [sym__list_marker_star_dont_interrupt] = ACTIONS(836), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(836), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(836), + [sym__fenced_code_block_start_backtick] = ACTIONS(836), + [sym__fenced_code_block_start_tilde] = ACTIONS(836), + [sym__blank_line_start] = ACTIONS(836), + [sym__code_span_start] = ACTIONS(836), + [sym__emphasis_open_star] = ACTIONS(836), + [sym__emphasis_open_underscore] = ACTIONS(836), + [sym__last_token_whitespace] = ACTIONS(1079), + }, + [215] = { + [aux_sym__ignore_matching_tokens] = STATE(201), + [ts_builtin_sym_end] = ACTIONS(844), + [anon_sym_BANG] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(844), + [anon_sym_POUND] = ACTIONS(844), + [anon_sym_DOLLAR] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_AMP] = ACTIONS(846), + [anon_sym_SQUOTE] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(844), + [anon_sym_RPAREN] = ACTIONS(844), + [anon_sym_STAR] = ACTIONS(844), + [anon_sym_PLUS] = ACTIONS(844), + [anon_sym_COMMA] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOT] = ACTIONS(844), + [anon_sym_SLASH] = ACTIONS(844), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_SEMI] = ACTIONS(844), + [anon_sym_LT] = ACTIONS(846), + [anon_sym_EQ] = ACTIONS(844), + [anon_sym_GT] = ACTIONS(844), + [anon_sym_QMARK] = ACTIONS(844), + [anon_sym_AT] = ACTIONS(844), + [anon_sym_LBRACK] = ACTIONS(844), + [anon_sym_BSLASH] = ACTIONS(846), + [anon_sym_RBRACK] = ACTIONS(844), + [anon_sym_CARET] = ACTIONS(844), + [anon_sym__] = ACTIONS(844), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(844), + [anon_sym_PIPE] = ACTIONS(844), + [anon_sym_RBRACE] = ACTIONS(844), + [anon_sym_TILDE] = ACTIONS(844), + [aux_sym__html_block_1_token1] = ACTIONS(844), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(846), + [anon_sym_LT_QMARK] = ACTIONS(846), + [aux_sym__html_block_4_token1] = ACTIONS(846), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(844), + [aux_sym__html_block_6_token1] = ACTIONS(846), + [aux_sym__html_block_6_token2] = ACTIONS(844), + [sym__open_tag_html_block] = ACTIONS(844), + [sym__open_tag_html_block_newline] = ACTIONS(844), + [sym__closing_tag_html_block] = ACTIONS(844), + [sym__closing_tag_html_block_newline] = ACTIONS(844), + [sym_backslash_escape] = ACTIONS(844), + [sym_entity_reference] = ACTIONS(844), + [sym_numeric_character_reference] = ACTIONS(844), + [sym_uri_autolink] = ACTIONS(844), + [sym_email_autolink] = ACTIONS(844), + [sym__whitespace_ge_2] = ACTIONS(844), + [aux_sym__whitespace_token1] = ACTIONS(846), + [sym__word_no_digit] = ACTIONS(844), + [sym__digits] = ACTIONS(844), + [aux_sym__newline_token1] = ACTIONS(844), + [sym__block_continuation] = ACTIONS(109), + [sym__block_quote_continuation] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(844), + [sym__indented_chunk_start] = ACTIONS(844), + [sym_atx_h1_marker] = ACTIONS(844), + [sym_atx_h2_marker] = ACTIONS(844), + [sym_atx_h3_marker] = ACTIONS(844), + [sym_atx_h4_marker] = ACTIONS(844), + [sym_atx_h5_marker] = ACTIONS(844), + [sym_atx_h6_marker] = ACTIONS(844), + [sym__thematic_break] = ACTIONS(844), + [sym__list_marker_minus] = ACTIONS(844), + [sym__list_marker_plus] = ACTIONS(844), + [sym__list_marker_star] = ACTIONS(844), + [sym__list_marker_parenthesis] = ACTIONS(844), + [sym__list_marker_dot] = ACTIONS(844), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(844), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(844), + [sym__list_marker_star_dont_interrupt] = ACTIONS(844), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(844), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(844), + [sym__fenced_code_block_start_backtick] = ACTIONS(844), + [sym__fenced_code_block_start_tilde] = ACTIONS(844), + [sym__blank_line_start] = ACTIONS(844), + [sym__code_span_start] = ACTIONS(844), + [sym__emphasis_open_star] = ACTIONS(844), + [sym__emphasis_open_underscore] = ACTIONS(844), + [sym__last_token_whitespace] = ACTIONS(109), + }, + [216] = { + [aux_sym__ignore_matching_tokens] = STATE(126), + [ts_builtin_sym_end] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(747), + [anon_sym_POUND] = ACTIONS(747), + [anon_sym_DOLLAR] = ACTIONS(747), + [anon_sym_PERCENT] = ACTIONS(747), + [anon_sym_AMP] = ACTIONS(749), + [anon_sym_SQUOTE] = ACTIONS(747), + [anon_sym_LPAREN] = ACTIONS(747), + [anon_sym_RPAREN] = ACTIONS(747), + [anon_sym_STAR] = ACTIONS(747), + [anon_sym_PLUS] = ACTIONS(747), + [anon_sym_COMMA] = ACTIONS(747), + [anon_sym_DASH] = ACTIONS(747), + [anon_sym_DOT] = ACTIONS(747), + [anon_sym_SLASH] = ACTIONS(747), + [anon_sym_COLON] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(747), + [anon_sym_LT] = ACTIONS(749), + [anon_sym_EQ] = ACTIONS(747), + [anon_sym_GT] = ACTIONS(747), + [anon_sym_QMARK] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_LBRACK] = ACTIONS(747), + [anon_sym_BSLASH] = ACTIONS(749), + [anon_sym_RBRACK] = ACTIONS(747), + [anon_sym_CARET] = ACTIONS(747), + [anon_sym__] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(747), + [anon_sym_LBRACE] = ACTIONS(747), + [anon_sym_PIPE] = ACTIONS(747), + [anon_sym_RBRACE] = ACTIONS(747), + [anon_sym_TILDE] = ACTIONS(747), + [aux_sym__html_block_1_token1] = ACTIONS(747), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(749), + [anon_sym_LT_QMARK] = ACTIONS(749), + [aux_sym__html_block_4_token1] = ACTIONS(749), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(747), + [aux_sym__html_block_6_token1] = ACTIONS(749), + [aux_sym__html_block_6_token2] = ACTIONS(747), + [sym__open_tag_html_block] = ACTIONS(747), + [sym__open_tag_html_block_newline] = ACTIONS(747), + [sym__closing_tag_html_block] = ACTIONS(747), + [sym__closing_tag_html_block_newline] = ACTIONS(747), + [sym_backslash_escape] = ACTIONS(747), + [sym_entity_reference] = ACTIONS(747), + [sym_numeric_character_reference] = ACTIONS(747), + [sym_uri_autolink] = ACTIONS(747), + [sym_email_autolink] = ACTIONS(747), + [sym__whitespace_ge_2] = ACTIONS(747), + [aux_sym__whitespace_token1] = ACTIONS(749), + [sym__word_no_digit] = ACTIONS(747), + [sym__digits] = ACTIONS(747), + [aux_sym__newline_token1] = ACTIONS(747), + [sym__block_continuation] = ACTIONS(1081), + [sym__block_quote_continuation] = ACTIONS(1081), + [sym__block_quote_start] = ACTIONS(747), + [sym__indented_chunk_start] = ACTIONS(747), + [sym_atx_h1_marker] = ACTIONS(747), + [sym_atx_h2_marker] = ACTIONS(747), + [sym_atx_h3_marker] = ACTIONS(747), + [sym_atx_h4_marker] = ACTIONS(747), + [sym_atx_h5_marker] = ACTIONS(747), + [sym_atx_h6_marker] = ACTIONS(747), + [sym__thematic_break] = ACTIONS(747), + [sym__list_marker_minus] = ACTIONS(747), + [sym__list_marker_plus] = ACTIONS(747), + [sym__list_marker_star] = ACTIONS(747), + [sym__list_marker_parenthesis] = ACTIONS(747), + [sym__list_marker_dot] = ACTIONS(747), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(747), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(747), + [sym__list_marker_star_dont_interrupt] = ACTIONS(747), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(747), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(747), + [sym__fenced_code_block_start_backtick] = ACTIONS(747), + [sym__fenced_code_block_start_tilde] = ACTIONS(747), + [sym__blank_line_start] = ACTIONS(747), + [sym__code_span_start] = ACTIONS(747), + [sym__emphasis_open_star] = ACTIONS(747), + [sym__emphasis_open_underscore] = ACTIONS(747), + [sym__last_token_whitespace] = ACTIONS(1081), + }, + [217] = { + [aux_sym__ignore_matching_tokens] = STATE(193), + [ts_builtin_sym_end] = ACTIONS(844), + [anon_sym_BANG] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(844), + [anon_sym_POUND] = ACTIONS(844), + [anon_sym_DOLLAR] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_AMP] = ACTIONS(846), + [anon_sym_SQUOTE] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(844), + [anon_sym_RPAREN] = ACTIONS(844), + [anon_sym_STAR] = ACTIONS(844), + [anon_sym_PLUS] = ACTIONS(844), + [anon_sym_COMMA] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOT] = ACTIONS(844), + [anon_sym_SLASH] = ACTIONS(844), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_SEMI] = ACTIONS(844), + [anon_sym_LT] = ACTIONS(846), + [anon_sym_EQ] = ACTIONS(844), + [anon_sym_GT] = ACTIONS(844), + [anon_sym_QMARK] = ACTIONS(844), + [anon_sym_AT] = ACTIONS(844), + [anon_sym_LBRACK] = ACTIONS(844), + [anon_sym_BSLASH] = ACTIONS(846), + [anon_sym_RBRACK] = ACTIONS(844), + [anon_sym_CARET] = ACTIONS(844), + [anon_sym__] = ACTIONS(844), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(844), + [anon_sym_PIPE] = ACTIONS(844), + [anon_sym_RBRACE] = ACTIONS(844), + [anon_sym_TILDE] = ACTIONS(844), + [aux_sym__html_block_1_token1] = ACTIONS(844), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(846), + [anon_sym_LT_QMARK] = ACTIONS(846), + [aux_sym__html_block_4_token1] = ACTIONS(846), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(844), + [aux_sym__html_block_6_token1] = ACTIONS(846), + [aux_sym__html_block_6_token2] = ACTIONS(844), + [sym__open_tag_html_block] = ACTIONS(844), + [sym__open_tag_html_block_newline] = ACTIONS(844), + [sym__closing_tag_html_block] = ACTIONS(844), + [sym__closing_tag_html_block_newline] = ACTIONS(844), + [sym_backslash_escape] = ACTIONS(844), + [sym_entity_reference] = ACTIONS(844), + [sym_numeric_character_reference] = ACTIONS(844), + [sym_uri_autolink] = ACTIONS(844), + [sym_email_autolink] = ACTIONS(844), + [sym__whitespace_ge_2] = ACTIONS(844), + [aux_sym__whitespace_token1] = ACTIONS(846), + [sym__word_no_digit] = ACTIONS(844), + [sym__digits] = ACTIONS(844), + [aux_sym__newline_token1] = ACTIONS(844), + [sym__block_continuation] = ACTIONS(1083), + [sym__block_quote_continuation] = ACTIONS(1083), + [sym__block_quote_start] = ACTIONS(844), + [sym__indented_chunk_start] = ACTIONS(844), + [sym_atx_h1_marker] = ACTIONS(844), + [sym_atx_h2_marker] = ACTIONS(844), + [sym_atx_h3_marker] = ACTIONS(844), + [sym_atx_h4_marker] = ACTIONS(844), + [sym_atx_h5_marker] = ACTIONS(844), + [sym_atx_h6_marker] = ACTIONS(844), + [sym__thematic_break] = ACTIONS(844), + [sym__list_marker_minus] = ACTIONS(844), + [sym__list_marker_plus] = ACTIONS(844), + [sym__list_marker_star] = ACTIONS(844), + [sym__list_marker_parenthesis] = ACTIONS(844), + [sym__list_marker_dot] = ACTIONS(844), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(844), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(844), + [sym__list_marker_star_dont_interrupt] = ACTIONS(844), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(844), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(844), + [sym__fenced_code_block_start_backtick] = ACTIONS(844), + [sym__fenced_code_block_start_tilde] = ACTIONS(844), + [sym__blank_line_start] = ACTIONS(844), + [sym__code_span_start] = ACTIONS(844), + [sym__emphasis_open_star] = ACTIONS(844), + [sym__emphasis_open_underscore] = ACTIONS(844), + [sym__last_token_whitespace] = ACTIONS(1083), + }, + [218] = { + [aux_sym__ignore_matching_tokens] = STATE(160), + [anon_sym_BANG] = ACTIONS(830), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_POUND] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(830), + [anon_sym_PERCENT] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(832), + [anon_sym_SQUOTE] = ACTIONS(830), + [anon_sym_LPAREN] = ACTIONS(830), + [anon_sym_RPAREN] = ACTIONS(830), + [anon_sym_STAR] = ACTIONS(830), + [anon_sym_PLUS] = ACTIONS(830), + [anon_sym_COMMA] = ACTIONS(830), + [anon_sym_DASH] = ACTIONS(830), + [anon_sym_DOT] = ACTIONS(830), + [anon_sym_SLASH] = ACTIONS(830), + [anon_sym_COLON] = ACTIONS(830), + [anon_sym_SEMI] = ACTIONS(830), + [anon_sym_LT] = ACTIONS(832), + [anon_sym_EQ] = ACTIONS(830), + [anon_sym_GT] = ACTIONS(830), + [anon_sym_QMARK] = ACTIONS(830), + [anon_sym_AT] = ACTIONS(830), + [anon_sym_LBRACK] = ACTIONS(830), + [anon_sym_BSLASH] = ACTIONS(832), + [anon_sym_RBRACK] = ACTIONS(830), + [anon_sym_CARET] = ACTIONS(830), + [anon_sym__] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_LBRACE] = ACTIONS(830), + [anon_sym_PIPE] = ACTIONS(830), + [anon_sym_RBRACE] = ACTIONS(830), + [anon_sym_TILDE] = ACTIONS(830), + [aux_sym__html_block_1_token1] = ACTIONS(830), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(832), + [anon_sym_LT_QMARK] = ACTIONS(832), + [aux_sym__html_block_4_token1] = ACTIONS(832), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(830), + [aux_sym__html_block_6_token1] = ACTIONS(832), + [aux_sym__html_block_6_token2] = ACTIONS(830), + [sym__open_tag_html_block] = ACTIONS(830), + [sym__open_tag_html_block_newline] = ACTIONS(830), + [sym__closing_tag_html_block] = ACTIONS(830), + [sym__closing_tag_html_block_newline] = ACTIONS(830), + [sym_backslash_escape] = ACTIONS(830), + [sym_entity_reference] = ACTIONS(830), + [sym_numeric_character_reference] = ACTIONS(830), + [sym_uri_autolink] = ACTIONS(830), + [sym_email_autolink] = ACTIONS(830), + [sym__whitespace_ge_2] = ACTIONS(830), + [aux_sym__whitespace_token1] = ACTIONS(832), + [sym__word_no_digit] = ACTIONS(830), + [sym__digits] = ACTIONS(830), + [aux_sym__newline_token1] = ACTIONS(830), + [sym__block_close] = ACTIONS(830), + [sym__block_continuation] = ACTIONS(113), + [sym__block_quote_continuation] = ACTIONS(113), + [sym__block_quote_start] = ACTIONS(830), + [sym__indented_chunk_start] = ACTIONS(830), + [sym_atx_h1_marker] = ACTIONS(830), + [sym_atx_h2_marker] = ACTIONS(830), + [sym_atx_h3_marker] = ACTIONS(830), + [sym_atx_h4_marker] = ACTIONS(830), + [sym_atx_h5_marker] = ACTIONS(830), + [sym_atx_h6_marker] = ACTIONS(830), + [sym__thematic_break] = ACTIONS(830), + [sym__list_marker_minus] = ACTIONS(830), + [sym__list_marker_plus] = ACTIONS(830), + [sym__list_marker_star] = ACTIONS(830), + [sym__list_marker_parenthesis] = ACTIONS(830), + [sym__list_marker_dot] = ACTIONS(830), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(830), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(830), + [sym__list_marker_star_dont_interrupt] = ACTIONS(830), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(830), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(830), + [sym__fenced_code_block_start_backtick] = ACTIONS(830), + [sym__fenced_code_block_start_tilde] = ACTIONS(830), + [sym__blank_line_start] = ACTIONS(830), + [sym__code_span_start] = ACTIONS(830), + [sym__emphasis_open_star] = ACTIONS(830), + [sym__emphasis_open_underscore] = ACTIONS(830), + [sym__last_token_whitespace] = ACTIONS(113), + }, + [219] = { + [aux_sym__ignore_matching_tokens] = STATE(247), + [anon_sym_BANG] = ACTIONS(830), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_POUND] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(830), + [anon_sym_PERCENT] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(832), + [anon_sym_SQUOTE] = ACTIONS(830), + [anon_sym_LPAREN] = ACTIONS(830), + [anon_sym_RPAREN] = ACTIONS(830), + [anon_sym_STAR] = ACTIONS(830), + [anon_sym_PLUS] = ACTIONS(830), + [anon_sym_COMMA] = ACTIONS(830), + [anon_sym_DASH] = ACTIONS(830), + [anon_sym_DOT] = ACTIONS(830), + [anon_sym_SLASH] = ACTIONS(830), + [anon_sym_COLON] = ACTIONS(830), + [anon_sym_SEMI] = ACTIONS(830), + [anon_sym_LT] = ACTIONS(832), + [anon_sym_EQ] = ACTIONS(830), + [anon_sym_GT] = ACTIONS(830), + [anon_sym_QMARK] = ACTIONS(830), + [anon_sym_AT] = ACTIONS(830), + [anon_sym_LBRACK] = ACTIONS(830), + [anon_sym_BSLASH] = ACTIONS(832), + [anon_sym_RBRACK] = ACTIONS(830), + [anon_sym_CARET] = ACTIONS(830), + [anon_sym__] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_LBRACE] = ACTIONS(830), + [anon_sym_PIPE] = ACTIONS(830), + [anon_sym_RBRACE] = ACTIONS(830), + [anon_sym_TILDE] = ACTIONS(830), + [aux_sym__html_block_1_token1] = ACTIONS(830), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(832), + [anon_sym_LT_QMARK] = ACTIONS(832), + [aux_sym__html_block_4_token1] = ACTIONS(832), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(830), + [aux_sym__html_block_6_token1] = ACTIONS(832), + [aux_sym__html_block_6_token2] = ACTIONS(830), + [sym__open_tag_html_block] = ACTIONS(830), + [sym__open_tag_html_block_newline] = ACTIONS(830), + [sym__closing_tag_html_block] = ACTIONS(830), + [sym__closing_tag_html_block_newline] = ACTIONS(830), + [sym_backslash_escape] = ACTIONS(830), + [sym_entity_reference] = ACTIONS(830), + [sym_numeric_character_reference] = ACTIONS(830), + [sym_uri_autolink] = ACTIONS(830), + [sym_email_autolink] = ACTIONS(830), + [sym__whitespace_ge_2] = ACTIONS(830), + [aux_sym__whitespace_token1] = ACTIONS(832), + [sym__word_no_digit] = ACTIONS(830), + [sym__digits] = ACTIONS(830), + [aux_sym__newline_token1] = ACTIONS(830), + [sym__block_close] = ACTIONS(830), + [sym__block_continuation] = ACTIONS(1085), + [sym__block_quote_continuation] = ACTIONS(1085), + [sym__block_quote_start] = ACTIONS(830), + [sym__indented_chunk_start] = ACTIONS(830), + [sym_atx_h1_marker] = ACTIONS(830), + [sym_atx_h2_marker] = ACTIONS(830), + [sym_atx_h3_marker] = ACTIONS(830), + [sym_atx_h4_marker] = ACTIONS(830), + [sym_atx_h5_marker] = ACTIONS(830), + [sym_atx_h6_marker] = ACTIONS(830), + [sym__thematic_break] = ACTIONS(830), + [sym__list_marker_minus] = ACTIONS(830), + [sym__list_marker_plus] = ACTIONS(830), + [sym__list_marker_star] = ACTIONS(830), + [sym__list_marker_parenthesis] = ACTIONS(830), + [sym__list_marker_dot] = ACTIONS(830), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(830), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(830), + [sym__list_marker_star_dont_interrupt] = ACTIONS(830), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(830), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(830), + [sym__fenced_code_block_start_backtick] = ACTIONS(830), + [sym__fenced_code_block_start_tilde] = ACTIONS(830), + [sym__blank_line_start] = ACTIONS(830), + [sym__code_span_start] = ACTIONS(830), + [sym__emphasis_open_star] = ACTIONS(830), + [sym__emphasis_open_underscore] = ACTIONS(830), + [sym__last_token_whitespace] = ACTIONS(1085), + }, + [220] = { + [aux_sym__ignore_matching_tokens] = STATE(128), + [ts_builtin_sym_end] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(753), + [anon_sym_DOLLAR] = ACTIONS(753), + [anon_sym_PERCENT] = ACTIONS(753), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_LPAREN] = ACTIONS(753), + [anon_sym_RPAREN] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_COMMA] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(753), + [anon_sym_SLASH] = ACTIONS(753), + [anon_sym_COLON] = ACTIONS(753), + [anon_sym_SEMI] = ACTIONS(753), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_EQ] = ACTIONS(753), + [anon_sym_GT] = ACTIONS(753), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_AT] = ACTIONS(753), + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_BSLASH] = ACTIONS(755), + [anon_sym_RBRACK] = ACTIONS(753), + [anon_sym_CARET] = ACTIONS(753), + [anon_sym__] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(753), + [anon_sym_LBRACE] = ACTIONS(753), + [anon_sym_PIPE] = ACTIONS(753), + [anon_sym_RBRACE] = ACTIONS(753), + [anon_sym_TILDE] = ACTIONS(753), + [aux_sym__html_block_1_token1] = ACTIONS(753), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(755), + [anon_sym_LT_QMARK] = ACTIONS(755), + [aux_sym__html_block_4_token1] = ACTIONS(755), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(753), + [aux_sym__html_block_6_token1] = ACTIONS(755), + [aux_sym__html_block_6_token2] = ACTIONS(753), + [sym__open_tag_html_block] = ACTIONS(753), + [sym__open_tag_html_block_newline] = ACTIONS(753), + [sym__closing_tag_html_block] = ACTIONS(753), + [sym__closing_tag_html_block_newline] = ACTIONS(753), + [sym_backslash_escape] = ACTIONS(753), + [sym_entity_reference] = ACTIONS(753), + [sym_numeric_character_reference] = ACTIONS(753), + [sym_uri_autolink] = ACTIONS(753), + [sym_email_autolink] = ACTIONS(753), + [sym__whitespace_ge_2] = ACTIONS(753), + [aux_sym__whitespace_token1] = ACTIONS(755), + [sym__word_no_digit] = ACTIONS(753), + [sym__digits] = ACTIONS(753), + [aux_sym__newline_token1] = ACTIONS(753), + [sym__block_continuation] = ACTIONS(1087), + [sym__block_quote_continuation] = ACTIONS(1087), + [sym__block_quote_start] = ACTIONS(753), + [sym__indented_chunk_start] = ACTIONS(753), + [sym_atx_h1_marker] = ACTIONS(753), + [sym_atx_h2_marker] = ACTIONS(753), + [sym_atx_h3_marker] = ACTIONS(753), + [sym_atx_h4_marker] = ACTIONS(753), + [sym_atx_h5_marker] = ACTIONS(753), + [sym_atx_h6_marker] = ACTIONS(753), + [sym__thematic_break] = ACTIONS(753), + [sym__list_marker_minus] = ACTIONS(753), + [sym__list_marker_plus] = ACTIONS(753), + [sym__list_marker_star] = ACTIONS(753), + [sym__list_marker_parenthesis] = ACTIONS(753), + [sym__list_marker_dot] = ACTIONS(753), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(753), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(753), + [sym__list_marker_star_dont_interrupt] = ACTIONS(753), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(753), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(753), + [sym__fenced_code_block_start_backtick] = ACTIONS(753), + [sym__fenced_code_block_start_tilde] = ACTIONS(753), + [sym__blank_line_start] = ACTIONS(753), + [sym__code_span_start] = ACTIONS(753), + [sym__emphasis_open_star] = ACTIONS(753), + [sym__emphasis_open_underscore] = ACTIONS(753), + [sym__last_token_whitespace] = ACTIONS(1087), + }, + [221] = { + [aux_sym__ignore_matching_tokens] = STATE(205), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_DQUOTE] = ACTIONS(1071), + [anon_sym_POUND] = ACTIONS(1071), + [anon_sym_DOLLAR] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_AMP] = ACTIONS(1073), + [anon_sym_SQUOTE] = ACTIONS(1071), + [anon_sym_LPAREN] = ACTIONS(1071), + [anon_sym_RPAREN] = ACTIONS(1071), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(1071), + [anon_sym_COMMA] = ACTIONS(1071), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_DOT] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_COLON] = ACTIONS(1071), + [anon_sym_SEMI] = ACTIONS(1071), + [anon_sym_LT] = ACTIONS(1073), + [anon_sym_EQ] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_AT] = ACTIONS(1071), + [anon_sym_LBRACK] = ACTIONS(1071), + [anon_sym_BSLASH] = ACTIONS(1073), + [anon_sym_RBRACK] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1071), + [anon_sym__] = ACTIONS(1071), + [anon_sym_BQUOTE] = ACTIONS(1071), + [anon_sym_LBRACE] = ACTIONS(1071), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_RBRACE] = ACTIONS(1071), + [anon_sym_TILDE] = ACTIONS(1071), + [aux_sym__html_block_1_token1] = ACTIONS(1071), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1073), + [anon_sym_LT_QMARK] = ACTIONS(1073), + [aux_sym__html_block_4_token1] = ACTIONS(1073), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1071), + [aux_sym__html_block_6_token1] = ACTIONS(1073), + [aux_sym__html_block_6_token2] = ACTIONS(1071), + [sym__open_tag_html_block] = ACTIONS(1071), + [sym__open_tag_html_block_newline] = ACTIONS(1071), + [sym__closing_tag_html_block] = ACTIONS(1071), + [sym__closing_tag_html_block_newline] = ACTIONS(1071), + [sym_backslash_escape] = ACTIONS(1071), + [sym_entity_reference] = ACTIONS(1071), + [sym_numeric_character_reference] = ACTIONS(1071), + [sym_uri_autolink] = ACTIONS(1071), + [sym_email_autolink] = ACTIONS(1071), + [sym__whitespace_ge_2] = ACTIONS(1071), + [aux_sym__whitespace_token1] = ACTIONS(1073), + [sym__word_no_digit] = ACTIONS(1071), + [sym__digits] = ACTIONS(1071), + [aux_sym__newline_token1] = ACTIONS(1071), + [sym__block_close] = ACTIONS(1071), + [sym__block_continuation] = ACTIONS(1089), + [sym__block_quote_continuation] = ACTIONS(1089), + [sym__block_quote_start] = ACTIONS(1071), + [sym__indented_chunk_start] = ACTIONS(1071), + [sym_atx_h1_marker] = ACTIONS(1071), + [sym_atx_h2_marker] = ACTIONS(1071), + [sym_atx_h3_marker] = ACTIONS(1071), + [sym_atx_h4_marker] = ACTIONS(1071), + [sym_atx_h5_marker] = ACTIONS(1071), + [sym_atx_h6_marker] = ACTIONS(1071), + [sym__thematic_break] = ACTIONS(1071), + [sym__list_marker_minus] = ACTIONS(1071), + [sym__list_marker_plus] = ACTIONS(1071), + [sym__list_marker_star] = ACTIONS(1071), + [sym__list_marker_parenthesis] = ACTIONS(1071), + [sym__list_marker_dot] = ACTIONS(1071), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1071), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1071), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1071), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1071), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1071), + [sym__fenced_code_block_start_backtick] = ACTIONS(1071), + [sym__fenced_code_block_start_tilde] = ACTIONS(1071), + [sym__blank_line_start] = ACTIONS(1071), + [sym__code_span_start] = ACTIONS(1071), + [sym__emphasis_open_star] = ACTIONS(1071), + [sym__emphasis_open_underscore] = ACTIONS(1071), + [sym__last_token_whitespace] = ACTIONS(1089), + }, + [222] = { + [aux_sym__ignore_matching_tokens] = STATE(268), + [ts_builtin_sym_end] = ACTIONS(555), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_DQUOTE] = ACTIONS(555), + [anon_sym_POUND] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(555), + [anon_sym_PERCENT] = ACTIONS(555), + [anon_sym_AMP] = ACTIONS(557), + [anon_sym_SQUOTE] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_RPAREN] = ACTIONS(555), + [anon_sym_STAR] = ACTIONS(555), + [anon_sym_PLUS] = ACTIONS(555), + [anon_sym_COMMA] = ACTIONS(555), + [anon_sym_DASH] = ACTIONS(555), + [anon_sym_DOT] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(555), + [anon_sym_SEMI] = ACTIONS(555), + [anon_sym_LT] = ACTIONS(557), + [anon_sym_EQ] = ACTIONS(555), + [anon_sym_GT] = ACTIONS(555), + [anon_sym_QMARK] = ACTIONS(555), + [anon_sym_AT] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(557), + [anon_sym_RBRACK] = ACTIONS(555), + [anon_sym_CARET] = ACTIONS(555), + [anon_sym__] = ACTIONS(555), + [anon_sym_BQUOTE] = ACTIONS(555), + [anon_sym_LBRACE] = ACTIONS(555), + [anon_sym_PIPE] = ACTIONS(555), + [anon_sym_RBRACE] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(555), + [aux_sym__html_block_1_token1] = ACTIONS(555), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(557), + [anon_sym_LT_QMARK] = ACTIONS(557), + [aux_sym__html_block_4_token1] = ACTIONS(557), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(555), + [aux_sym__html_block_6_token1] = ACTIONS(557), + [aux_sym__html_block_6_token2] = ACTIONS(555), + [sym__open_tag_html_block] = ACTIONS(555), + [sym__open_tag_html_block_newline] = ACTIONS(555), + [sym__closing_tag_html_block] = ACTIONS(555), + [sym__closing_tag_html_block_newline] = ACTIONS(555), + [sym_backslash_escape] = ACTIONS(555), + [sym_entity_reference] = ACTIONS(555), + [sym_numeric_character_reference] = ACTIONS(555), + [sym_uri_autolink] = ACTIONS(555), + [sym_email_autolink] = ACTIONS(555), + [sym__whitespace_ge_2] = ACTIONS(555), + [aux_sym__whitespace_token1] = ACTIONS(557), + [sym__word_no_digit] = ACTIONS(555), + [sym__digits] = ACTIONS(555), + [aux_sym__newline_token1] = ACTIONS(555), + [sym__block_continuation] = ACTIONS(1091), + [sym__block_quote_continuation] = ACTIONS(1091), + [sym__block_quote_start] = ACTIONS(555), + [sym__indented_chunk_start] = ACTIONS(555), + [sym_atx_h1_marker] = ACTIONS(555), + [sym_atx_h2_marker] = ACTIONS(555), + [sym_atx_h3_marker] = ACTIONS(555), + [sym_atx_h4_marker] = ACTIONS(555), + [sym_atx_h5_marker] = ACTIONS(555), + [sym_atx_h6_marker] = ACTIONS(555), + [sym__thematic_break] = ACTIONS(555), + [sym__list_marker_minus] = ACTIONS(555), + [sym__list_marker_plus] = ACTIONS(555), + [sym__list_marker_star] = ACTIONS(555), + [sym__list_marker_parenthesis] = ACTIONS(555), + [sym__list_marker_dot] = ACTIONS(555), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(555), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(555), + [sym__list_marker_star_dont_interrupt] = ACTIONS(555), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(555), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(555), + [sym__fenced_code_block_start_backtick] = ACTIONS(555), + [sym__fenced_code_block_start_tilde] = ACTIONS(555), + [sym__blank_line_start] = ACTIONS(555), + [sym__code_span_start] = ACTIONS(555), + [sym__emphasis_open_star] = ACTIONS(555), + [sym__emphasis_open_underscore] = ACTIONS(555), + [sym__last_token_whitespace] = ACTIONS(1091), + }, + [223] = { + [aux_sym__ignore_matching_tokens] = STATE(130), + [ts_builtin_sym_end] = ACTIONS(784), + [anon_sym_BANG] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(784), + [anon_sym_POUND] = ACTIONS(784), + [anon_sym_DOLLAR] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(784), + [anon_sym_AMP] = ACTIONS(786), + [anon_sym_SQUOTE] = ACTIONS(784), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_RPAREN] = ACTIONS(784), + [anon_sym_STAR] = ACTIONS(784), + [anon_sym_PLUS] = ACTIONS(784), + [anon_sym_COMMA] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(784), + [anon_sym_DOT] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_COLON] = ACTIONS(784), + [anon_sym_SEMI] = ACTIONS(784), + [anon_sym_LT] = ACTIONS(786), + [anon_sym_EQ] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(784), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_AT] = ACTIONS(784), + [anon_sym_LBRACK] = ACTIONS(784), + [anon_sym_BSLASH] = ACTIONS(786), + [anon_sym_RBRACK] = ACTIONS(784), + [anon_sym_CARET] = ACTIONS(784), + [anon_sym__] = ACTIONS(784), + [anon_sym_BQUOTE] = ACTIONS(784), + [anon_sym_LBRACE] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(784), + [anon_sym_RBRACE] = ACTIONS(784), + [anon_sym_TILDE] = ACTIONS(784), + [aux_sym__html_block_1_token1] = ACTIONS(784), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(786), + [anon_sym_LT_QMARK] = ACTIONS(786), + [aux_sym__html_block_4_token1] = ACTIONS(786), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(784), + [aux_sym__html_block_6_token1] = ACTIONS(786), + [aux_sym__html_block_6_token2] = ACTIONS(784), + [sym__open_tag_html_block] = ACTIONS(784), + [sym__open_tag_html_block_newline] = ACTIONS(784), + [sym__closing_tag_html_block] = ACTIONS(784), + [sym__closing_tag_html_block_newline] = ACTIONS(784), + [sym_backslash_escape] = ACTIONS(784), + [sym_entity_reference] = ACTIONS(784), + [sym_numeric_character_reference] = ACTIONS(784), + [sym_uri_autolink] = ACTIONS(784), + [sym_email_autolink] = ACTIONS(784), + [sym__whitespace_ge_2] = ACTIONS(784), + [aux_sym__whitespace_token1] = ACTIONS(786), + [sym__word_no_digit] = ACTIONS(784), + [sym__digits] = ACTIONS(784), + [aux_sym__newline_token1] = ACTIONS(784), + [sym__block_continuation] = ACTIONS(1093), + [sym__block_quote_continuation] = ACTIONS(1093), + [sym__block_quote_start] = ACTIONS(784), + [sym__indented_chunk_start] = ACTIONS(784), + [sym_atx_h1_marker] = ACTIONS(784), + [sym_atx_h2_marker] = ACTIONS(784), + [sym_atx_h3_marker] = ACTIONS(784), + [sym_atx_h4_marker] = ACTIONS(784), + [sym_atx_h5_marker] = ACTIONS(784), + [sym_atx_h6_marker] = ACTIONS(784), + [sym__thematic_break] = ACTIONS(784), + [sym__list_marker_minus] = ACTIONS(784), + [sym__list_marker_plus] = ACTIONS(784), + [sym__list_marker_star] = ACTIONS(784), + [sym__list_marker_parenthesis] = ACTIONS(784), + [sym__list_marker_dot] = ACTIONS(784), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(784), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(784), + [sym__list_marker_star_dont_interrupt] = ACTIONS(784), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(784), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(784), + [sym__fenced_code_block_start_backtick] = ACTIONS(784), + [sym__fenced_code_block_start_tilde] = ACTIONS(784), + [sym__blank_line_start] = ACTIONS(784), + [sym__code_span_start] = ACTIONS(784), + [sym__emphasis_open_star] = ACTIONS(784), + [sym__emphasis_open_underscore] = ACTIONS(784), + [sym__last_token_whitespace] = ACTIONS(1093), + }, + [224] = { + [aux_sym__ignore_matching_tokens] = STATE(207), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_DQUOTE] = ACTIONS(555), + [anon_sym_POUND] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(555), + [anon_sym_PERCENT] = ACTIONS(555), + [anon_sym_AMP] = ACTIONS(557), + [anon_sym_SQUOTE] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_RPAREN] = ACTIONS(555), + [anon_sym_STAR] = ACTIONS(555), + [anon_sym_PLUS] = ACTIONS(555), + [anon_sym_COMMA] = ACTIONS(555), + [anon_sym_DASH] = ACTIONS(555), + [anon_sym_DOT] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(555), + [anon_sym_SEMI] = ACTIONS(555), + [anon_sym_LT] = ACTIONS(557), + [anon_sym_EQ] = ACTIONS(555), + [anon_sym_GT] = ACTIONS(555), + [anon_sym_QMARK] = ACTIONS(555), + [anon_sym_AT] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(557), + [anon_sym_RBRACK] = ACTIONS(555), + [anon_sym_CARET] = ACTIONS(555), + [anon_sym__] = ACTIONS(555), + [anon_sym_BQUOTE] = ACTIONS(555), + [anon_sym_LBRACE] = ACTIONS(555), + [anon_sym_PIPE] = ACTIONS(555), + [anon_sym_RBRACE] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(555), + [aux_sym__html_block_1_token1] = ACTIONS(555), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(557), + [anon_sym_LT_QMARK] = ACTIONS(557), + [aux_sym__html_block_4_token1] = ACTIONS(557), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(555), + [aux_sym__html_block_6_token1] = ACTIONS(557), + [aux_sym__html_block_6_token2] = ACTIONS(555), + [sym__open_tag_html_block] = ACTIONS(555), + [sym__open_tag_html_block_newline] = ACTIONS(555), + [sym__closing_tag_html_block] = ACTIONS(555), + [sym__closing_tag_html_block_newline] = ACTIONS(555), + [sym_backslash_escape] = ACTIONS(555), + [sym_entity_reference] = ACTIONS(555), + [sym_numeric_character_reference] = ACTIONS(555), + [sym_uri_autolink] = ACTIONS(555), + [sym_email_autolink] = ACTIONS(555), + [sym__whitespace_ge_2] = ACTIONS(555), + [aux_sym__whitespace_token1] = ACTIONS(557), + [sym__word_no_digit] = ACTIONS(555), + [sym__digits] = ACTIONS(555), + [aux_sym__newline_token1] = ACTIONS(555), + [sym__block_close] = ACTIONS(555), + [sym__block_continuation] = ACTIONS(1095), + [sym__block_quote_continuation] = ACTIONS(1095), + [sym__block_quote_start] = ACTIONS(555), + [sym__indented_chunk_start] = ACTIONS(555), + [sym_atx_h1_marker] = ACTIONS(555), + [sym_atx_h2_marker] = ACTIONS(555), + [sym_atx_h3_marker] = ACTIONS(555), + [sym_atx_h4_marker] = ACTIONS(555), + [sym_atx_h5_marker] = ACTIONS(555), + [sym_atx_h6_marker] = ACTIONS(555), + [sym__thematic_break] = ACTIONS(555), + [sym__list_marker_minus] = ACTIONS(555), + [sym__list_marker_plus] = ACTIONS(555), + [sym__list_marker_star] = ACTIONS(555), + [sym__list_marker_parenthesis] = ACTIONS(555), + [sym__list_marker_dot] = ACTIONS(555), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(555), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(555), + [sym__list_marker_star_dont_interrupt] = ACTIONS(555), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(555), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(555), + [sym__fenced_code_block_start_backtick] = ACTIONS(555), + [sym__fenced_code_block_start_tilde] = ACTIONS(555), + [sym__blank_line_start] = ACTIONS(555), + [sym__code_span_start] = ACTIONS(555), + [sym__emphasis_open_star] = ACTIONS(555), + [sym__emphasis_open_underscore] = ACTIONS(555), + [sym__last_token_whitespace] = ACTIONS(1095), + }, + [225] = { + [aux_sym__ignore_matching_tokens] = STATE(160), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(765), + [anon_sym_DOLLAR] = ACTIONS(765), + [anon_sym_PERCENT] = ACTIONS(765), + [anon_sym_AMP] = ACTIONS(767), + [anon_sym_SQUOTE] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(765), + [anon_sym_RPAREN] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_COMMA] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DOT] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(765), + [anon_sym_COLON] = ACTIONS(765), + [anon_sym_SEMI] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_EQ] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(765), + [anon_sym_QMARK] = ACTIONS(765), + [anon_sym_AT] = ACTIONS(765), + [anon_sym_LBRACK] = ACTIONS(765), + [anon_sym_BSLASH] = ACTIONS(767), + [anon_sym_RBRACK] = ACTIONS(765), + [anon_sym_CARET] = ACTIONS(765), + [anon_sym__] = ACTIONS(765), + [anon_sym_BQUOTE] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(765), + [anon_sym_PIPE] = ACTIONS(765), + [anon_sym_RBRACE] = ACTIONS(765), + [anon_sym_TILDE] = ACTIONS(765), + [aux_sym__html_block_1_token1] = ACTIONS(765), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(767), + [anon_sym_LT_QMARK] = ACTIONS(767), + [aux_sym__html_block_4_token1] = ACTIONS(767), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(765), + [aux_sym__html_block_6_token1] = ACTIONS(767), + [aux_sym__html_block_6_token2] = ACTIONS(765), + [sym__open_tag_html_block] = ACTIONS(765), + [sym__open_tag_html_block_newline] = ACTIONS(765), + [sym__closing_tag_html_block] = ACTIONS(765), + [sym__closing_tag_html_block_newline] = ACTIONS(765), + [sym_backslash_escape] = ACTIONS(765), + [sym_entity_reference] = ACTIONS(765), + [sym_numeric_character_reference] = ACTIONS(765), + [sym_uri_autolink] = ACTIONS(765), + [sym_email_autolink] = ACTIONS(765), + [sym__whitespace_ge_2] = ACTIONS(765), + [aux_sym__whitespace_token1] = ACTIONS(767), + [sym__word_no_digit] = ACTIONS(765), + [sym__digits] = ACTIONS(765), + [aux_sym__newline_token1] = ACTIONS(765), + [sym__block_close] = ACTIONS(765), + [sym__block_continuation] = ACTIONS(113), + [sym__block_quote_continuation] = ACTIONS(113), + [sym__block_quote_start] = ACTIONS(765), + [sym__indented_chunk_start] = ACTIONS(765), + [sym_atx_h1_marker] = ACTIONS(765), + [sym_atx_h2_marker] = ACTIONS(765), + [sym_atx_h3_marker] = ACTIONS(765), + [sym_atx_h4_marker] = ACTIONS(765), + [sym_atx_h5_marker] = ACTIONS(765), + [sym_atx_h6_marker] = ACTIONS(765), + [sym__thematic_break] = ACTIONS(765), + [sym__list_marker_minus] = ACTIONS(765), + [sym__list_marker_plus] = ACTIONS(765), + [sym__list_marker_star] = ACTIONS(765), + [sym__list_marker_parenthesis] = ACTIONS(765), + [sym__list_marker_dot] = ACTIONS(765), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(765), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(765), + [sym__list_marker_star_dont_interrupt] = ACTIONS(765), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(765), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(765), + [sym__fenced_code_block_start_backtick] = ACTIONS(765), + [sym__fenced_code_block_start_tilde] = ACTIONS(765), + [sym__blank_line_start] = ACTIONS(765), + [sym__code_span_start] = ACTIONS(765), + [sym__emphasis_open_star] = ACTIONS(765), + [sym__emphasis_open_underscore] = ACTIONS(765), + [sym__last_token_whitespace] = ACTIONS(113), + }, + [226] = { + [aux_sym__ignore_matching_tokens] = STATE(244), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(765), + [anon_sym_POUND] = ACTIONS(765), + [anon_sym_DOLLAR] = ACTIONS(765), + [anon_sym_PERCENT] = ACTIONS(765), + [anon_sym_AMP] = ACTIONS(767), + [anon_sym_SQUOTE] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(765), + [anon_sym_RPAREN] = ACTIONS(765), + [anon_sym_STAR] = ACTIONS(765), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_COMMA] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_DOT] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(765), + [anon_sym_COLON] = ACTIONS(765), + [anon_sym_SEMI] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_EQ] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(765), + [anon_sym_QMARK] = ACTIONS(765), + [anon_sym_AT] = ACTIONS(765), + [anon_sym_LBRACK] = ACTIONS(765), + [anon_sym_BSLASH] = ACTIONS(767), + [anon_sym_RBRACK] = ACTIONS(765), + [anon_sym_CARET] = ACTIONS(765), + [anon_sym__] = ACTIONS(765), + [anon_sym_BQUOTE] = ACTIONS(765), + [anon_sym_LBRACE] = ACTIONS(765), + [anon_sym_PIPE] = ACTIONS(765), + [anon_sym_RBRACE] = ACTIONS(765), + [anon_sym_TILDE] = ACTIONS(765), + [aux_sym__html_block_1_token1] = ACTIONS(765), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(767), + [anon_sym_LT_QMARK] = ACTIONS(767), + [aux_sym__html_block_4_token1] = ACTIONS(767), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(765), + [aux_sym__html_block_6_token1] = ACTIONS(767), + [aux_sym__html_block_6_token2] = ACTIONS(765), + [sym__open_tag_html_block] = ACTIONS(765), + [sym__open_tag_html_block_newline] = ACTIONS(765), + [sym__closing_tag_html_block] = ACTIONS(765), + [sym__closing_tag_html_block_newline] = ACTIONS(765), + [sym_backslash_escape] = ACTIONS(765), + [sym_entity_reference] = ACTIONS(765), + [sym_numeric_character_reference] = ACTIONS(765), + [sym_uri_autolink] = ACTIONS(765), + [sym_email_autolink] = ACTIONS(765), + [sym__whitespace_ge_2] = ACTIONS(765), + [aux_sym__whitespace_token1] = ACTIONS(767), + [sym__word_no_digit] = ACTIONS(765), + [sym__digits] = ACTIONS(765), + [aux_sym__newline_token1] = ACTIONS(765), + [sym__block_close] = ACTIONS(765), + [sym__block_continuation] = ACTIONS(1097), + [sym__block_quote_continuation] = ACTIONS(1097), + [sym__block_quote_start] = ACTIONS(765), + [sym__indented_chunk_start] = ACTIONS(765), + [sym_atx_h1_marker] = ACTIONS(765), + [sym_atx_h2_marker] = ACTIONS(765), + [sym_atx_h3_marker] = ACTIONS(765), + [sym_atx_h4_marker] = ACTIONS(765), + [sym_atx_h5_marker] = ACTIONS(765), + [sym_atx_h6_marker] = ACTIONS(765), + [sym__thematic_break] = ACTIONS(765), + [sym__list_marker_minus] = ACTIONS(765), + [sym__list_marker_plus] = ACTIONS(765), + [sym__list_marker_star] = ACTIONS(765), + [sym__list_marker_parenthesis] = ACTIONS(765), + [sym__list_marker_dot] = ACTIONS(765), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(765), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(765), + [sym__list_marker_star_dont_interrupt] = ACTIONS(765), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(765), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(765), + [sym__fenced_code_block_start_backtick] = ACTIONS(765), + [sym__fenced_code_block_start_tilde] = ACTIONS(765), + [sym__blank_line_start] = ACTIONS(765), + [sym__code_span_start] = ACTIONS(765), + [sym__emphasis_open_star] = ACTIONS(765), + [sym__emphasis_open_underscore] = ACTIONS(765), + [sym__last_token_whitespace] = ACTIONS(1097), + }, + [227] = { + [aux_sym__ignore_matching_tokens] = STATE(160), + [anon_sym_BANG] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(759), + [anon_sym_POUND] = ACTIONS(759), + [anon_sym_DOLLAR] = ACTIONS(759), + [anon_sym_PERCENT] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(761), + [anon_sym_SQUOTE] = ACTIONS(759), + [anon_sym_LPAREN] = ACTIONS(759), + [anon_sym_RPAREN] = ACTIONS(759), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_COMMA] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(759), + [anon_sym_DOT] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_COLON] = ACTIONS(759), + [anon_sym_SEMI] = ACTIONS(759), + [anon_sym_LT] = ACTIONS(761), + [anon_sym_EQ] = ACTIONS(759), + [anon_sym_GT] = ACTIONS(759), + [anon_sym_QMARK] = ACTIONS(759), + [anon_sym_AT] = ACTIONS(759), + [anon_sym_LBRACK] = ACTIONS(759), + [anon_sym_BSLASH] = ACTIONS(761), + [anon_sym_RBRACK] = ACTIONS(759), + [anon_sym_CARET] = ACTIONS(759), + [anon_sym__] = ACTIONS(759), + [anon_sym_BQUOTE] = ACTIONS(759), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_PIPE] = ACTIONS(759), + [anon_sym_RBRACE] = ACTIONS(759), + [anon_sym_TILDE] = ACTIONS(759), + [aux_sym__html_block_1_token1] = ACTIONS(759), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(761), + [anon_sym_LT_QMARK] = ACTIONS(761), + [aux_sym__html_block_4_token1] = ACTIONS(761), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(759), + [aux_sym__html_block_6_token1] = ACTIONS(761), + [aux_sym__html_block_6_token2] = ACTIONS(759), + [sym__open_tag_html_block] = ACTIONS(759), + [sym__open_tag_html_block_newline] = ACTIONS(759), + [sym__closing_tag_html_block] = ACTIONS(759), + [sym__closing_tag_html_block_newline] = ACTIONS(759), + [sym_backslash_escape] = ACTIONS(759), + [sym_entity_reference] = ACTIONS(759), + [sym_numeric_character_reference] = ACTIONS(759), + [sym_uri_autolink] = ACTIONS(759), + [sym_email_autolink] = ACTIONS(759), + [sym__whitespace_ge_2] = ACTIONS(759), + [aux_sym__whitespace_token1] = ACTIONS(761), + [sym__word_no_digit] = ACTIONS(759), + [sym__digits] = ACTIONS(759), + [aux_sym__newline_token1] = ACTIONS(759), + [sym__block_close] = ACTIONS(759), + [sym__block_continuation] = ACTIONS(113), + [sym__block_quote_continuation] = ACTIONS(113), + [sym__block_quote_start] = ACTIONS(759), + [sym__indented_chunk_start] = ACTIONS(759), + [sym_atx_h1_marker] = ACTIONS(759), + [sym_atx_h2_marker] = ACTIONS(759), + [sym_atx_h3_marker] = ACTIONS(759), + [sym_atx_h4_marker] = ACTIONS(759), + [sym_atx_h5_marker] = ACTIONS(759), + [sym_atx_h6_marker] = ACTIONS(759), + [sym__thematic_break] = ACTIONS(759), + [sym__list_marker_minus] = ACTIONS(759), + [sym__list_marker_plus] = ACTIONS(759), + [sym__list_marker_star] = ACTIONS(759), + [sym__list_marker_parenthesis] = ACTIONS(759), + [sym__list_marker_dot] = ACTIONS(759), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(759), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(759), + [sym__list_marker_star_dont_interrupt] = ACTIONS(759), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(759), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(759), + [sym__fenced_code_block_start_backtick] = ACTIONS(759), + [sym__fenced_code_block_start_tilde] = ACTIONS(759), + [sym__blank_line_start] = ACTIONS(759), + [sym__code_span_start] = ACTIONS(759), + [sym__emphasis_open_star] = ACTIONS(759), + [sym__emphasis_open_underscore] = ACTIONS(759), + [sym__last_token_whitespace] = ACTIONS(113), + }, + [228] = { + [aux_sym__ignore_matching_tokens] = STATE(201), + [ts_builtin_sym_end] = ACTIONS(555), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_DQUOTE] = ACTIONS(555), + [anon_sym_POUND] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(555), + [anon_sym_PERCENT] = ACTIONS(555), + [anon_sym_AMP] = ACTIONS(557), + [anon_sym_SQUOTE] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_RPAREN] = ACTIONS(555), + [anon_sym_STAR] = ACTIONS(555), + [anon_sym_PLUS] = ACTIONS(555), + [anon_sym_COMMA] = ACTIONS(555), + [anon_sym_DASH] = ACTIONS(555), + [anon_sym_DOT] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(555), + [anon_sym_COLON] = ACTIONS(555), + [anon_sym_SEMI] = ACTIONS(555), + [anon_sym_LT] = ACTIONS(557), + [anon_sym_EQ] = ACTIONS(555), + [anon_sym_GT] = ACTIONS(555), + [anon_sym_QMARK] = ACTIONS(555), + [anon_sym_AT] = ACTIONS(555), + [anon_sym_LBRACK] = ACTIONS(555), + [anon_sym_BSLASH] = ACTIONS(557), + [anon_sym_RBRACK] = ACTIONS(555), + [anon_sym_CARET] = ACTIONS(555), + [anon_sym__] = ACTIONS(555), + [anon_sym_BQUOTE] = ACTIONS(555), + [anon_sym_LBRACE] = ACTIONS(555), + [anon_sym_PIPE] = ACTIONS(555), + [anon_sym_RBRACE] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(555), + [aux_sym__html_block_1_token1] = ACTIONS(555), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(557), + [anon_sym_LT_QMARK] = ACTIONS(557), + [aux_sym__html_block_4_token1] = ACTIONS(557), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(555), + [aux_sym__html_block_6_token1] = ACTIONS(557), + [aux_sym__html_block_6_token2] = ACTIONS(555), + [sym__open_tag_html_block] = ACTIONS(555), + [sym__open_tag_html_block_newline] = ACTIONS(555), + [sym__closing_tag_html_block] = ACTIONS(555), + [sym__closing_tag_html_block_newline] = ACTIONS(555), + [sym_backslash_escape] = ACTIONS(555), + [sym_entity_reference] = ACTIONS(555), + [sym_numeric_character_reference] = ACTIONS(555), + [sym_uri_autolink] = ACTIONS(555), + [sym_email_autolink] = ACTIONS(555), + [sym__whitespace_ge_2] = ACTIONS(555), + [aux_sym__whitespace_token1] = ACTIONS(557), + [sym__word_no_digit] = ACTIONS(555), + [sym__digits] = ACTIONS(555), + [aux_sym__newline_token1] = ACTIONS(555), + [sym__block_continuation] = ACTIONS(109), + [sym__block_quote_continuation] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(555), + [sym__indented_chunk_start] = ACTIONS(555), + [sym_atx_h1_marker] = ACTIONS(555), + [sym_atx_h2_marker] = ACTIONS(555), + [sym_atx_h3_marker] = ACTIONS(555), + [sym_atx_h4_marker] = ACTIONS(555), + [sym_atx_h5_marker] = ACTIONS(555), + [sym_atx_h6_marker] = ACTIONS(555), + [sym__thematic_break] = ACTIONS(555), + [sym__list_marker_minus] = ACTIONS(555), + [sym__list_marker_plus] = ACTIONS(555), + [sym__list_marker_star] = ACTIONS(555), + [sym__list_marker_parenthesis] = ACTIONS(555), + [sym__list_marker_dot] = ACTIONS(555), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(555), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(555), + [sym__list_marker_star_dont_interrupt] = ACTIONS(555), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(555), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(555), + [sym__fenced_code_block_start_backtick] = ACTIONS(555), + [sym__fenced_code_block_start_tilde] = ACTIONS(555), + [sym__blank_line_start] = ACTIONS(555), + [sym__code_span_start] = ACTIONS(555), + [sym__emphasis_open_star] = ACTIONS(555), + [sym__emphasis_open_underscore] = ACTIONS(555), + [sym__last_token_whitespace] = ACTIONS(109), + }, + [229] = { + [aux_sym__ignore_matching_tokens] = STATE(270), + [ts_builtin_sym_end] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_DQUOTE] = ACTIONS(1071), + [anon_sym_POUND] = ACTIONS(1071), + [anon_sym_DOLLAR] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_AMP] = ACTIONS(1073), + [anon_sym_SQUOTE] = ACTIONS(1071), + [anon_sym_LPAREN] = ACTIONS(1071), + [anon_sym_RPAREN] = ACTIONS(1071), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(1071), + [anon_sym_COMMA] = ACTIONS(1071), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_DOT] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_COLON] = ACTIONS(1071), + [anon_sym_SEMI] = ACTIONS(1071), + [anon_sym_LT] = ACTIONS(1073), + [anon_sym_EQ] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_AT] = ACTIONS(1071), + [anon_sym_LBRACK] = ACTIONS(1071), + [anon_sym_BSLASH] = ACTIONS(1073), + [anon_sym_RBRACK] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1071), + [anon_sym__] = ACTIONS(1071), + [anon_sym_BQUOTE] = ACTIONS(1071), + [anon_sym_LBRACE] = ACTIONS(1071), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_RBRACE] = ACTIONS(1071), + [anon_sym_TILDE] = ACTIONS(1071), + [aux_sym__html_block_1_token1] = ACTIONS(1071), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1073), + [anon_sym_LT_QMARK] = ACTIONS(1073), + [aux_sym__html_block_4_token1] = ACTIONS(1073), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1071), + [aux_sym__html_block_6_token1] = ACTIONS(1073), + [aux_sym__html_block_6_token2] = ACTIONS(1071), + [sym__open_tag_html_block] = ACTIONS(1071), + [sym__open_tag_html_block_newline] = ACTIONS(1071), + [sym__closing_tag_html_block] = ACTIONS(1071), + [sym__closing_tag_html_block_newline] = ACTIONS(1071), + [sym_backslash_escape] = ACTIONS(1071), + [sym_entity_reference] = ACTIONS(1071), + [sym_numeric_character_reference] = ACTIONS(1071), + [sym_uri_autolink] = ACTIONS(1071), + [sym_email_autolink] = ACTIONS(1071), + [sym__whitespace_ge_2] = ACTIONS(1071), + [aux_sym__whitespace_token1] = ACTIONS(1073), + [sym__word_no_digit] = ACTIONS(1071), + [sym__digits] = ACTIONS(1071), + [aux_sym__newline_token1] = ACTIONS(1071), + [sym__block_continuation] = ACTIONS(1099), + [sym__block_quote_continuation] = ACTIONS(1099), + [sym__block_quote_start] = ACTIONS(1071), + [sym__indented_chunk_start] = ACTIONS(1071), + [sym_atx_h1_marker] = ACTIONS(1071), + [sym_atx_h2_marker] = ACTIONS(1071), + [sym_atx_h3_marker] = ACTIONS(1071), + [sym_atx_h4_marker] = ACTIONS(1071), + [sym_atx_h5_marker] = ACTIONS(1071), + [sym_atx_h6_marker] = ACTIONS(1071), + [sym__thematic_break] = ACTIONS(1071), + [sym__list_marker_minus] = ACTIONS(1071), + [sym__list_marker_plus] = ACTIONS(1071), + [sym__list_marker_star] = ACTIONS(1071), + [sym__list_marker_parenthesis] = ACTIONS(1071), + [sym__list_marker_dot] = ACTIONS(1071), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1071), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1071), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1071), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1071), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1071), + [sym__fenced_code_block_start_backtick] = ACTIONS(1071), + [sym__fenced_code_block_start_tilde] = ACTIONS(1071), + [sym__blank_line_start] = ACTIONS(1071), + [sym__code_span_start] = ACTIONS(1071), + [sym__emphasis_open_star] = ACTIONS(1071), + [sym__emphasis_open_underscore] = ACTIONS(1071), + [sym__last_token_whitespace] = ACTIONS(1099), + }, + [230] = { + [aux_sym__ignore_matching_tokens] = STATE(144), + [ts_builtin_sym_end] = ACTIONS(790), + [anon_sym_BANG] = ACTIONS(790), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_POUND] = ACTIONS(790), + [anon_sym_DOLLAR] = ACTIONS(790), + [anon_sym_PERCENT] = ACTIONS(790), + [anon_sym_AMP] = ACTIONS(792), + [anon_sym_SQUOTE] = ACTIONS(790), + [anon_sym_LPAREN] = ACTIONS(790), + [anon_sym_RPAREN] = ACTIONS(790), + [anon_sym_STAR] = ACTIONS(790), + [anon_sym_PLUS] = ACTIONS(790), + [anon_sym_COMMA] = ACTIONS(790), + [anon_sym_DASH] = ACTIONS(790), + [anon_sym_DOT] = ACTIONS(790), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_COLON] = ACTIONS(790), + [anon_sym_SEMI] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(792), + [anon_sym_EQ] = ACTIONS(790), + [anon_sym_GT] = ACTIONS(790), + [anon_sym_QMARK] = ACTIONS(790), + [anon_sym_AT] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_BSLASH] = ACTIONS(792), + [anon_sym_RBRACK] = ACTIONS(790), + [anon_sym_CARET] = ACTIONS(790), + [anon_sym__] = ACTIONS(790), + [anon_sym_BQUOTE] = ACTIONS(790), + [anon_sym_LBRACE] = ACTIONS(790), + [anon_sym_PIPE] = ACTIONS(790), + [anon_sym_RBRACE] = ACTIONS(790), + [anon_sym_TILDE] = ACTIONS(790), + [aux_sym__html_block_1_token1] = ACTIONS(790), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(792), + [anon_sym_LT_QMARK] = ACTIONS(792), + [aux_sym__html_block_4_token1] = ACTIONS(792), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(790), + [aux_sym__html_block_6_token1] = ACTIONS(792), + [aux_sym__html_block_6_token2] = ACTIONS(790), + [sym__open_tag_html_block] = ACTIONS(790), + [sym__open_tag_html_block_newline] = ACTIONS(790), + [sym__closing_tag_html_block] = ACTIONS(790), + [sym__closing_tag_html_block_newline] = ACTIONS(790), + [sym_backslash_escape] = ACTIONS(790), + [sym_entity_reference] = ACTIONS(790), + [sym_numeric_character_reference] = ACTIONS(790), + [sym_uri_autolink] = ACTIONS(790), + [sym_email_autolink] = ACTIONS(790), + [sym__whitespace_ge_2] = ACTIONS(790), + [aux_sym__whitespace_token1] = ACTIONS(792), + [sym__word_no_digit] = ACTIONS(790), + [sym__digits] = ACTIONS(790), + [aux_sym__newline_token1] = ACTIONS(790), + [sym__block_continuation] = ACTIONS(1101), + [sym__block_quote_continuation] = ACTIONS(1101), + [sym__block_quote_start] = ACTIONS(790), + [sym__indented_chunk_start] = ACTIONS(790), + [sym_atx_h1_marker] = ACTIONS(790), + [sym_atx_h2_marker] = ACTIONS(790), + [sym_atx_h3_marker] = ACTIONS(790), + [sym_atx_h4_marker] = ACTIONS(790), + [sym_atx_h5_marker] = ACTIONS(790), + [sym_atx_h6_marker] = ACTIONS(790), + [sym__thematic_break] = ACTIONS(790), + [sym__list_marker_minus] = ACTIONS(790), + [sym__list_marker_plus] = ACTIONS(790), + [sym__list_marker_star] = ACTIONS(790), + [sym__list_marker_parenthesis] = ACTIONS(790), + [sym__list_marker_dot] = ACTIONS(790), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(790), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(790), + [sym__list_marker_star_dont_interrupt] = ACTIONS(790), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(790), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(790), + [sym__fenced_code_block_start_backtick] = ACTIONS(790), + [sym__fenced_code_block_start_tilde] = ACTIONS(790), + [sym__blank_line_start] = ACTIONS(790), + [sym__code_span_start] = ACTIONS(790), + [sym__emphasis_open_star] = ACTIONS(790), + [sym__emphasis_open_underscore] = ACTIONS(790), + [sym__last_token_whitespace] = ACTIONS(1101), + }, + [231] = { + [aux_sym__ignore_matching_tokens] = STATE(201), + [ts_builtin_sym_end] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_DQUOTE] = ACTIONS(1071), + [anon_sym_POUND] = ACTIONS(1071), + [anon_sym_DOLLAR] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_AMP] = ACTIONS(1073), + [anon_sym_SQUOTE] = ACTIONS(1071), + [anon_sym_LPAREN] = ACTIONS(1071), + [anon_sym_RPAREN] = ACTIONS(1071), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(1071), + [anon_sym_COMMA] = ACTIONS(1071), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_DOT] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_COLON] = ACTIONS(1071), + [anon_sym_SEMI] = ACTIONS(1071), + [anon_sym_LT] = ACTIONS(1073), + [anon_sym_EQ] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [anon_sym_QMARK] = ACTIONS(1071), + [anon_sym_AT] = ACTIONS(1071), + [anon_sym_LBRACK] = ACTIONS(1071), + [anon_sym_BSLASH] = ACTIONS(1073), + [anon_sym_RBRACK] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1071), + [anon_sym__] = ACTIONS(1071), + [anon_sym_BQUOTE] = ACTIONS(1071), + [anon_sym_LBRACE] = ACTIONS(1071), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_RBRACE] = ACTIONS(1071), + [anon_sym_TILDE] = ACTIONS(1071), + [aux_sym__html_block_1_token1] = ACTIONS(1071), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1073), + [anon_sym_LT_QMARK] = ACTIONS(1073), + [aux_sym__html_block_4_token1] = ACTIONS(1073), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1071), + [aux_sym__html_block_6_token1] = ACTIONS(1073), + [aux_sym__html_block_6_token2] = ACTIONS(1071), + [sym__open_tag_html_block] = ACTIONS(1071), + [sym__open_tag_html_block_newline] = ACTIONS(1071), + [sym__closing_tag_html_block] = ACTIONS(1071), + [sym__closing_tag_html_block_newline] = ACTIONS(1071), + [sym_backslash_escape] = ACTIONS(1071), + [sym_entity_reference] = ACTIONS(1071), + [sym_numeric_character_reference] = ACTIONS(1071), + [sym_uri_autolink] = ACTIONS(1071), + [sym_email_autolink] = ACTIONS(1071), + [sym__whitespace_ge_2] = ACTIONS(1071), + [aux_sym__whitespace_token1] = ACTIONS(1073), + [sym__word_no_digit] = ACTIONS(1071), + [sym__digits] = ACTIONS(1071), + [aux_sym__newline_token1] = ACTIONS(1071), + [sym__block_continuation] = ACTIONS(109), + [sym__block_quote_continuation] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(1071), + [sym__indented_chunk_start] = ACTIONS(1071), + [sym_atx_h1_marker] = ACTIONS(1071), + [sym_atx_h2_marker] = ACTIONS(1071), + [sym_atx_h3_marker] = ACTIONS(1071), + [sym_atx_h4_marker] = ACTIONS(1071), + [sym_atx_h5_marker] = ACTIONS(1071), + [sym_atx_h6_marker] = ACTIONS(1071), + [sym__thematic_break] = ACTIONS(1071), + [sym__list_marker_minus] = ACTIONS(1071), + [sym__list_marker_plus] = ACTIONS(1071), + [sym__list_marker_star] = ACTIONS(1071), + [sym__list_marker_parenthesis] = ACTIONS(1071), + [sym__list_marker_dot] = ACTIONS(1071), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1071), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1071), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1071), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1071), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1071), + [sym__fenced_code_block_start_backtick] = ACTIONS(1071), + [sym__fenced_code_block_start_tilde] = ACTIONS(1071), + [sym__blank_line_start] = ACTIONS(1071), + [sym__code_span_start] = ACTIONS(1071), + [sym__emphasis_open_star] = ACTIONS(1071), + [sym__emphasis_open_underscore] = ACTIONS(1071), + [sym__last_token_whitespace] = ACTIONS(109), + }, + [232] = { + [aux_sym__ignore_matching_tokens] = STATE(239), + [anon_sym_BANG] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(759), + [anon_sym_POUND] = ACTIONS(759), + [anon_sym_DOLLAR] = ACTIONS(759), + [anon_sym_PERCENT] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(761), + [anon_sym_SQUOTE] = ACTIONS(759), + [anon_sym_LPAREN] = ACTIONS(759), + [anon_sym_RPAREN] = ACTIONS(759), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_COMMA] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(759), + [anon_sym_DOT] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_COLON] = ACTIONS(759), + [anon_sym_SEMI] = ACTIONS(759), + [anon_sym_LT] = ACTIONS(761), + [anon_sym_EQ] = ACTIONS(759), + [anon_sym_GT] = ACTIONS(759), + [anon_sym_QMARK] = ACTIONS(759), + [anon_sym_AT] = ACTIONS(759), + [anon_sym_LBRACK] = ACTIONS(759), + [anon_sym_BSLASH] = ACTIONS(761), + [anon_sym_RBRACK] = ACTIONS(759), + [anon_sym_CARET] = ACTIONS(759), + [anon_sym__] = ACTIONS(759), + [anon_sym_BQUOTE] = ACTIONS(759), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_PIPE] = ACTIONS(759), + [anon_sym_RBRACE] = ACTIONS(759), + [anon_sym_TILDE] = ACTIONS(759), + [aux_sym__html_block_1_token1] = ACTIONS(759), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(761), + [anon_sym_LT_QMARK] = ACTIONS(761), + [aux_sym__html_block_4_token1] = ACTIONS(761), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(759), + [aux_sym__html_block_6_token1] = ACTIONS(761), + [aux_sym__html_block_6_token2] = ACTIONS(759), + [sym__open_tag_html_block] = ACTIONS(759), + [sym__open_tag_html_block_newline] = ACTIONS(759), + [sym__closing_tag_html_block] = ACTIONS(759), + [sym__closing_tag_html_block_newline] = ACTIONS(759), + [sym_backslash_escape] = ACTIONS(759), + [sym_entity_reference] = ACTIONS(759), + [sym_numeric_character_reference] = ACTIONS(759), + [sym_uri_autolink] = ACTIONS(759), + [sym_email_autolink] = ACTIONS(759), + [sym__whitespace_ge_2] = ACTIONS(759), + [aux_sym__whitespace_token1] = ACTIONS(761), + [sym__word_no_digit] = ACTIONS(759), + [sym__digits] = ACTIONS(759), + [aux_sym__newline_token1] = ACTIONS(759), + [sym__block_close] = ACTIONS(759), + [sym__block_continuation] = ACTIONS(1103), + [sym__block_quote_continuation] = ACTIONS(1103), + [sym__block_quote_start] = ACTIONS(759), + [sym__indented_chunk_start] = ACTIONS(759), + [sym_atx_h1_marker] = ACTIONS(759), + [sym_atx_h2_marker] = ACTIONS(759), + [sym_atx_h3_marker] = ACTIONS(759), + [sym_atx_h4_marker] = ACTIONS(759), + [sym_atx_h5_marker] = ACTIONS(759), + [sym_atx_h6_marker] = ACTIONS(759), + [sym__thematic_break] = ACTIONS(759), + [sym__list_marker_minus] = ACTIONS(759), + [sym__list_marker_plus] = ACTIONS(759), + [sym__list_marker_star] = ACTIONS(759), + [sym__list_marker_parenthesis] = ACTIONS(759), + [sym__list_marker_dot] = ACTIONS(759), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(759), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(759), + [sym__list_marker_star_dont_interrupt] = ACTIONS(759), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(759), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(759), + [sym__fenced_code_block_start_backtick] = ACTIONS(759), + [sym__fenced_code_block_start_tilde] = ACTIONS(759), + [sym__blank_line_start] = ACTIONS(759), + [sym__code_span_start] = ACTIONS(759), + [sym__emphasis_open_star] = ACTIONS(759), + [sym__emphasis_open_underscore] = ACTIONS(759), + [sym__last_token_whitespace] = ACTIONS(1103), + }, + [233] = { + [aux_sym__ignore_matching_tokens] = STATE(153), + [ts_builtin_sym_end] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(796), + [anon_sym_POUND] = ACTIONS(796), + [anon_sym_DOLLAR] = ACTIONS(796), + [anon_sym_PERCENT] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(798), + [anon_sym_SQUOTE] = ACTIONS(796), + [anon_sym_LPAREN] = ACTIONS(796), + [anon_sym_RPAREN] = ACTIONS(796), + [anon_sym_STAR] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(796), + [anon_sym_COMMA] = ACTIONS(796), + [anon_sym_DASH] = ACTIONS(796), + [anon_sym_DOT] = ACTIONS(796), + [anon_sym_SLASH] = ACTIONS(796), + [anon_sym_COLON] = ACTIONS(796), + [anon_sym_SEMI] = ACTIONS(796), + [anon_sym_LT] = ACTIONS(798), + [anon_sym_EQ] = ACTIONS(796), + [anon_sym_GT] = ACTIONS(796), + [anon_sym_QMARK] = ACTIONS(796), + [anon_sym_AT] = ACTIONS(796), + [anon_sym_LBRACK] = ACTIONS(796), + [anon_sym_BSLASH] = ACTIONS(798), + [anon_sym_RBRACK] = ACTIONS(796), + [anon_sym_CARET] = ACTIONS(796), + [anon_sym__] = ACTIONS(796), + [anon_sym_BQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(796), + [anon_sym_PIPE] = ACTIONS(796), + [anon_sym_RBRACE] = ACTIONS(796), + [anon_sym_TILDE] = ACTIONS(796), + [aux_sym__html_block_1_token1] = ACTIONS(796), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(798), + [anon_sym_LT_QMARK] = ACTIONS(798), + [aux_sym__html_block_4_token1] = ACTIONS(798), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(796), + [aux_sym__html_block_6_token1] = ACTIONS(798), + [aux_sym__html_block_6_token2] = ACTIONS(796), + [sym__open_tag_html_block] = ACTIONS(796), + [sym__open_tag_html_block_newline] = ACTIONS(796), + [sym__closing_tag_html_block] = ACTIONS(796), + [sym__closing_tag_html_block_newline] = ACTIONS(796), + [sym_backslash_escape] = ACTIONS(796), + [sym_entity_reference] = ACTIONS(796), + [sym_numeric_character_reference] = ACTIONS(796), + [sym_uri_autolink] = ACTIONS(796), + [sym_email_autolink] = ACTIONS(796), + [sym__whitespace_ge_2] = ACTIONS(796), + [aux_sym__whitespace_token1] = ACTIONS(798), + [sym__word_no_digit] = ACTIONS(796), + [sym__digits] = ACTIONS(796), + [aux_sym__newline_token1] = ACTIONS(796), + [sym__block_continuation] = ACTIONS(1105), + [sym__block_quote_continuation] = ACTIONS(1105), + [sym__block_quote_start] = ACTIONS(796), + [sym__indented_chunk_start] = ACTIONS(796), + [sym_atx_h1_marker] = ACTIONS(796), + [sym_atx_h2_marker] = ACTIONS(796), + [sym_atx_h3_marker] = ACTIONS(796), + [sym_atx_h4_marker] = ACTIONS(796), + [sym_atx_h5_marker] = ACTIONS(796), + [sym_atx_h6_marker] = ACTIONS(796), + [sym__thematic_break] = ACTIONS(796), + [sym__list_marker_minus] = ACTIONS(796), + [sym__list_marker_plus] = ACTIONS(796), + [sym__list_marker_star] = ACTIONS(796), + [sym__list_marker_parenthesis] = ACTIONS(796), + [sym__list_marker_dot] = ACTIONS(796), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(796), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(796), + [sym__list_marker_star_dont_interrupt] = ACTIONS(796), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(796), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(796), + [sym__fenced_code_block_start_backtick] = ACTIONS(796), + [sym__fenced_code_block_start_tilde] = ACTIONS(796), + [sym__blank_line_start] = ACTIONS(796), + [sym__code_span_start] = ACTIONS(796), + [sym__emphasis_open_star] = ACTIONS(796), + [sym__emphasis_open_underscore] = ACTIONS(796), + [sym__last_token_whitespace] = ACTIONS(1105), + }, + [234] = { + [aux_sym__ignore_matching_tokens] = STATE(160), [anon_sym_BANG] = ACTIONS(933), [anon_sym_DQUOTE] = ACTIONS(933), [anon_sym_POUND] = ACTIONS(933), @@ -48466,8 +52722,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__word_no_digit] = ACTIONS(933), [sym__digits] = ACTIONS(933), [aux_sym__newline_token1] = ACTIONS(933), - [sym__block_continuation] = ACTIONS(111), - [sym__block_quote_continuation] = ACTIONS(111), + [sym__block_close] = ACTIONS(933), + [sym__block_continuation] = ACTIONS(113), + [sym__block_quote_continuation] = ACTIONS(113), [sym__block_quote_start] = ACTIONS(933), [sym__indented_chunk_start] = ACTIONS(933), [sym_atx_h1_marker] = ACTIONS(933), @@ -48493,1200 +52750,2475 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(933), [sym__emphasis_open_star] = ACTIONS(933), [sym__emphasis_open_underscore] = ACTIONS(933), - [sym__last_token_whitespace] = ACTIONS(111), + [sym__last_token_whitespace] = ACTIONS(113), }, - [185] = { - [aux_sym__ignore_matching_tokens] = STATE(154), - [anon_sym_BANG] = ACTIONS(745), - [anon_sym_DQUOTE] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(745), - [anon_sym_DOLLAR] = ACTIONS(745), - [anon_sym_PERCENT] = ACTIONS(745), - [anon_sym_AMP] = ACTIONS(747), - [anon_sym_SQUOTE] = ACTIONS(745), - [anon_sym_LPAREN] = ACTIONS(745), - [anon_sym_RPAREN] = ACTIONS(745), - [anon_sym_STAR] = ACTIONS(745), - [anon_sym_PLUS] = ACTIONS(745), - [anon_sym_COMMA] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), - [anon_sym_DOT] = ACTIONS(745), - [anon_sym_SLASH] = ACTIONS(745), - [anon_sym_COLON] = ACTIONS(745), - [anon_sym_SEMI] = ACTIONS(745), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_EQ] = ACTIONS(745), - [anon_sym_GT] = ACTIONS(745), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(745), - [anon_sym_BSLASH] = ACTIONS(747), - [anon_sym_RBRACK] = ACTIONS(745), - [anon_sym_CARET] = ACTIONS(745), - [anon_sym__] = ACTIONS(745), - [anon_sym_BQUOTE] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(745), - [anon_sym_PIPE] = ACTIONS(745), - [anon_sym_RBRACE] = ACTIONS(745), - [anon_sym_TILDE] = ACTIONS(745), - [aux_sym__html_block_1_token1] = ACTIONS(745), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(747), - [anon_sym_LT_QMARK] = ACTIONS(747), - [aux_sym__html_block_4_token1] = ACTIONS(747), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(745), - [aux_sym__html_block_6_token1] = ACTIONS(747), - [aux_sym__html_block_6_token2] = ACTIONS(745), - [sym__open_tag_html_block] = ACTIONS(745), - [sym__open_tag_html_block_newline] = ACTIONS(745), - [sym__closing_tag_html_block] = ACTIONS(745), - [sym__closing_tag_html_block_newline] = ACTIONS(745), - [sym_backslash_escape] = ACTIONS(745), - [sym_entity_reference] = ACTIONS(745), - [sym_numeric_character_reference] = ACTIONS(745), - [sym_uri_autolink] = ACTIONS(745), - [sym_email_autolink] = ACTIONS(745), - [sym__whitespace_ge_2] = ACTIONS(745), - [aux_sym__whitespace_token1] = ACTIONS(747), - [sym__word_no_digit] = ACTIONS(745), - [sym__digits] = ACTIONS(745), - [aux_sym__newline_token1] = ACTIONS(745), - [sym__block_close] = ACTIONS(745), - [sym__block_continuation] = ACTIONS(939), - [sym__block_quote_continuation] = ACTIONS(939), - [sym__block_quote_start] = ACTIONS(745), - [sym__indented_chunk_start] = ACTIONS(745), - [sym_atx_h1_marker] = ACTIONS(745), - [sym_atx_h2_marker] = ACTIONS(745), - [sym_atx_h3_marker] = ACTIONS(745), - [sym_atx_h4_marker] = ACTIONS(745), - [sym_atx_h5_marker] = ACTIONS(745), - [sym_atx_h6_marker] = ACTIONS(745), - [sym__thematic_break] = ACTIONS(745), - [sym__list_marker_minus] = ACTIONS(745), - [sym__list_marker_plus] = ACTIONS(745), - [sym__list_marker_star] = ACTIONS(745), - [sym__list_marker_parenthesis] = ACTIONS(745), - [sym__list_marker_dot] = ACTIONS(745), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(745), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(745), - [sym__list_marker_star_dont_interrupt] = ACTIONS(745), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(745), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(745), - [sym__fenced_code_block_start_backtick] = ACTIONS(745), - [sym__fenced_code_block_start_tilde] = ACTIONS(745), - [sym__blank_line_start] = ACTIONS(745), - [sym__code_span_start] = ACTIONS(745), - [sym__emphasis_open_star] = ACTIONS(745), - [sym__emphasis_open_underscore] = ACTIONS(745), - [sym__last_token_whitespace] = ACTIONS(939), + [235] = { + [aux_sym__ignore_matching_tokens] = STATE(160), + [anon_sym_BANG] = ACTIONS(929), + [anon_sym_DQUOTE] = ACTIONS(929), + [anon_sym_POUND] = ACTIONS(929), + [anon_sym_DOLLAR] = ACTIONS(929), + [anon_sym_PERCENT] = ACTIONS(929), + [anon_sym_AMP] = ACTIONS(931), + [anon_sym_SQUOTE] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(929), + [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(931), + [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(931), + [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), + [aux_sym__html_block_1_token1] = ACTIONS(929), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(931), + [anon_sym_LT_QMARK] = ACTIONS(931), + [aux_sym__html_block_4_token1] = ACTIONS(931), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(929), + [aux_sym__html_block_6_token1] = ACTIONS(931), + [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_entity_reference] = ACTIONS(929), + [sym_numeric_character_reference] = ACTIONS(929), + [sym_uri_autolink] = ACTIONS(929), + [sym_email_autolink] = ACTIONS(929), + [sym__whitespace_ge_2] = ACTIONS(929), + [aux_sym__whitespace_token1] = ACTIONS(931), + [sym__word_no_digit] = ACTIONS(929), + [sym__digits] = ACTIONS(929), + [aux_sym__newline_token1] = ACTIONS(929), + [sym__block_close] = ACTIONS(929), + [sym__block_continuation] = ACTIONS(113), + [sym__block_quote_continuation] = ACTIONS(113), + [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__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__last_token_whitespace] = ACTIONS(113), }, - [186] = { - [aux_sym__ignore_matching_tokens] = STATE(275), - [anon_sym_BANG] = ACTIONS(745), - [anon_sym_DQUOTE] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(745), - [anon_sym_DOLLAR] = ACTIONS(745), - [anon_sym_PERCENT] = ACTIONS(745), - [anon_sym_AMP] = ACTIONS(747), - [anon_sym_SQUOTE] = ACTIONS(745), - [anon_sym_LPAREN] = ACTIONS(745), - [anon_sym_RPAREN] = ACTIONS(745), - [anon_sym_STAR] = ACTIONS(745), - [anon_sym_PLUS] = ACTIONS(745), - [anon_sym_COMMA] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), - [anon_sym_DOT] = ACTIONS(745), - [anon_sym_SLASH] = ACTIONS(745), - [anon_sym_COLON] = ACTIONS(745), - [anon_sym_SEMI] = ACTIONS(745), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_EQ] = ACTIONS(745), - [anon_sym_GT] = ACTIONS(745), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(745), - [anon_sym_BSLASH] = ACTIONS(747), - [anon_sym_RBRACK] = ACTIONS(745), - [anon_sym_CARET] = ACTIONS(745), - [anon_sym__] = ACTIONS(745), - [anon_sym_BQUOTE] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(745), - [anon_sym_PIPE] = ACTIONS(745), - [anon_sym_RBRACE] = ACTIONS(745), - [anon_sym_TILDE] = ACTIONS(745), - [aux_sym__html_block_1_token1] = ACTIONS(745), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(747), - [anon_sym_LT_QMARK] = ACTIONS(747), - [aux_sym__html_block_4_token1] = ACTIONS(747), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(745), - [aux_sym__html_block_6_token1] = ACTIONS(747), - [aux_sym__html_block_6_token2] = ACTIONS(745), - [sym__open_tag_html_block] = ACTIONS(745), - [sym__open_tag_html_block_newline] = ACTIONS(745), - [sym__closing_tag_html_block] = ACTIONS(745), - [sym__closing_tag_html_block_newline] = ACTIONS(745), - [sym_backslash_escape] = ACTIONS(745), - [sym_entity_reference] = ACTIONS(745), - [sym_numeric_character_reference] = ACTIONS(745), - [sym_uri_autolink] = ACTIONS(745), - [sym_email_autolink] = ACTIONS(745), - [sym__whitespace_ge_2] = ACTIONS(745), - [aux_sym__whitespace_token1] = ACTIONS(747), - [sym__word_no_digit] = ACTIONS(745), - [sym__digits] = ACTIONS(745), - [aux_sym__newline_token1] = ACTIONS(745), - [sym__block_close] = ACTIONS(745), - [sym__block_continuation] = ACTIONS(125), - [sym__block_quote_continuation] = ACTIONS(125), - [sym__block_quote_start] = ACTIONS(745), - [sym__indented_chunk_start] = ACTIONS(745), - [sym_atx_h1_marker] = ACTIONS(745), - [sym_atx_h2_marker] = ACTIONS(745), - [sym_atx_h3_marker] = ACTIONS(745), - [sym_atx_h4_marker] = ACTIONS(745), - [sym_atx_h5_marker] = ACTIONS(745), - [sym_atx_h6_marker] = ACTIONS(745), - [sym__thematic_break] = ACTIONS(745), - [sym__list_marker_minus] = ACTIONS(745), - [sym__list_marker_plus] = ACTIONS(745), - [sym__list_marker_star] = ACTIONS(745), - [sym__list_marker_parenthesis] = ACTIONS(745), - [sym__list_marker_dot] = ACTIONS(745), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(745), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(745), - [sym__list_marker_star_dont_interrupt] = ACTIONS(745), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(745), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(745), - [sym__fenced_code_block_start_backtick] = ACTIONS(745), - [sym__fenced_code_block_start_tilde] = ACTIONS(745), - [sym__blank_line_start] = ACTIONS(745), - [sym__code_span_start] = ACTIONS(745), - [sym__emphasis_open_star] = ACTIONS(745), - [sym__emphasis_open_underscore] = ACTIONS(745), - [sym__last_token_whitespace] = ACTIONS(125), + [236] = { + [aux_sym__ignore_matching_tokens] = STATE(161), + [ts_builtin_sym_end] = 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), + [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(802), + [sym_numeric_character_reference] = ACTIONS(802), + [sym_uri_autolink] = ACTIONS(802), + [sym_email_autolink] = 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(1107), + [sym__block_quote_continuation] = ACTIONS(1107), + [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__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__emphasis_open_star] = ACTIONS(802), + [sym__emphasis_open_underscore] = ACTIONS(802), + [sym__last_token_whitespace] = ACTIONS(1107), }, - [187] = { - [aux_sym__ignore_matching_tokens] = STATE(156), - [anon_sym_BANG] = ACTIONS(757), - [anon_sym_DQUOTE] = ACTIONS(757), - [anon_sym_POUND] = ACTIONS(757), - [anon_sym_DOLLAR] = ACTIONS(757), - [anon_sym_PERCENT] = ACTIONS(757), - [anon_sym_AMP] = ACTIONS(759), - [anon_sym_SQUOTE] = ACTIONS(757), - [anon_sym_LPAREN] = ACTIONS(757), - [anon_sym_RPAREN] = ACTIONS(757), - [anon_sym_STAR] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(757), - [anon_sym_COMMA] = ACTIONS(757), - [anon_sym_DASH] = ACTIONS(757), - [anon_sym_DOT] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(757), - [anon_sym_SEMI] = ACTIONS(757), - [anon_sym_LT] = ACTIONS(759), - [anon_sym_EQ] = ACTIONS(757), - [anon_sym_GT] = ACTIONS(757), - [anon_sym_QMARK] = ACTIONS(757), - [anon_sym_AT] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(757), - [anon_sym_BSLASH] = ACTIONS(759), - [anon_sym_RBRACK] = ACTIONS(757), - [anon_sym_CARET] = ACTIONS(757), - [anon_sym__] = ACTIONS(757), - [anon_sym_BQUOTE] = ACTIONS(757), - [anon_sym_LBRACE] = ACTIONS(757), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_RBRACE] = ACTIONS(757), - [anon_sym_TILDE] = ACTIONS(757), - [aux_sym__html_block_1_token1] = ACTIONS(757), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(759), - [anon_sym_LT_QMARK] = ACTIONS(759), - [aux_sym__html_block_4_token1] = ACTIONS(759), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(757), - [aux_sym__html_block_6_token1] = ACTIONS(759), - [aux_sym__html_block_6_token2] = ACTIONS(757), - [sym__open_tag_html_block] = ACTIONS(757), - [sym__open_tag_html_block_newline] = ACTIONS(757), - [sym__closing_tag_html_block] = ACTIONS(757), - [sym__closing_tag_html_block_newline] = ACTIONS(757), - [sym_backslash_escape] = ACTIONS(757), - [sym_entity_reference] = ACTIONS(757), - [sym_numeric_character_reference] = ACTIONS(757), - [sym_uri_autolink] = ACTIONS(757), - [sym_email_autolink] = ACTIONS(757), - [sym__whitespace_ge_2] = ACTIONS(757), - [aux_sym__whitespace_token1] = ACTIONS(759), - [sym__word_no_digit] = ACTIONS(757), - [sym__digits] = ACTIONS(757), - [aux_sym__newline_token1] = ACTIONS(757), - [sym__block_close] = ACTIONS(757), - [sym__block_continuation] = ACTIONS(941), - [sym__block_quote_continuation] = ACTIONS(941), - [sym__block_quote_start] = ACTIONS(757), - [sym__indented_chunk_start] = ACTIONS(757), - [sym_atx_h1_marker] = ACTIONS(757), - [sym_atx_h2_marker] = ACTIONS(757), - [sym_atx_h3_marker] = ACTIONS(757), - [sym_atx_h4_marker] = ACTIONS(757), - [sym_atx_h5_marker] = ACTIONS(757), - [sym_atx_h6_marker] = ACTIONS(757), - [sym__thematic_break] = ACTIONS(757), - [sym__list_marker_minus] = ACTIONS(757), - [sym__list_marker_plus] = ACTIONS(757), - [sym__list_marker_star] = ACTIONS(757), - [sym__list_marker_parenthesis] = ACTIONS(757), - [sym__list_marker_dot] = ACTIONS(757), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(757), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(757), - [sym__list_marker_star_dont_interrupt] = ACTIONS(757), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(757), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(757), - [sym__fenced_code_block_start_backtick] = ACTIONS(757), - [sym__fenced_code_block_start_tilde] = ACTIONS(757), - [sym__blank_line_start] = ACTIONS(757), - [sym__code_span_start] = ACTIONS(757), - [sym__emphasis_open_star] = ACTIONS(757), - [sym__emphasis_open_underscore] = ACTIONS(757), - [sym__last_token_whitespace] = ACTIONS(941), + [237] = { + [aux_sym__ignore_matching_tokens] = STATE(160), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_DQUOTE] = ACTIONS(925), + [anon_sym_POUND] = ACTIONS(925), + [anon_sym_DOLLAR] = ACTIONS(925), + [anon_sym_PERCENT] = ACTIONS(925), + [anon_sym_AMP] = ACTIONS(927), + [anon_sym_SQUOTE] = ACTIONS(925), + [anon_sym_LPAREN] = ACTIONS(925), + [anon_sym_RPAREN] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_PLUS] = ACTIONS(925), + [anon_sym_COMMA] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_DOT] = ACTIONS(925), + [anon_sym_SLASH] = ACTIONS(925), + [anon_sym_COLON] = ACTIONS(925), + [anon_sym_SEMI] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(927), + [anon_sym_EQ] = ACTIONS(925), + [anon_sym_GT] = ACTIONS(925), + [anon_sym_QMARK] = ACTIONS(925), + [anon_sym_AT] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(925), + [anon_sym_BSLASH] = ACTIONS(927), + [anon_sym_RBRACK] = ACTIONS(925), + [anon_sym_CARET] = ACTIONS(925), + [anon_sym__] = ACTIONS(925), + [anon_sym_BQUOTE] = ACTIONS(925), + [anon_sym_LBRACE] = ACTIONS(925), + [anon_sym_PIPE] = ACTIONS(925), + [anon_sym_RBRACE] = ACTIONS(925), + [anon_sym_TILDE] = ACTIONS(925), + [aux_sym__html_block_1_token1] = ACTIONS(925), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(927), + [anon_sym_LT_QMARK] = ACTIONS(927), + [aux_sym__html_block_4_token1] = ACTIONS(927), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(925), + [aux_sym__html_block_6_token1] = ACTIONS(927), + [aux_sym__html_block_6_token2] = ACTIONS(925), + [sym__open_tag_html_block] = ACTIONS(925), + [sym__open_tag_html_block_newline] = ACTIONS(925), + [sym__closing_tag_html_block] = ACTIONS(925), + [sym__closing_tag_html_block_newline] = ACTIONS(925), + [sym_backslash_escape] = ACTIONS(925), + [sym_entity_reference] = ACTIONS(925), + [sym_numeric_character_reference] = ACTIONS(925), + [sym_uri_autolink] = ACTIONS(925), + [sym_email_autolink] = ACTIONS(925), + [sym__whitespace_ge_2] = ACTIONS(925), + [aux_sym__whitespace_token1] = ACTIONS(927), + [sym__word_no_digit] = ACTIONS(925), + [sym__digits] = ACTIONS(925), + [aux_sym__newline_token1] = ACTIONS(925), + [sym__block_close] = ACTIONS(925), + [sym__block_continuation] = ACTIONS(113), + [sym__block_quote_continuation] = ACTIONS(113), + [sym__block_quote_start] = ACTIONS(925), + [sym__indented_chunk_start] = ACTIONS(925), + [sym_atx_h1_marker] = ACTIONS(925), + [sym_atx_h2_marker] = ACTIONS(925), + [sym_atx_h3_marker] = ACTIONS(925), + [sym_atx_h4_marker] = ACTIONS(925), + [sym_atx_h5_marker] = ACTIONS(925), + [sym_atx_h6_marker] = ACTIONS(925), + [sym__thematic_break] = ACTIONS(925), + [sym__list_marker_minus] = ACTIONS(925), + [sym__list_marker_plus] = ACTIONS(925), + [sym__list_marker_star] = ACTIONS(925), + [sym__list_marker_parenthesis] = ACTIONS(925), + [sym__list_marker_dot] = ACTIONS(925), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(925), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(925), + [sym__list_marker_star_dont_interrupt] = ACTIONS(925), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(925), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(925), + [sym__fenced_code_block_start_backtick] = ACTIONS(925), + [sym__fenced_code_block_start_tilde] = ACTIONS(925), + [sym__blank_line_start] = ACTIONS(925), + [sym__code_span_start] = ACTIONS(925), + [sym__emphasis_open_star] = ACTIONS(925), + [sym__emphasis_open_underscore] = ACTIONS(925), + [sym__last_token_whitespace] = ACTIONS(113), }, - [188] = { - [aux_sym__ignore_matching_tokens] = STATE(275), - [anon_sym_BANG] = ACTIONS(757), - [anon_sym_DQUOTE] = ACTIONS(757), - [anon_sym_POUND] = ACTIONS(757), - [anon_sym_DOLLAR] = ACTIONS(757), - [anon_sym_PERCENT] = ACTIONS(757), - [anon_sym_AMP] = ACTIONS(759), - [anon_sym_SQUOTE] = ACTIONS(757), - [anon_sym_LPAREN] = ACTIONS(757), - [anon_sym_RPAREN] = ACTIONS(757), - [anon_sym_STAR] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(757), - [anon_sym_COMMA] = ACTIONS(757), - [anon_sym_DASH] = ACTIONS(757), - [anon_sym_DOT] = ACTIONS(757), - [anon_sym_SLASH] = ACTIONS(757), - [anon_sym_COLON] = ACTIONS(757), - [anon_sym_SEMI] = ACTIONS(757), - [anon_sym_LT] = ACTIONS(759), - [anon_sym_EQ] = ACTIONS(757), - [anon_sym_GT] = ACTIONS(757), - [anon_sym_QMARK] = ACTIONS(757), - [anon_sym_AT] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(757), - [anon_sym_BSLASH] = ACTIONS(759), - [anon_sym_RBRACK] = ACTIONS(757), - [anon_sym_CARET] = ACTIONS(757), - [anon_sym__] = ACTIONS(757), - [anon_sym_BQUOTE] = ACTIONS(757), - [anon_sym_LBRACE] = ACTIONS(757), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_RBRACE] = ACTIONS(757), - [anon_sym_TILDE] = ACTIONS(757), - [aux_sym__html_block_1_token1] = ACTIONS(757), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(759), - [anon_sym_LT_QMARK] = ACTIONS(759), - [aux_sym__html_block_4_token1] = ACTIONS(759), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(757), - [aux_sym__html_block_6_token1] = ACTIONS(759), - [aux_sym__html_block_6_token2] = ACTIONS(757), - [sym__open_tag_html_block] = ACTIONS(757), - [sym__open_tag_html_block_newline] = ACTIONS(757), - [sym__closing_tag_html_block] = ACTIONS(757), - [sym__closing_tag_html_block_newline] = ACTIONS(757), - [sym_backslash_escape] = ACTIONS(757), - [sym_entity_reference] = ACTIONS(757), - [sym_numeric_character_reference] = ACTIONS(757), - [sym_uri_autolink] = ACTIONS(757), - [sym_email_autolink] = ACTIONS(757), - [sym__whitespace_ge_2] = ACTIONS(757), - [aux_sym__whitespace_token1] = ACTIONS(759), - [sym__word_no_digit] = ACTIONS(757), - [sym__digits] = ACTIONS(757), - [aux_sym__newline_token1] = ACTIONS(757), - [sym__block_close] = ACTIONS(757), - [sym__block_continuation] = ACTIONS(125), - [sym__block_quote_continuation] = ACTIONS(125), - [sym__block_quote_start] = ACTIONS(757), - [sym__indented_chunk_start] = ACTIONS(757), - [sym_atx_h1_marker] = ACTIONS(757), - [sym_atx_h2_marker] = ACTIONS(757), - [sym_atx_h3_marker] = ACTIONS(757), - [sym_atx_h4_marker] = ACTIONS(757), - [sym_atx_h5_marker] = ACTIONS(757), - [sym_atx_h6_marker] = ACTIONS(757), - [sym__thematic_break] = ACTIONS(757), - [sym__list_marker_minus] = ACTIONS(757), - [sym__list_marker_plus] = ACTIONS(757), - [sym__list_marker_star] = ACTIONS(757), - [sym__list_marker_parenthesis] = ACTIONS(757), - [sym__list_marker_dot] = ACTIONS(757), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(757), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(757), - [sym__list_marker_star_dont_interrupt] = ACTIONS(757), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(757), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(757), - [sym__fenced_code_block_start_backtick] = ACTIONS(757), - [sym__fenced_code_block_start_tilde] = ACTIONS(757), - [sym__blank_line_start] = ACTIONS(757), - [sym__code_span_start] = ACTIONS(757), - [sym__emphasis_open_star] = ACTIONS(757), - [sym__emphasis_open_underscore] = ACTIONS(757), - [sym__last_token_whitespace] = ACTIONS(125), + [238] = { + [aux_sym__ignore_matching_tokens] = STATE(160), + [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), + [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(921), + [sym_numeric_character_reference] = ACTIONS(921), + [sym_uri_autolink] = ACTIONS(921), + [sym_email_autolink] = 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(113), + [sym__block_quote_continuation] = ACTIONS(113), + [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__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__emphasis_open_star] = ACTIONS(921), + [sym__emphasis_open_underscore] = ACTIONS(921), + [sym__last_token_whitespace] = ACTIONS(113), }, - [189] = { - [aux_sym__ignore_matching_tokens] = STATE(158), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_DQUOTE] = ACTIONS(775), - [anon_sym_POUND] = ACTIONS(775), - [anon_sym_DOLLAR] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(777), - [anon_sym_SQUOTE] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_RPAREN] = ACTIONS(775), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_COMMA] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(775), - [anon_sym_SEMI] = ACTIONS(775), - [anon_sym_LT] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_QMARK] = ACTIONS(775), - [anon_sym_AT] = ACTIONS(775), - [anon_sym_LBRACK] = ACTIONS(775), - [anon_sym_BSLASH] = ACTIONS(777), - [anon_sym_RBRACK] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym__] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(775), - [anon_sym_LBRACE] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_RBRACE] = ACTIONS(775), - [anon_sym_TILDE] = ACTIONS(775), - [aux_sym__html_block_1_token1] = ACTIONS(775), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(777), - [anon_sym_LT_QMARK] = ACTIONS(777), - [aux_sym__html_block_4_token1] = ACTIONS(777), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(775), - [aux_sym__html_block_6_token1] = ACTIONS(777), - [aux_sym__html_block_6_token2] = ACTIONS(775), - [sym__open_tag_html_block] = ACTIONS(775), - [sym__open_tag_html_block_newline] = ACTIONS(775), - [sym__closing_tag_html_block] = ACTIONS(775), - [sym__closing_tag_html_block_newline] = ACTIONS(775), - [sym_backslash_escape] = ACTIONS(775), - [sym_entity_reference] = ACTIONS(775), - [sym_numeric_character_reference] = ACTIONS(775), - [sym_uri_autolink] = ACTIONS(775), - [sym_email_autolink] = ACTIONS(775), - [sym__whitespace_ge_2] = ACTIONS(775), - [aux_sym__whitespace_token1] = ACTIONS(777), - [sym__word_no_digit] = ACTIONS(775), - [sym__digits] = ACTIONS(775), - [aux_sym__newline_token1] = ACTIONS(775), - [sym__block_close] = ACTIONS(775), - [sym__block_continuation] = ACTIONS(943), - [sym__block_quote_continuation] = ACTIONS(943), - [sym__block_quote_start] = ACTIONS(775), - [sym__indented_chunk_start] = ACTIONS(775), - [sym_atx_h1_marker] = ACTIONS(775), - [sym_atx_h2_marker] = ACTIONS(775), - [sym_atx_h3_marker] = ACTIONS(775), - [sym_atx_h4_marker] = ACTIONS(775), - [sym_atx_h5_marker] = ACTIONS(775), - [sym_atx_h6_marker] = ACTIONS(775), - [sym__thematic_break] = ACTIONS(775), - [sym__list_marker_minus] = ACTIONS(775), - [sym__list_marker_plus] = ACTIONS(775), - [sym__list_marker_star] = ACTIONS(775), - [sym__list_marker_parenthesis] = ACTIONS(775), - [sym__list_marker_dot] = ACTIONS(775), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(775), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(775), - [sym__list_marker_star_dont_interrupt] = ACTIONS(775), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(775), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(775), - [sym__fenced_code_block_start_backtick] = ACTIONS(775), - [sym__fenced_code_block_start_tilde] = ACTIONS(775), - [sym__blank_line_start] = ACTIONS(775), - [sym__code_span_start] = ACTIONS(775), - [sym__emphasis_open_star] = ACTIONS(775), - [sym__emphasis_open_underscore] = ACTIONS(775), - [sym__last_token_whitespace] = ACTIONS(943), + [239] = { + [aux_sym__ignore_matching_tokens] = STATE(160), + [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), + [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(917), + [sym_numeric_character_reference] = ACTIONS(917), + [sym_uri_autolink] = ACTIONS(917), + [sym_email_autolink] = 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_close] = ACTIONS(917), + [sym__block_continuation] = ACTIONS(113), + [sym__block_quote_continuation] = ACTIONS(113), + [sym__block_quote_start] = ACTIONS(917), + [sym__indented_chunk_start] = ACTIONS(917), + [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__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(917), + [sym__code_span_start] = ACTIONS(917), + [sym__emphasis_open_star] = ACTIONS(917), + [sym__emphasis_open_underscore] = ACTIONS(917), + [sym__last_token_whitespace] = ACTIONS(113), }, - [190] = { - [aux_sym__ignore_matching_tokens] = STATE(275), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_DQUOTE] = ACTIONS(775), - [anon_sym_POUND] = ACTIONS(775), - [anon_sym_DOLLAR] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(777), - [anon_sym_SQUOTE] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_RPAREN] = ACTIONS(775), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_COMMA] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(775), - [anon_sym_SEMI] = ACTIONS(775), - [anon_sym_LT] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_QMARK] = ACTIONS(775), - [anon_sym_AT] = ACTIONS(775), - [anon_sym_LBRACK] = ACTIONS(775), - [anon_sym_BSLASH] = ACTIONS(777), - [anon_sym_RBRACK] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym__] = ACTIONS(775), - [anon_sym_BQUOTE] = ACTIONS(775), - [anon_sym_LBRACE] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_RBRACE] = ACTIONS(775), - [anon_sym_TILDE] = ACTIONS(775), - [aux_sym__html_block_1_token1] = ACTIONS(775), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(777), - [anon_sym_LT_QMARK] = ACTIONS(777), - [aux_sym__html_block_4_token1] = ACTIONS(777), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(775), - [aux_sym__html_block_6_token1] = ACTIONS(777), - [aux_sym__html_block_6_token2] = ACTIONS(775), - [sym__open_tag_html_block] = ACTIONS(775), - [sym__open_tag_html_block_newline] = ACTIONS(775), - [sym__closing_tag_html_block] = ACTIONS(775), - [sym__closing_tag_html_block_newline] = ACTIONS(775), - [sym_backslash_escape] = ACTIONS(775), - [sym_entity_reference] = ACTIONS(775), - [sym_numeric_character_reference] = ACTIONS(775), - [sym_uri_autolink] = ACTIONS(775), - [sym_email_autolink] = ACTIONS(775), - [sym__whitespace_ge_2] = ACTIONS(775), - [aux_sym__whitespace_token1] = ACTIONS(777), - [sym__word_no_digit] = ACTIONS(775), - [sym__digits] = ACTIONS(775), - [aux_sym__newline_token1] = ACTIONS(775), - [sym__block_close] = ACTIONS(775), - [sym__block_continuation] = ACTIONS(125), - [sym__block_quote_continuation] = ACTIONS(125), - [sym__block_quote_start] = ACTIONS(775), - [sym__indented_chunk_start] = ACTIONS(775), - [sym_atx_h1_marker] = ACTIONS(775), - [sym_atx_h2_marker] = ACTIONS(775), - [sym_atx_h3_marker] = ACTIONS(775), - [sym_atx_h4_marker] = ACTIONS(775), - [sym_atx_h5_marker] = ACTIONS(775), - [sym_atx_h6_marker] = ACTIONS(775), - [sym__thematic_break] = ACTIONS(775), - [sym__list_marker_minus] = ACTIONS(775), - [sym__list_marker_plus] = ACTIONS(775), - [sym__list_marker_star] = ACTIONS(775), - [sym__list_marker_parenthesis] = ACTIONS(775), - [sym__list_marker_dot] = ACTIONS(775), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(775), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(775), - [sym__list_marker_star_dont_interrupt] = ACTIONS(775), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(775), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(775), - [sym__fenced_code_block_start_backtick] = ACTIONS(775), - [sym__fenced_code_block_start_tilde] = ACTIONS(775), - [sym__blank_line_start] = ACTIONS(775), - [sym__code_span_start] = ACTIONS(775), - [sym__emphasis_open_star] = ACTIONS(775), - [sym__emphasis_open_underscore] = ACTIONS(775), - [sym__last_token_whitespace] = ACTIONS(125), + [240] = { + [aux_sym__ignore_matching_tokens] = STATE(201), + [ts_builtin_sym_end] = ACTIONS(937), + [anon_sym_BANG] = ACTIONS(937), + [anon_sym_DQUOTE] = ACTIONS(937), + [anon_sym_POUND] = ACTIONS(937), + [anon_sym_DOLLAR] = ACTIONS(937), + [anon_sym_PERCENT] = ACTIONS(937), + [anon_sym_AMP] = ACTIONS(939), + [anon_sym_SQUOTE] = ACTIONS(937), + [anon_sym_LPAREN] = ACTIONS(937), + [anon_sym_RPAREN] = ACTIONS(937), + [anon_sym_STAR] = ACTIONS(937), + [anon_sym_PLUS] = ACTIONS(937), + [anon_sym_COMMA] = ACTIONS(937), + [anon_sym_DASH] = ACTIONS(937), + [anon_sym_DOT] = ACTIONS(937), + [anon_sym_SLASH] = ACTIONS(937), + [anon_sym_COLON] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(937), + [anon_sym_LT] = ACTIONS(939), + [anon_sym_EQ] = ACTIONS(937), + [anon_sym_GT] = ACTIONS(937), + [anon_sym_QMARK] = ACTIONS(937), + [anon_sym_AT] = ACTIONS(937), + [anon_sym_LBRACK] = ACTIONS(937), + [anon_sym_BSLASH] = ACTIONS(939), + [anon_sym_RBRACK] = ACTIONS(937), + [anon_sym_CARET] = ACTIONS(937), + [anon_sym__] = ACTIONS(937), + [anon_sym_BQUOTE] = ACTIONS(937), + [anon_sym_LBRACE] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(937), + [anon_sym_RBRACE] = ACTIONS(937), + [anon_sym_TILDE] = ACTIONS(937), + [aux_sym__html_block_1_token1] = ACTIONS(937), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(939), + [anon_sym_LT_QMARK] = ACTIONS(939), + [aux_sym__html_block_4_token1] = ACTIONS(939), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(937), + [aux_sym__html_block_6_token1] = ACTIONS(939), + [aux_sym__html_block_6_token2] = ACTIONS(937), + [sym__open_tag_html_block] = ACTIONS(937), + [sym__open_tag_html_block_newline] = ACTIONS(937), + [sym__closing_tag_html_block] = ACTIONS(937), + [sym__closing_tag_html_block_newline] = ACTIONS(937), + [sym_backslash_escape] = ACTIONS(937), + [sym_entity_reference] = ACTIONS(937), + [sym_numeric_character_reference] = ACTIONS(937), + [sym_uri_autolink] = ACTIONS(937), + [sym_email_autolink] = ACTIONS(937), + [sym__whitespace_ge_2] = ACTIONS(937), + [aux_sym__whitespace_token1] = ACTIONS(939), + [sym__word_no_digit] = ACTIONS(937), + [sym__digits] = ACTIONS(937), + [aux_sym__newline_token1] = ACTIONS(937), + [sym__block_continuation] = ACTIONS(109), + [sym__block_quote_continuation] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(937), + [sym__indented_chunk_start] = ACTIONS(937), + [sym_atx_h1_marker] = ACTIONS(937), + [sym_atx_h2_marker] = ACTIONS(937), + [sym_atx_h3_marker] = ACTIONS(937), + [sym_atx_h4_marker] = ACTIONS(937), + [sym_atx_h5_marker] = ACTIONS(937), + [sym_atx_h6_marker] = ACTIONS(937), + [sym__thematic_break] = ACTIONS(937), + [sym__list_marker_minus] = ACTIONS(937), + [sym__list_marker_plus] = ACTIONS(937), + [sym__list_marker_star] = ACTIONS(937), + [sym__list_marker_parenthesis] = ACTIONS(937), + [sym__list_marker_dot] = ACTIONS(937), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(937), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(937), + [sym__list_marker_star_dont_interrupt] = ACTIONS(937), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(937), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(937), + [sym__fenced_code_block_start_backtick] = ACTIONS(937), + [sym__fenced_code_block_start_tilde] = ACTIONS(937), + [sym__blank_line_start] = ACTIONS(937), + [sym__code_span_start] = ACTIONS(937), + [sym__emphasis_open_star] = ACTIONS(937), + [sym__emphasis_open_underscore] = ACTIONS(937), + [sym__last_token_whitespace] = ACTIONS(109), }, - [191] = { + [241] = { + [aux_sym__ignore_matching_tokens] = STATE(201), + [ts_builtin_sym_end] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_DQUOTE] = ACTIONS(941), + [anon_sym_POUND] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_PERCENT] = ACTIONS(941), + [anon_sym_AMP] = ACTIONS(943), + [anon_sym_SQUOTE] = ACTIONS(941), + [anon_sym_LPAREN] = ACTIONS(941), + [anon_sym_RPAREN] = ACTIONS(941), + [anon_sym_STAR] = ACTIONS(941), + [anon_sym_PLUS] = ACTIONS(941), + [anon_sym_COMMA] = ACTIONS(941), + [anon_sym_DASH] = ACTIONS(941), + [anon_sym_DOT] = ACTIONS(941), + [anon_sym_SLASH] = ACTIONS(941), + [anon_sym_COLON] = ACTIONS(941), + [anon_sym_SEMI] = ACTIONS(941), + [anon_sym_LT] = ACTIONS(943), + [anon_sym_EQ] = ACTIONS(941), + [anon_sym_GT] = ACTIONS(941), + [anon_sym_QMARK] = ACTIONS(941), + [anon_sym_AT] = ACTIONS(941), + [anon_sym_LBRACK] = ACTIONS(941), + [anon_sym_BSLASH] = ACTIONS(943), + [anon_sym_RBRACK] = ACTIONS(941), + [anon_sym_CARET] = ACTIONS(941), + [anon_sym__] = ACTIONS(941), + [anon_sym_BQUOTE] = ACTIONS(941), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_PIPE] = ACTIONS(941), + [anon_sym_RBRACE] = ACTIONS(941), + [anon_sym_TILDE] = ACTIONS(941), + [aux_sym__html_block_1_token1] = ACTIONS(941), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(943), + [anon_sym_LT_QMARK] = ACTIONS(943), + [aux_sym__html_block_4_token1] = ACTIONS(943), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(941), + [aux_sym__html_block_6_token1] = ACTIONS(943), + [aux_sym__html_block_6_token2] = ACTIONS(941), + [sym__open_tag_html_block] = ACTIONS(941), + [sym__open_tag_html_block_newline] = ACTIONS(941), + [sym__closing_tag_html_block] = ACTIONS(941), + [sym__closing_tag_html_block_newline] = ACTIONS(941), + [sym_backslash_escape] = ACTIONS(941), + [sym_entity_reference] = ACTIONS(941), + [sym_numeric_character_reference] = ACTIONS(941), + [sym_uri_autolink] = ACTIONS(941), + [sym_email_autolink] = ACTIONS(941), + [sym__whitespace_ge_2] = ACTIONS(941), + [aux_sym__whitespace_token1] = ACTIONS(943), + [sym__word_no_digit] = ACTIONS(941), + [sym__digits] = ACTIONS(941), + [aux_sym__newline_token1] = ACTIONS(941), + [sym__block_continuation] = ACTIONS(109), + [sym__block_quote_continuation] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(941), + [sym__indented_chunk_start] = ACTIONS(941), + [sym_atx_h1_marker] = ACTIONS(941), + [sym_atx_h2_marker] = ACTIONS(941), + [sym_atx_h3_marker] = ACTIONS(941), + [sym_atx_h4_marker] = ACTIONS(941), + [sym_atx_h5_marker] = ACTIONS(941), + [sym_atx_h6_marker] = ACTIONS(941), + [sym__thematic_break] = ACTIONS(941), + [sym__list_marker_minus] = ACTIONS(941), + [sym__list_marker_plus] = ACTIONS(941), + [sym__list_marker_star] = ACTIONS(941), + [sym__list_marker_parenthesis] = ACTIONS(941), + [sym__list_marker_dot] = ACTIONS(941), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(941), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(941), + [sym__list_marker_star_dont_interrupt] = ACTIONS(941), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(941), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(941), + [sym__fenced_code_block_start_backtick] = ACTIONS(941), + [sym__fenced_code_block_start_tilde] = ACTIONS(941), + [sym__blank_line_start] = ACTIONS(941), + [sym__code_span_start] = ACTIONS(941), + [sym__emphasis_open_star] = ACTIONS(941), + [sym__emphasis_open_underscore] = ACTIONS(941), + [sym__last_token_whitespace] = ACTIONS(109), + }, + [242] = { + [aux_sym__ignore_matching_tokens] = STATE(165), + [ts_builtin_sym_end] = ACTIONS(808), + [anon_sym_BANG] = ACTIONS(808), + [anon_sym_DQUOTE] = ACTIONS(808), + [anon_sym_POUND] = ACTIONS(808), + [anon_sym_DOLLAR] = ACTIONS(808), + [anon_sym_PERCENT] = ACTIONS(808), + [anon_sym_AMP] = ACTIONS(810), + [anon_sym_SQUOTE] = ACTIONS(808), + [anon_sym_LPAREN] = ACTIONS(808), + [anon_sym_RPAREN] = ACTIONS(808), + [anon_sym_STAR] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(808), + [anon_sym_COMMA] = ACTIONS(808), + [anon_sym_DASH] = ACTIONS(808), + [anon_sym_DOT] = ACTIONS(808), + [anon_sym_SLASH] = ACTIONS(808), + [anon_sym_COLON] = ACTIONS(808), + [anon_sym_SEMI] = ACTIONS(808), + [anon_sym_LT] = ACTIONS(810), + [anon_sym_EQ] = ACTIONS(808), + [anon_sym_GT] = ACTIONS(808), + [anon_sym_QMARK] = ACTIONS(808), + [anon_sym_AT] = ACTIONS(808), + [anon_sym_LBRACK] = ACTIONS(808), + [anon_sym_BSLASH] = ACTIONS(810), + [anon_sym_RBRACK] = ACTIONS(808), + [anon_sym_CARET] = ACTIONS(808), + [anon_sym__] = ACTIONS(808), + [anon_sym_BQUOTE] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_PIPE] = ACTIONS(808), + [anon_sym_RBRACE] = ACTIONS(808), + [anon_sym_TILDE] = ACTIONS(808), + [aux_sym__html_block_1_token1] = ACTIONS(808), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(810), + [anon_sym_LT_QMARK] = ACTIONS(810), + [aux_sym__html_block_4_token1] = ACTIONS(810), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(808), + [aux_sym__html_block_6_token1] = ACTIONS(810), + [aux_sym__html_block_6_token2] = ACTIONS(808), + [sym__open_tag_html_block] = ACTIONS(808), + [sym__open_tag_html_block_newline] = ACTIONS(808), + [sym__closing_tag_html_block] = ACTIONS(808), + [sym__closing_tag_html_block_newline] = ACTIONS(808), + [sym_backslash_escape] = ACTIONS(808), + [sym_entity_reference] = ACTIONS(808), + [sym_numeric_character_reference] = ACTIONS(808), + [sym_uri_autolink] = ACTIONS(808), + [sym_email_autolink] = ACTIONS(808), + [sym__whitespace_ge_2] = ACTIONS(808), + [aux_sym__whitespace_token1] = ACTIONS(810), + [sym__word_no_digit] = ACTIONS(808), + [sym__digits] = ACTIONS(808), + [aux_sym__newline_token1] = ACTIONS(808), + [sym__block_continuation] = ACTIONS(1109), + [sym__block_quote_continuation] = ACTIONS(1109), + [sym__block_quote_start] = ACTIONS(808), + [sym__indented_chunk_start] = ACTIONS(808), + [sym_atx_h1_marker] = ACTIONS(808), + [sym_atx_h2_marker] = ACTIONS(808), + [sym_atx_h3_marker] = ACTIONS(808), + [sym_atx_h4_marker] = ACTIONS(808), + [sym_atx_h5_marker] = ACTIONS(808), + [sym_atx_h6_marker] = ACTIONS(808), + [sym__thematic_break] = ACTIONS(808), + [sym__list_marker_minus] = ACTIONS(808), + [sym__list_marker_plus] = ACTIONS(808), + [sym__list_marker_star] = ACTIONS(808), + [sym__list_marker_parenthesis] = ACTIONS(808), + [sym__list_marker_dot] = ACTIONS(808), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(808), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(808), + [sym__list_marker_star_dont_interrupt] = ACTIONS(808), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(808), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(808), + [sym__fenced_code_block_start_backtick] = ACTIONS(808), + [sym__fenced_code_block_start_tilde] = ACTIONS(808), + [sym__blank_line_start] = ACTIONS(808), + [sym__code_span_start] = ACTIONS(808), + [sym__emphasis_open_star] = ACTIONS(808), + [sym__emphasis_open_underscore] = ACTIONS(808), + [sym__last_token_whitespace] = ACTIONS(1109), + }, + [243] = { + [aux_sym__ignore_matching_tokens] = STATE(210), + [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), + [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(907), + [sym_numeric_character_reference] = ACTIONS(907), + [sym_uri_autolink] = ACTIONS(907), + [sym_email_autolink] = 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(1111), + [sym__block_quote_continuation] = ACTIONS(1111), + [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__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__emphasis_open_star] = ACTIONS(907), + [sym__emphasis_open_underscore] = ACTIONS(907), + [sym__last_token_whitespace] = ACTIONS(1111), + }, + [244] = { [aux_sym__ignore_matching_tokens] = STATE(160), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_DQUOTE] = ACTIONS(799), - [anon_sym_POUND] = ACTIONS(799), - [anon_sym_DOLLAR] = ACTIONS(799), - [anon_sym_PERCENT] = ACTIONS(799), - [anon_sym_AMP] = ACTIONS(801), - [anon_sym_SQUOTE] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(799), - [anon_sym_RPAREN] = ACTIONS(799), - [anon_sym_STAR] = ACTIONS(799), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_COMMA] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_DOT] = ACTIONS(799), - [anon_sym_SLASH] = ACTIONS(799), - [anon_sym_COLON] = ACTIONS(799), - [anon_sym_SEMI] = ACTIONS(799), - [anon_sym_LT] = ACTIONS(801), - [anon_sym_EQ] = ACTIONS(799), - [anon_sym_GT] = ACTIONS(799), - [anon_sym_QMARK] = ACTIONS(799), - [anon_sym_AT] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(799), - [anon_sym_BSLASH] = ACTIONS(801), - [anon_sym_RBRACK] = ACTIONS(799), - [anon_sym_CARET] = ACTIONS(799), - [anon_sym__] = ACTIONS(799), - [anon_sym_BQUOTE] = ACTIONS(799), - [anon_sym_LBRACE] = ACTIONS(799), - [anon_sym_PIPE] = ACTIONS(799), - [anon_sym_RBRACE] = ACTIONS(799), - [anon_sym_TILDE] = ACTIONS(799), - [aux_sym__html_block_1_token1] = ACTIONS(799), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(801), - [anon_sym_LT_QMARK] = ACTIONS(801), - [aux_sym__html_block_4_token1] = ACTIONS(801), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(799), - [aux_sym__html_block_6_token1] = ACTIONS(801), - [aux_sym__html_block_6_token2] = ACTIONS(799), - [sym__open_tag_html_block] = ACTIONS(799), - [sym__open_tag_html_block_newline] = ACTIONS(799), - [sym__closing_tag_html_block] = ACTIONS(799), - [sym__closing_tag_html_block_newline] = ACTIONS(799), - [sym_backslash_escape] = ACTIONS(799), - [sym_entity_reference] = ACTIONS(799), - [sym_numeric_character_reference] = ACTIONS(799), - [sym_uri_autolink] = ACTIONS(799), - [sym_email_autolink] = ACTIONS(799), - [sym__whitespace_ge_2] = ACTIONS(799), - [aux_sym__whitespace_token1] = ACTIONS(801), - [sym__word_no_digit] = ACTIONS(799), - [sym__digits] = ACTIONS(799), - [aux_sym__newline_token1] = ACTIONS(799), - [sym__block_close] = ACTIONS(799), - [sym__block_continuation] = ACTIONS(945), - [sym__block_quote_continuation] = ACTIONS(945), - [sym__block_quote_start] = ACTIONS(799), - [sym__indented_chunk_start] = ACTIONS(799), - [sym_atx_h1_marker] = ACTIONS(799), - [sym_atx_h2_marker] = ACTIONS(799), - [sym_atx_h3_marker] = ACTIONS(799), - [sym_atx_h4_marker] = ACTIONS(799), - [sym_atx_h5_marker] = ACTIONS(799), - [sym_atx_h6_marker] = ACTIONS(799), - [sym__thematic_break] = ACTIONS(799), - [sym__list_marker_minus] = ACTIONS(799), - [sym__list_marker_plus] = ACTIONS(799), - [sym__list_marker_star] = ACTIONS(799), - [sym__list_marker_parenthesis] = ACTIONS(799), - [sym__list_marker_dot] = ACTIONS(799), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(799), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(799), - [sym__list_marker_star_dont_interrupt] = ACTIONS(799), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(799), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(799), - [sym__fenced_code_block_start_backtick] = ACTIONS(799), - [sym__fenced_code_block_start_tilde] = ACTIONS(799), - [sym__blank_line_start] = ACTIONS(799), - [sym__code_span_start] = ACTIONS(799), - [sym__emphasis_open_star] = ACTIONS(799), - [sym__emphasis_open_underscore] = ACTIONS(799), - [sym__last_token_whitespace] = ACTIONS(945), + [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), + [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(907), + [sym_numeric_character_reference] = ACTIONS(907), + [sym_uri_autolink] = ACTIONS(907), + [sym_email_autolink] = 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(113), + [sym__block_quote_continuation] = ACTIONS(113), + [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__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__emphasis_open_star] = ACTIONS(907), + [sym__emphasis_open_underscore] = ACTIONS(907), + [sym__last_token_whitespace] = ACTIONS(113), }, - [192] = { - [aux_sym__ignore_matching_tokens] = STATE(275), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_DQUOTE] = ACTIONS(799), - [anon_sym_POUND] = ACTIONS(799), - [anon_sym_DOLLAR] = ACTIONS(799), - [anon_sym_PERCENT] = ACTIONS(799), - [anon_sym_AMP] = ACTIONS(801), - [anon_sym_SQUOTE] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(799), - [anon_sym_RPAREN] = ACTIONS(799), - [anon_sym_STAR] = ACTIONS(799), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_COMMA] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_DOT] = ACTIONS(799), - [anon_sym_SLASH] = ACTIONS(799), - [anon_sym_COLON] = ACTIONS(799), - [anon_sym_SEMI] = ACTIONS(799), - [anon_sym_LT] = ACTIONS(801), - [anon_sym_EQ] = ACTIONS(799), - [anon_sym_GT] = ACTIONS(799), - [anon_sym_QMARK] = ACTIONS(799), - [anon_sym_AT] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(799), - [anon_sym_BSLASH] = ACTIONS(801), - [anon_sym_RBRACK] = ACTIONS(799), - [anon_sym_CARET] = ACTIONS(799), - [anon_sym__] = ACTIONS(799), - [anon_sym_BQUOTE] = ACTIONS(799), - [anon_sym_LBRACE] = ACTIONS(799), - [anon_sym_PIPE] = ACTIONS(799), - [anon_sym_RBRACE] = ACTIONS(799), - [anon_sym_TILDE] = ACTIONS(799), - [aux_sym__html_block_1_token1] = ACTIONS(799), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(801), - [anon_sym_LT_QMARK] = ACTIONS(801), - [aux_sym__html_block_4_token1] = ACTIONS(801), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(799), - [aux_sym__html_block_6_token1] = ACTIONS(801), - [aux_sym__html_block_6_token2] = ACTIONS(799), - [sym__open_tag_html_block] = ACTIONS(799), - [sym__open_tag_html_block_newline] = ACTIONS(799), - [sym__closing_tag_html_block] = ACTIONS(799), - [sym__closing_tag_html_block_newline] = ACTIONS(799), - [sym_backslash_escape] = ACTIONS(799), - [sym_entity_reference] = ACTIONS(799), - [sym_numeric_character_reference] = ACTIONS(799), - [sym_uri_autolink] = ACTIONS(799), - [sym_email_autolink] = ACTIONS(799), - [sym__whitespace_ge_2] = ACTIONS(799), - [aux_sym__whitespace_token1] = ACTIONS(801), - [sym__word_no_digit] = ACTIONS(799), - [sym__digits] = ACTIONS(799), - [aux_sym__newline_token1] = ACTIONS(799), - [sym__block_close] = ACTIONS(799), - [sym__block_continuation] = ACTIONS(125), - [sym__block_quote_continuation] = ACTIONS(125), - [sym__block_quote_start] = ACTIONS(799), - [sym__indented_chunk_start] = ACTIONS(799), - [sym_atx_h1_marker] = ACTIONS(799), - [sym_atx_h2_marker] = ACTIONS(799), - [sym_atx_h3_marker] = ACTIONS(799), - [sym_atx_h4_marker] = ACTIONS(799), - [sym_atx_h5_marker] = ACTIONS(799), - [sym_atx_h6_marker] = ACTIONS(799), - [sym__thematic_break] = ACTIONS(799), - [sym__list_marker_minus] = ACTIONS(799), - [sym__list_marker_plus] = ACTIONS(799), - [sym__list_marker_star] = ACTIONS(799), - [sym__list_marker_parenthesis] = ACTIONS(799), - [sym__list_marker_dot] = ACTIONS(799), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(799), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(799), - [sym__list_marker_star_dont_interrupt] = ACTIONS(799), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(799), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(799), - [sym__fenced_code_block_start_backtick] = ACTIONS(799), - [sym__fenced_code_block_start_tilde] = ACTIONS(799), - [sym__blank_line_start] = ACTIONS(799), - [sym__code_span_start] = ACTIONS(799), - [sym__emphasis_open_star] = ACTIONS(799), - [sym__emphasis_open_underscore] = ACTIONS(799), - [sym__last_token_whitespace] = ACTIONS(125), + [245] = { + [aux_sym__ignore_matching_tokens] = STATE(160), + [anon_sym_BANG] = ACTIONS(733), + [anon_sym_DQUOTE] = ACTIONS(733), + [anon_sym_POUND] = ACTIONS(733), + [anon_sym_DOLLAR] = ACTIONS(733), + [anon_sym_PERCENT] = ACTIONS(733), + [anon_sym_AMP] = ACTIONS(735), + [anon_sym_SQUOTE] = ACTIONS(733), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_RPAREN] = ACTIONS(733), + [anon_sym_STAR] = ACTIONS(733), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_COMMA] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_DOT] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(733), + [anon_sym_COLON] = ACTIONS(733), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LT] = ACTIONS(735), + [anon_sym_EQ] = ACTIONS(733), + [anon_sym_GT] = ACTIONS(733), + [anon_sym_QMARK] = ACTIONS(733), + [anon_sym_AT] = ACTIONS(733), + [anon_sym_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH] = ACTIONS(735), + [anon_sym_RBRACK] = ACTIONS(733), + [anon_sym_CARET] = ACTIONS(733), + [anon_sym__] = ACTIONS(733), + [anon_sym_BQUOTE] = ACTIONS(733), + [anon_sym_LBRACE] = ACTIONS(733), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_RBRACE] = ACTIONS(733), + [anon_sym_TILDE] = ACTIONS(733), + [aux_sym__html_block_1_token1] = ACTIONS(733), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(735), + [anon_sym_LT_QMARK] = ACTIONS(735), + [aux_sym__html_block_4_token1] = ACTIONS(735), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(733), + [aux_sym__html_block_6_token1] = ACTIONS(735), + [aux_sym__html_block_6_token2] = ACTIONS(733), + [sym__open_tag_html_block] = ACTIONS(733), + [sym__open_tag_html_block_newline] = ACTIONS(733), + [sym__closing_tag_html_block] = ACTIONS(733), + [sym__closing_tag_html_block_newline] = ACTIONS(733), + [sym_backslash_escape] = ACTIONS(733), + [sym_entity_reference] = ACTIONS(733), + [sym_numeric_character_reference] = ACTIONS(733), + [sym_uri_autolink] = ACTIONS(733), + [sym_email_autolink] = ACTIONS(733), + [sym__whitespace_ge_2] = ACTIONS(733), + [aux_sym__whitespace_token1] = ACTIONS(735), + [sym__word_no_digit] = ACTIONS(733), + [sym__digits] = ACTIONS(733), + [aux_sym__newline_token1] = ACTIONS(733), + [sym__block_close] = ACTIONS(733), + [sym__block_continuation] = ACTIONS(113), + [sym__block_quote_continuation] = ACTIONS(113), + [sym__block_quote_start] = ACTIONS(733), + [sym__indented_chunk_start] = ACTIONS(733), + [sym_atx_h1_marker] = ACTIONS(733), + [sym_atx_h2_marker] = ACTIONS(733), + [sym_atx_h3_marker] = ACTIONS(733), + [sym_atx_h4_marker] = ACTIONS(733), + [sym_atx_h5_marker] = ACTIONS(733), + [sym_atx_h6_marker] = ACTIONS(733), + [sym__thematic_break] = ACTIONS(733), + [sym__list_marker_minus] = ACTIONS(733), + [sym__list_marker_plus] = ACTIONS(733), + [sym__list_marker_star] = ACTIONS(733), + [sym__list_marker_parenthesis] = ACTIONS(733), + [sym__list_marker_dot] = ACTIONS(733), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(733), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(733), + [sym__list_marker_star_dont_interrupt] = ACTIONS(733), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(733), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(733), + [sym__fenced_code_block_start_backtick] = ACTIONS(733), + [sym__fenced_code_block_start_tilde] = ACTIONS(733), + [sym__blank_line_start] = ACTIONS(733), + [sym__code_span_start] = ACTIONS(733), + [sym__emphasis_open_star] = ACTIONS(733), + [sym__emphasis_open_underscore] = ACTIONS(733), + [sym__last_token_whitespace] = ACTIONS(113), }, - [193] = { - [aux_sym__ignore_matching_tokens] = STATE(162), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(821), - [anon_sym_POUND] = ACTIONS(821), - [anon_sym_DOLLAR] = ACTIONS(821), - [anon_sym_PERCENT] = ACTIONS(821), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_SQUOTE] = ACTIONS(821), - [anon_sym_LPAREN] = ACTIONS(821), - [anon_sym_RPAREN] = ACTIONS(821), - [anon_sym_STAR] = ACTIONS(821), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_COMMA] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_SLASH] = ACTIONS(821), - [anon_sym_COLON] = ACTIONS(821), - [anon_sym_SEMI] = ACTIONS(821), - [anon_sym_LT] = ACTIONS(823), - [anon_sym_EQ] = ACTIONS(821), - [anon_sym_GT] = ACTIONS(821), - [anon_sym_QMARK] = ACTIONS(821), - [anon_sym_AT] = ACTIONS(821), - [anon_sym_LBRACK] = ACTIONS(821), - [anon_sym_BSLASH] = ACTIONS(823), - [anon_sym_RBRACK] = ACTIONS(821), - [anon_sym_CARET] = ACTIONS(821), - [anon_sym__] = ACTIONS(821), - [anon_sym_BQUOTE] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(821), - [anon_sym_PIPE] = ACTIONS(821), - [anon_sym_RBRACE] = ACTIONS(821), - [anon_sym_TILDE] = ACTIONS(821), - [aux_sym__html_block_1_token1] = ACTIONS(821), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(823), - [anon_sym_LT_QMARK] = ACTIONS(823), - [aux_sym__html_block_4_token1] = ACTIONS(823), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(821), - [aux_sym__html_block_6_token1] = ACTIONS(823), - [aux_sym__html_block_6_token2] = ACTIONS(821), - [sym__open_tag_html_block] = ACTIONS(821), - [sym__open_tag_html_block_newline] = ACTIONS(821), - [sym__closing_tag_html_block] = ACTIONS(821), - [sym__closing_tag_html_block_newline] = ACTIONS(821), - [sym_backslash_escape] = ACTIONS(821), - [sym_entity_reference] = ACTIONS(821), - [sym_numeric_character_reference] = ACTIONS(821), - [sym_uri_autolink] = ACTIONS(821), - [sym_email_autolink] = ACTIONS(821), - [sym__whitespace_ge_2] = ACTIONS(821), - [aux_sym__whitespace_token1] = ACTIONS(823), - [sym__word_no_digit] = ACTIONS(821), - [sym__digits] = ACTIONS(821), - [aux_sym__newline_token1] = ACTIONS(821), - [sym__block_close] = ACTIONS(821), - [sym__block_continuation] = ACTIONS(947), - [sym__block_quote_continuation] = ACTIONS(947), - [sym__block_quote_start] = ACTIONS(821), - [sym__indented_chunk_start] = ACTIONS(821), - [sym_atx_h1_marker] = ACTIONS(821), - [sym_atx_h2_marker] = ACTIONS(821), - [sym_atx_h3_marker] = ACTIONS(821), - [sym_atx_h4_marker] = ACTIONS(821), - [sym_atx_h5_marker] = ACTIONS(821), - [sym_atx_h6_marker] = ACTIONS(821), - [sym__thematic_break] = ACTIONS(821), - [sym__list_marker_minus] = ACTIONS(821), - [sym__list_marker_plus] = ACTIONS(821), - [sym__list_marker_star] = ACTIONS(821), - [sym__list_marker_parenthesis] = ACTIONS(821), - [sym__list_marker_dot] = ACTIONS(821), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(821), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(821), - [sym__list_marker_star_dont_interrupt] = ACTIONS(821), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(821), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(821), - [sym__fenced_code_block_start_backtick] = ACTIONS(821), - [sym__fenced_code_block_start_tilde] = ACTIONS(821), - [sym__blank_line_start] = ACTIONS(821), - [sym__code_span_start] = ACTIONS(821), - [sym__emphasis_open_star] = ACTIONS(821), - [sym__emphasis_open_underscore] = ACTIONS(821), - [sym__last_token_whitespace] = ACTIONS(947), + [246] = { + [aux_sym__ignore_matching_tokens] = STATE(102), + [anon_sym_BANG] = ACTIONS(897), + [anon_sym_DQUOTE] = ACTIONS(897), + [anon_sym_POUND] = ACTIONS(897), + [anon_sym_DOLLAR] = ACTIONS(897), + [anon_sym_PERCENT] = ACTIONS(897), + [anon_sym_AMP] = ACTIONS(899), + [anon_sym_SQUOTE] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_RPAREN] = ACTIONS(897), + [anon_sym_STAR] = ACTIONS(897), + [anon_sym_PLUS] = ACTIONS(897), + [anon_sym_COMMA] = ACTIONS(897), + [anon_sym_DASH] = ACTIONS(897), + [anon_sym_DOT] = ACTIONS(897), + [anon_sym_SLASH] = ACTIONS(897), + [anon_sym_COLON] = ACTIONS(897), + [anon_sym_SEMI] = ACTIONS(897), + [anon_sym_LT] = ACTIONS(899), + [anon_sym_EQ] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_QMARK] = ACTIONS(897), + [anon_sym_AT] = ACTIONS(897), + [anon_sym_LBRACK] = ACTIONS(897), + [anon_sym_BSLASH] = ACTIONS(899), + [anon_sym_RBRACK] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(897), + [anon_sym__] = ACTIONS(897), + [anon_sym_BQUOTE] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(897), + [anon_sym_PIPE] = ACTIONS(897), + [anon_sym_RBRACE] = ACTIONS(897), + [anon_sym_TILDE] = ACTIONS(897), + [aux_sym__html_block_1_token1] = ACTIONS(897), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(899), + [anon_sym_LT_QMARK] = ACTIONS(899), + [aux_sym__html_block_4_token1] = ACTIONS(899), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(897), + [aux_sym__html_block_6_token1] = ACTIONS(899), + [aux_sym__html_block_6_token2] = ACTIONS(897), + [sym__open_tag_html_block] = ACTIONS(897), + [sym__open_tag_html_block_newline] = ACTIONS(897), + [sym__closing_tag_html_block] = ACTIONS(897), + [sym__closing_tag_html_block_newline] = ACTIONS(897), + [sym_backslash_escape] = ACTIONS(897), + [sym_entity_reference] = ACTIONS(897), + [sym_numeric_character_reference] = ACTIONS(897), + [sym_uri_autolink] = ACTIONS(897), + [sym_email_autolink] = ACTIONS(897), + [sym__whitespace_ge_2] = ACTIONS(897), + [aux_sym__whitespace_token1] = ACTIONS(899), + [sym__word_no_digit] = ACTIONS(897), + [sym__digits] = ACTIONS(897), + [aux_sym__newline_token1] = ACTIONS(897), + [sym__block_close] = ACTIONS(897), + [sym__block_continuation] = ACTIONS(1113), + [sym__block_quote_continuation] = ACTIONS(1113), + [sym__block_quote_start] = ACTIONS(897), + [sym__indented_chunk_start] = ACTIONS(897), + [sym_atx_h1_marker] = ACTIONS(897), + [sym_atx_h2_marker] = ACTIONS(897), + [sym_atx_h3_marker] = ACTIONS(897), + [sym_atx_h4_marker] = ACTIONS(897), + [sym_atx_h5_marker] = ACTIONS(897), + [sym_atx_h6_marker] = ACTIONS(897), + [sym__thematic_break] = ACTIONS(897), + [sym__list_marker_minus] = ACTIONS(897), + [sym__list_marker_plus] = ACTIONS(897), + [sym__list_marker_star] = ACTIONS(897), + [sym__list_marker_parenthesis] = ACTIONS(897), + [sym__list_marker_dot] = ACTIONS(897), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(897), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(897), + [sym__list_marker_star_dont_interrupt] = ACTIONS(897), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(897), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(897), + [sym__fenced_code_block_start_backtick] = ACTIONS(897), + [sym__fenced_code_block_start_tilde] = ACTIONS(897), + [sym__blank_line_start] = ACTIONS(897), + [sym__code_span_start] = ACTIONS(897), + [sym__emphasis_open_star] = ACTIONS(897), + [sym__emphasis_open_underscore] = ACTIONS(897), + [sym__last_token_whitespace] = ACTIONS(1113), }, - [194] = { - [aux_sym__ignore_matching_tokens] = STATE(275), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(821), - [anon_sym_POUND] = ACTIONS(821), - [anon_sym_DOLLAR] = ACTIONS(821), - [anon_sym_PERCENT] = ACTIONS(821), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_SQUOTE] = ACTIONS(821), - [anon_sym_LPAREN] = ACTIONS(821), - [anon_sym_RPAREN] = ACTIONS(821), - [anon_sym_STAR] = ACTIONS(821), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_COMMA] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_SLASH] = ACTIONS(821), - [anon_sym_COLON] = ACTIONS(821), - [anon_sym_SEMI] = ACTIONS(821), - [anon_sym_LT] = ACTIONS(823), - [anon_sym_EQ] = ACTIONS(821), - [anon_sym_GT] = ACTIONS(821), - [anon_sym_QMARK] = ACTIONS(821), - [anon_sym_AT] = ACTIONS(821), - [anon_sym_LBRACK] = ACTIONS(821), - [anon_sym_BSLASH] = ACTIONS(823), - [anon_sym_RBRACK] = ACTIONS(821), - [anon_sym_CARET] = ACTIONS(821), - [anon_sym__] = ACTIONS(821), - [anon_sym_BQUOTE] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(821), - [anon_sym_PIPE] = ACTIONS(821), - [anon_sym_RBRACE] = ACTIONS(821), - [anon_sym_TILDE] = ACTIONS(821), - [aux_sym__html_block_1_token1] = ACTIONS(821), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(823), - [anon_sym_LT_QMARK] = ACTIONS(823), - [aux_sym__html_block_4_token1] = ACTIONS(823), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(821), - [aux_sym__html_block_6_token1] = ACTIONS(823), - [aux_sym__html_block_6_token2] = ACTIONS(821), - [sym__open_tag_html_block] = ACTIONS(821), - [sym__open_tag_html_block_newline] = ACTIONS(821), - [sym__closing_tag_html_block] = ACTIONS(821), - [sym__closing_tag_html_block_newline] = ACTIONS(821), - [sym_backslash_escape] = ACTIONS(821), - [sym_entity_reference] = ACTIONS(821), - [sym_numeric_character_reference] = ACTIONS(821), - [sym_uri_autolink] = ACTIONS(821), - [sym_email_autolink] = ACTIONS(821), - [sym__whitespace_ge_2] = ACTIONS(821), - [aux_sym__whitespace_token1] = ACTIONS(823), - [sym__word_no_digit] = ACTIONS(821), - [sym__digits] = ACTIONS(821), - [aux_sym__newline_token1] = ACTIONS(821), - [sym__block_close] = ACTIONS(821), - [sym__block_continuation] = ACTIONS(125), - [sym__block_quote_continuation] = ACTIONS(125), - [sym__block_quote_start] = ACTIONS(821), - [sym__indented_chunk_start] = ACTIONS(821), - [sym_atx_h1_marker] = ACTIONS(821), - [sym_atx_h2_marker] = ACTIONS(821), - [sym_atx_h3_marker] = ACTIONS(821), - [sym_atx_h4_marker] = ACTIONS(821), - [sym_atx_h5_marker] = ACTIONS(821), - [sym_atx_h6_marker] = ACTIONS(821), - [sym__thematic_break] = ACTIONS(821), - [sym__list_marker_minus] = ACTIONS(821), - [sym__list_marker_plus] = ACTIONS(821), - [sym__list_marker_star] = ACTIONS(821), - [sym__list_marker_parenthesis] = ACTIONS(821), - [sym__list_marker_dot] = ACTIONS(821), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(821), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(821), - [sym__list_marker_star_dont_interrupt] = ACTIONS(821), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(821), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(821), - [sym__fenced_code_block_start_backtick] = ACTIONS(821), - [sym__fenced_code_block_start_tilde] = ACTIONS(821), - [sym__blank_line_start] = ACTIONS(821), - [sym__code_span_start] = ACTIONS(821), - [sym__emphasis_open_star] = ACTIONS(821), - [sym__emphasis_open_underscore] = ACTIONS(821), - [sym__last_token_whitespace] = ACTIONS(125), + [247] = { + [aux_sym__ignore_matching_tokens] = STATE(160), + [anon_sym_BANG] = ACTIONS(897), + [anon_sym_DQUOTE] = ACTIONS(897), + [anon_sym_POUND] = ACTIONS(897), + [anon_sym_DOLLAR] = ACTIONS(897), + [anon_sym_PERCENT] = ACTIONS(897), + [anon_sym_AMP] = ACTIONS(899), + [anon_sym_SQUOTE] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_RPAREN] = ACTIONS(897), + [anon_sym_STAR] = ACTIONS(897), + [anon_sym_PLUS] = ACTIONS(897), + [anon_sym_COMMA] = ACTIONS(897), + [anon_sym_DASH] = ACTIONS(897), + [anon_sym_DOT] = ACTIONS(897), + [anon_sym_SLASH] = ACTIONS(897), + [anon_sym_COLON] = ACTIONS(897), + [anon_sym_SEMI] = ACTIONS(897), + [anon_sym_LT] = ACTIONS(899), + [anon_sym_EQ] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_QMARK] = ACTIONS(897), + [anon_sym_AT] = ACTIONS(897), + [anon_sym_LBRACK] = ACTIONS(897), + [anon_sym_BSLASH] = ACTIONS(899), + [anon_sym_RBRACK] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(897), + [anon_sym__] = ACTIONS(897), + [anon_sym_BQUOTE] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(897), + [anon_sym_PIPE] = ACTIONS(897), + [anon_sym_RBRACE] = ACTIONS(897), + [anon_sym_TILDE] = ACTIONS(897), + [aux_sym__html_block_1_token1] = ACTIONS(897), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(899), + [anon_sym_LT_QMARK] = ACTIONS(899), + [aux_sym__html_block_4_token1] = ACTIONS(899), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(897), + [aux_sym__html_block_6_token1] = ACTIONS(899), + [aux_sym__html_block_6_token2] = ACTIONS(897), + [sym__open_tag_html_block] = ACTIONS(897), + [sym__open_tag_html_block_newline] = ACTIONS(897), + [sym__closing_tag_html_block] = ACTIONS(897), + [sym__closing_tag_html_block_newline] = ACTIONS(897), + [sym_backslash_escape] = ACTIONS(897), + [sym_entity_reference] = ACTIONS(897), + [sym_numeric_character_reference] = ACTIONS(897), + [sym_uri_autolink] = ACTIONS(897), + [sym_email_autolink] = ACTIONS(897), + [sym__whitespace_ge_2] = ACTIONS(897), + [aux_sym__whitespace_token1] = ACTIONS(899), + [sym__word_no_digit] = ACTIONS(897), + [sym__digits] = ACTIONS(897), + [aux_sym__newline_token1] = ACTIONS(897), + [sym__block_close] = ACTIONS(897), + [sym__block_continuation] = ACTIONS(113), + [sym__block_quote_continuation] = ACTIONS(113), + [sym__block_quote_start] = ACTIONS(897), + [sym__indented_chunk_start] = ACTIONS(897), + [sym_atx_h1_marker] = ACTIONS(897), + [sym_atx_h2_marker] = ACTIONS(897), + [sym_atx_h3_marker] = ACTIONS(897), + [sym_atx_h4_marker] = ACTIONS(897), + [sym_atx_h5_marker] = ACTIONS(897), + [sym_atx_h6_marker] = ACTIONS(897), + [sym__thematic_break] = ACTIONS(897), + [sym__list_marker_minus] = ACTIONS(897), + [sym__list_marker_plus] = ACTIONS(897), + [sym__list_marker_star] = ACTIONS(897), + [sym__list_marker_parenthesis] = ACTIONS(897), + [sym__list_marker_dot] = ACTIONS(897), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(897), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(897), + [sym__list_marker_star_dont_interrupt] = ACTIONS(897), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(897), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(897), + [sym__fenced_code_block_start_backtick] = ACTIONS(897), + [sym__fenced_code_block_start_tilde] = ACTIONS(897), + [sym__blank_line_start] = ACTIONS(897), + [sym__code_span_start] = ACTIONS(897), + [sym__emphasis_open_star] = ACTIONS(897), + [sym__emphasis_open_underscore] = ACTIONS(897), + [sym__last_token_whitespace] = ACTIONS(113), }, - [195] = { - [aux_sym__ignore_matching_tokens] = STATE(163), - [anon_sym_BANG] = ACTIONS(862), - [anon_sym_DQUOTE] = ACTIONS(862), - [anon_sym_POUND] = ACTIONS(862), - [anon_sym_DOLLAR] = ACTIONS(862), - [anon_sym_PERCENT] = ACTIONS(862), - [anon_sym_AMP] = ACTIONS(864), - [anon_sym_SQUOTE] = ACTIONS(862), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_RPAREN] = ACTIONS(862), - [anon_sym_STAR] = ACTIONS(862), - [anon_sym_PLUS] = ACTIONS(862), - [anon_sym_COMMA] = ACTIONS(862), - [anon_sym_DASH] = ACTIONS(862), - [anon_sym_DOT] = ACTIONS(862), - [anon_sym_SLASH] = ACTIONS(862), - [anon_sym_COLON] = ACTIONS(862), - [anon_sym_SEMI] = ACTIONS(862), - [anon_sym_LT] = ACTIONS(864), - [anon_sym_EQ] = ACTIONS(862), - [anon_sym_GT] = ACTIONS(862), - [anon_sym_QMARK] = ACTIONS(862), - [anon_sym_AT] = ACTIONS(862), - [anon_sym_LBRACK] = ACTIONS(862), - [anon_sym_BSLASH] = ACTIONS(864), - [anon_sym_RBRACK] = ACTIONS(862), - [anon_sym_CARET] = ACTIONS(862), - [anon_sym__] = ACTIONS(862), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LBRACE] = ACTIONS(862), - [anon_sym_PIPE] = ACTIONS(862), - [anon_sym_RBRACE] = ACTIONS(862), - [anon_sym_TILDE] = ACTIONS(862), - [aux_sym__html_block_1_token1] = ACTIONS(862), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(864), - [anon_sym_LT_QMARK] = ACTIONS(864), - [aux_sym__html_block_4_token1] = ACTIONS(864), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(862), - [aux_sym__html_block_6_token1] = ACTIONS(864), - [aux_sym__html_block_6_token2] = ACTIONS(862), - [sym__open_tag_html_block] = ACTIONS(862), - [sym__open_tag_html_block_newline] = ACTIONS(862), - [sym__closing_tag_html_block] = ACTIONS(862), - [sym__closing_tag_html_block_newline] = ACTIONS(862), - [sym_backslash_escape] = ACTIONS(862), - [sym_entity_reference] = ACTIONS(862), - [sym_numeric_character_reference] = ACTIONS(862), - [sym_uri_autolink] = ACTIONS(862), - [sym_email_autolink] = ACTIONS(862), - [sym__whitespace_ge_2] = ACTIONS(862), - [aux_sym__whitespace_token1] = ACTIONS(864), - [sym__word_no_digit] = ACTIONS(862), - [sym__digits] = ACTIONS(862), - [aux_sym__newline_token1] = ACTIONS(862), - [sym__block_close] = ACTIONS(862), - [sym__block_continuation] = ACTIONS(949), - [sym__block_quote_continuation] = ACTIONS(949), - [sym__block_quote_start] = ACTIONS(862), - [sym__indented_chunk_start] = ACTIONS(862), - [sym_atx_h1_marker] = ACTIONS(862), - [sym_atx_h2_marker] = ACTIONS(862), - [sym_atx_h3_marker] = ACTIONS(862), - [sym_atx_h4_marker] = ACTIONS(862), - [sym_atx_h5_marker] = ACTIONS(862), - [sym_atx_h6_marker] = ACTIONS(862), - [sym__thematic_break] = ACTIONS(862), - [sym__list_marker_minus] = ACTIONS(862), - [sym__list_marker_plus] = ACTIONS(862), - [sym__list_marker_star] = ACTIONS(862), - [sym__list_marker_parenthesis] = ACTIONS(862), - [sym__list_marker_dot] = ACTIONS(862), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(862), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(862), - [sym__list_marker_star_dont_interrupt] = ACTIONS(862), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(862), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(862), - [sym__fenced_code_block_start_backtick] = ACTIONS(862), - [sym__fenced_code_block_start_tilde] = ACTIONS(862), - [sym__blank_line_start] = ACTIONS(862), - [sym__code_span_start] = ACTIONS(862), - [sym__emphasis_open_star] = ACTIONS(862), - [sym__emphasis_open_underscore] = ACTIONS(862), - [sym__last_token_whitespace] = ACTIONS(949), + [248] = { + [aux_sym__ignore_matching_tokens] = STATE(173), + [ts_builtin_sym_end] = 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), + [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(814), + [sym_numeric_character_reference] = ACTIONS(814), + [sym_uri_autolink] = ACTIONS(814), + [sym_email_autolink] = 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(1115), + [sym__block_quote_continuation] = ACTIONS(1115), + [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__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__emphasis_open_star] = ACTIONS(814), + [sym__emphasis_open_underscore] = ACTIONS(814), + [sym__last_token_whitespace] = ACTIONS(1115), }, - [196] = { - [aux_sym__ignore_matching_tokens] = STATE(106), - [ts_builtin_sym_end] = ACTIONS(951), - [anon_sym_BANG] = ACTIONS(951), - [anon_sym_DQUOTE] = ACTIONS(951), - [anon_sym_POUND] = ACTIONS(951), - [anon_sym_DOLLAR] = ACTIONS(951), - [anon_sym_PERCENT] = ACTIONS(951), - [anon_sym_AMP] = ACTIONS(953), - [anon_sym_SQUOTE] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(951), - [anon_sym_RPAREN] = ACTIONS(951), - [anon_sym_STAR] = ACTIONS(951), - [anon_sym_PLUS] = ACTIONS(951), - [anon_sym_COMMA] = ACTIONS(951), - [anon_sym_DASH] = ACTIONS(951), - [anon_sym_DOT] = ACTIONS(951), - [anon_sym_SLASH] = ACTIONS(951), - [anon_sym_COLON] = ACTIONS(951), - [anon_sym_SEMI] = ACTIONS(951), - [anon_sym_LT] = ACTIONS(953), - [anon_sym_EQ] = ACTIONS(951), - [anon_sym_GT] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(951), - [anon_sym_AT] = ACTIONS(951), - [anon_sym_LBRACK] = ACTIONS(951), - [anon_sym_BSLASH] = ACTIONS(953), - [anon_sym_RBRACK] = ACTIONS(951), - [anon_sym_CARET] = ACTIONS(951), - [anon_sym__] = ACTIONS(951), - [anon_sym_BQUOTE] = ACTIONS(951), - [anon_sym_LBRACE] = ACTIONS(951), - [anon_sym_PIPE] = ACTIONS(951), - [anon_sym_RBRACE] = ACTIONS(951), - [anon_sym_TILDE] = ACTIONS(951), - [aux_sym__html_block_1_token1] = ACTIONS(951), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(953), - [anon_sym_LT_QMARK] = ACTIONS(953), - [aux_sym__html_block_4_token1] = ACTIONS(953), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(951), - [aux_sym__html_block_6_token1] = ACTIONS(953), - [aux_sym__html_block_6_token2] = ACTIONS(951), - [sym__open_tag_html_block] = ACTIONS(951), - [sym__open_tag_html_block_newline] = ACTIONS(951), - [sym__closing_tag_html_block] = ACTIONS(951), - [sym__closing_tag_html_block_newline] = ACTIONS(951), - [sym_backslash_escape] = ACTIONS(951), - [sym_entity_reference] = ACTIONS(951), - [sym_numeric_character_reference] = ACTIONS(951), - [sym_uri_autolink] = ACTIONS(951), - [sym_email_autolink] = ACTIONS(951), - [sym__whitespace_ge_2] = ACTIONS(951), - [aux_sym__whitespace_token1] = ACTIONS(953), - [sym__word_no_digit] = ACTIONS(951), - [sym__digits] = ACTIONS(951), - [aux_sym__newline_token1] = ACTIONS(951), - [sym__block_continuation] = ACTIONS(955), - [sym__block_quote_continuation] = ACTIONS(955), - [sym__block_quote_start] = ACTIONS(951), - [sym__indented_chunk_start] = ACTIONS(951), - [sym_atx_h1_marker] = ACTIONS(951), - [sym_atx_h2_marker] = ACTIONS(951), - [sym_atx_h3_marker] = ACTIONS(951), - [sym_atx_h4_marker] = ACTIONS(951), - [sym_atx_h5_marker] = ACTIONS(951), - [sym_atx_h6_marker] = ACTIONS(951), - [sym__thematic_break] = ACTIONS(951), - [sym__list_marker_minus] = ACTIONS(951), - [sym__list_marker_plus] = ACTIONS(951), - [sym__list_marker_star] = ACTIONS(951), - [sym__list_marker_parenthesis] = ACTIONS(951), - [sym__list_marker_dot] = ACTIONS(951), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(951), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(951), - [sym__list_marker_star_dont_interrupt] = ACTIONS(951), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(951), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(951), - [sym__fenced_code_block_start_backtick] = ACTIONS(951), - [sym__fenced_code_block_start_tilde] = ACTIONS(951), - [sym__blank_line_start] = ACTIONS(951), - [sym__code_span_start] = ACTIONS(951), - [sym__emphasis_open_star] = ACTIONS(951), - [sym__emphasis_open_underscore] = ACTIONS(951), - [sym__last_token_whitespace] = ACTIONS(955), + [249] = { + [aux_sym__ignore_matching_tokens] = STATE(238), + [anon_sym_BANG] = ACTIONS(733), + [anon_sym_DQUOTE] = ACTIONS(733), + [anon_sym_POUND] = ACTIONS(733), + [anon_sym_DOLLAR] = ACTIONS(733), + [anon_sym_PERCENT] = ACTIONS(733), + [anon_sym_AMP] = ACTIONS(735), + [anon_sym_SQUOTE] = ACTIONS(733), + [anon_sym_LPAREN] = ACTIONS(733), + [anon_sym_RPAREN] = ACTIONS(733), + [anon_sym_STAR] = ACTIONS(733), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_COMMA] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_DOT] = ACTIONS(733), + [anon_sym_SLASH] = ACTIONS(733), + [anon_sym_COLON] = ACTIONS(733), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LT] = ACTIONS(735), + [anon_sym_EQ] = ACTIONS(733), + [anon_sym_GT] = ACTIONS(733), + [anon_sym_QMARK] = ACTIONS(733), + [anon_sym_AT] = ACTIONS(733), + [anon_sym_LBRACK] = ACTIONS(733), + [anon_sym_BSLASH] = ACTIONS(735), + [anon_sym_RBRACK] = ACTIONS(733), + [anon_sym_CARET] = ACTIONS(733), + [anon_sym__] = ACTIONS(733), + [anon_sym_BQUOTE] = ACTIONS(733), + [anon_sym_LBRACE] = ACTIONS(733), + [anon_sym_PIPE] = ACTIONS(733), + [anon_sym_RBRACE] = ACTIONS(733), + [anon_sym_TILDE] = ACTIONS(733), + [aux_sym__html_block_1_token1] = ACTIONS(733), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(735), + [anon_sym_LT_QMARK] = ACTIONS(735), + [aux_sym__html_block_4_token1] = ACTIONS(735), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(733), + [aux_sym__html_block_6_token1] = ACTIONS(735), + [aux_sym__html_block_6_token2] = ACTIONS(733), + [sym__open_tag_html_block] = ACTIONS(733), + [sym__open_tag_html_block_newline] = ACTIONS(733), + [sym__closing_tag_html_block] = ACTIONS(733), + [sym__closing_tag_html_block_newline] = ACTIONS(733), + [sym_backslash_escape] = ACTIONS(733), + [sym_entity_reference] = ACTIONS(733), + [sym_numeric_character_reference] = ACTIONS(733), + [sym_uri_autolink] = ACTIONS(733), + [sym_email_autolink] = ACTIONS(733), + [sym__whitespace_ge_2] = ACTIONS(733), + [aux_sym__whitespace_token1] = ACTIONS(735), + [sym__word_no_digit] = ACTIONS(733), + [sym__digits] = ACTIONS(733), + [aux_sym__newline_token1] = ACTIONS(733), + [sym__block_close] = ACTIONS(733), + [sym__block_continuation] = ACTIONS(1117), + [sym__block_quote_continuation] = ACTIONS(1117), + [sym__block_quote_start] = ACTIONS(733), + [sym__indented_chunk_start] = ACTIONS(733), + [sym_atx_h1_marker] = ACTIONS(733), + [sym_atx_h2_marker] = ACTIONS(733), + [sym_atx_h3_marker] = ACTIONS(733), + [sym_atx_h4_marker] = ACTIONS(733), + [sym_atx_h5_marker] = ACTIONS(733), + [sym_atx_h6_marker] = ACTIONS(733), + [sym__thematic_break] = ACTIONS(733), + [sym__list_marker_minus] = ACTIONS(733), + [sym__list_marker_plus] = ACTIONS(733), + [sym__list_marker_star] = ACTIONS(733), + [sym__list_marker_parenthesis] = ACTIONS(733), + [sym__list_marker_dot] = ACTIONS(733), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(733), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(733), + [sym__list_marker_star_dont_interrupt] = ACTIONS(733), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(733), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(733), + [sym__fenced_code_block_start_backtick] = ACTIONS(733), + [sym__fenced_code_block_start_tilde] = ACTIONS(733), + [sym__blank_line_start] = ACTIONS(733), + [sym__code_span_start] = ACTIONS(733), + [sym__emphasis_open_star] = ACTIONS(733), + [sym__emphasis_open_underscore] = ACTIONS(733), + [sym__last_token_whitespace] = ACTIONS(1117), }, - [197] = { - [aux_sym__ignore_matching_tokens] = STATE(275), - [anon_sym_BANG] = ACTIONS(862), - [anon_sym_DQUOTE] = ACTIONS(862), - [anon_sym_POUND] = ACTIONS(862), - [anon_sym_DOLLAR] = ACTIONS(862), - [anon_sym_PERCENT] = ACTIONS(862), - [anon_sym_AMP] = ACTIONS(864), - [anon_sym_SQUOTE] = ACTIONS(862), - [anon_sym_LPAREN] = ACTIONS(862), - [anon_sym_RPAREN] = ACTIONS(862), - [anon_sym_STAR] = ACTIONS(862), - [anon_sym_PLUS] = ACTIONS(862), - [anon_sym_COMMA] = ACTIONS(862), - [anon_sym_DASH] = ACTIONS(862), - [anon_sym_DOT] = ACTIONS(862), - [anon_sym_SLASH] = ACTIONS(862), - [anon_sym_COLON] = ACTIONS(862), - [anon_sym_SEMI] = ACTIONS(862), - [anon_sym_LT] = ACTIONS(864), - [anon_sym_EQ] = ACTIONS(862), - [anon_sym_GT] = ACTIONS(862), - [anon_sym_QMARK] = ACTIONS(862), - [anon_sym_AT] = ACTIONS(862), - [anon_sym_LBRACK] = ACTIONS(862), - [anon_sym_BSLASH] = ACTIONS(864), - [anon_sym_RBRACK] = ACTIONS(862), - [anon_sym_CARET] = ACTIONS(862), - [anon_sym__] = ACTIONS(862), - [anon_sym_BQUOTE] = ACTIONS(862), - [anon_sym_LBRACE] = ACTIONS(862), - [anon_sym_PIPE] = ACTIONS(862), - [anon_sym_RBRACE] = ACTIONS(862), - [anon_sym_TILDE] = ACTIONS(862), - [aux_sym__html_block_1_token1] = ACTIONS(862), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(864), - [anon_sym_LT_QMARK] = ACTIONS(864), - [aux_sym__html_block_4_token1] = ACTIONS(864), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(862), - [aux_sym__html_block_6_token1] = ACTIONS(864), - [aux_sym__html_block_6_token2] = ACTIONS(862), - [sym__open_tag_html_block] = ACTIONS(862), - [sym__open_tag_html_block_newline] = ACTIONS(862), - [sym__closing_tag_html_block] = ACTIONS(862), - [sym__closing_tag_html_block_newline] = ACTIONS(862), - [sym_backslash_escape] = ACTIONS(862), - [sym_entity_reference] = ACTIONS(862), - [sym_numeric_character_reference] = ACTIONS(862), - [sym_uri_autolink] = ACTIONS(862), - [sym_email_autolink] = ACTIONS(862), - [sym__whitespace_ge_2] = ACTIONS(862), - [aux_sym__whitespace_token1] = ACTIONS(864), - [sym__word_no_digit] = ACTIONS(862), - [sym__digits] = ACTIONS(862), - [aux_sym__newline_token1] = ACTIONS(862), - [sym__block_close] = ACTIONS(862), - [sym__block_continuation] = ACTIONS(125), - [sym__block_quote_continuation] = ACTIONS(125), - [sym__block_quote_start] = ACTIONS(862), - [sym__indented_chunk_start] = ACTIONS(862), - [sym_atx_h1_marker] = ACTIONS(862), - [sym_atx_h2_marker] = ACTIONS(862), - [sym_atx_h3_marker] = ACTIONS(862), - [sym_atx_h4_marker] = ACTIONS(862), - [sym_atx_h5_marker] = ACTIONS(862), - [sym_atx_h6_marker] = ACTIONS(862), - [sym__thematic_break] = ACTIONS(862), - [sym__list_marker_minus] = ACTIONS(862), - [sym__list_marker_plus] = ACTIONS(862), - [sym__list_marker_star] = ACTIONS(862), - [sym__list_marker_parenthesis] = ACTIONS(862), - [sym__list_marker_dot] = ACTIONS(862), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(862), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(862), - [sym__list_marker_star_dont_interrupt] = ACTIONS(862), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(862), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(862), - [sym__fenced_code_block_start_backtick] = ACTIONS(862), - [sym__fenced_code_block_start_tilde] = ACTIONS(862), - [sym__blank_line_start] = ACTIONS(862), - [sym__code_span_start] = ACTIONS(862), - [sym__emphasis_open_star] = ACTIONS(862), - [sym__emphasis_open_underscore] = ACTIONS(862), - [sym__last_token_whitespace] = ACTIONS(125), + [250] = { + [aux_sym__ignore_matching_tokens] = STATE(160), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(715), + [anon_sym_POUND] = ACTIONS(715), + [anon_sym_DOLLAR] = ACTIONS(715), + [anon_sym_PERCENT] = ACTIONS(715), + [anon_sym_AMP] = ACTIONS(717), + [anon_sym_SQUOTE] = ACTIONS(715), + [anon_sym_LPAREN] = ACTIONS(715), + [anon_sym_RPAREN] = ACTIONS(715), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_PLUS] = ACTIONS(715), + [anon_sym_COMMA] = ACTIONS(715), + [anon_sym_DASH] = ACTIONS(715), + [anon_sym_DOT] = ACTIONS(715), + [anon_sym_SLASH] = ACTIONS(715), + [anon_sym_COLON] = ACTIONS(715), + [anon_sym_SEMI] = ACTIONS(715), + [anon_sym_LT] = ACTIONS(717), + [anon_sym_EQ] = ACTIONS(715), + [anon_sym_GT] = ACTIONS(715), + [anon_sym_QMARK] = ACTIONS(715), + [anon_sym_AT] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(715), + [anon_sym_BSLASH] = ACTIONS(717), + [anon_sym_RBRACK] = ACTIONS(715), + [anon_sym_CARET] = ACTIONS(715), + [anon_sym__] = ACTIONS(715), + [anon_sym_BQUOTE] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(715), + [anon_sym_PIPE] = ACTIONS(715), + [anon_sym_RBRACE] = ACTIONS(715), + [anon_sym_TILDE] = ACTIONS(715), + [aux_sym__html_block_1_token1] = ACTIONS(715), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(717), + [anon_sym_LT_QMARK] = ACTIONS(717), + [aux_sym__html_block_4_token1] = ACTIONS(717), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(715), + [aux_sym__html_block_6_token1] = ACTIONS(717), + [aux_sym__html_block_6_token2] = ACTIONS(715), + [sym__open_tag_html_block] = ACTIONS(715), + [sym__open_tag_html_block_newline] = ACTIONS(715), + [sym__closing_tag_html_block] = ACTIONS(715), + [sym__closing_tag_html_block_newline] = ACTIONS(715), + [sym_backslash_escape] = ACTIONS(715), + [sym_entity_reference] = ACTIONS(715), + [sym_numeric_character_reference] = ACTIONS(715), + [sym_uri_autolink] = ACTIONS(715), + [sym_email_autolink] = ACTIONS(715), + [sym__whitespace_ge_2] = ACTIONS(715), + [aux_sym__whitespace_token1] = ACTIONS(717), + [sym__word_no_digit] = ACTIONS(715), + [sym__digits] = ACTIONS(715), + [aux_sym__newline_token1] = ACTIONS(715), + [sym__block_close] = ACTIONS(715), + [sym__block_continuation] = ACTIONS(113), + [sym__block_quote_continuation] = ACTIONS(113), + [sym__block_quote_start] = ACTIONS(715), + [sym__indented_chunk_start] = ACTIONS(715), + [sym_atx_h1_marker] = ACTIONS(715), + [sym_atx_h2_marker] = ACTIONS(715), + [sym_atx_h3_marker] = ACTIONS(715), + [sym_atx_h4_marker] = ACTIONS(715), + [sym_atx_h5_marker] = ACTIONS(715), + [sym_atx_h6_marker] = ACTIONS(715), + [sym__thematic_break] = ACTIONS(715), + [sym__list_marker_minus] = ACTIONS(715), + [sym__list_marker_plus] = ACTIONS(715), + [sym__list_marker_star] = ACTIONS(715), + [sym__list_marker_parenthesis] = ACTIONS(715), + [sym__list_marker_dot] = ACTIONS(715), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(715), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(715), + [sym__list_marker_star_dont_interrupt] = ACTIONS(715), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(715), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(715), + [sym__fenced_code_block_start_backtick] = ACTIONS(715), + [sym__fenced_code_block_start_tilde] = ACTIONS(715), + [sym__blank_line_start] = ACTIONS(715), + [sym__code_span_start] = ACTIONS(715), + [sym__emphasis_open_star] = ACTIONS(715), + [sym__emphasis_open_underscore] = ACTIONS(715), + [sym__last_token_whitespace] = ACTIONS(113), }, - [198] = { - [aux_sym__ignore_matching_tokens] = STATE(202), - [ts_builtin_sym_end] = ACTIONS(951), - [anon_sym_BANG] = ACTIONS(951), - [anon_sym_DQUOTE] = ACTIONS(951), - [anon_sym_POUND] = ACTIONS(951), - [anon_sym_DOLLAR] = ACTIONS(951), - [anon_sym_PERCENT] = ACTIONS(951), - [anon_sym_AMP] = ACTIONS(953), - [anon_sym_SQUOTE] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(951), - [anon_sym_RPAREN] = ACTIONS(951), - [anon_sym_STAR] = ACTIONS(951), - [anon_sym_PLUS] = ACTIONS(951), - [anon_sym_COMMA] = ACTIONS(951), - [anon_sym_DASH] = ACTIONS(951), - [anon_sym_DOT] = ACTIONS(951), - [anon_sym_SLASH] = ACTIONS(951), - [anon_sym_COLON] = ACTIONS(951), - [anon_sym_SEMI] = ACTIONS(951), - [anon_sym_LT] = ACTIONS(953), - [anon_sym_EQ] = ACTIONS(951), - [anon_sym_GT] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(951), - [anon_sym_AT] = ACTIONS(951), - [anon_sym_LBRACK] = ACTIONS(951), - [anon_sym_BSLASH] = ACTIONS(953), - [anon_sym_RBRACK] = ACTIONS(951), - [anon_sym_CARET] = ACTIONS(951), - [anon_sym__] = ACTIONS(951), - [anon_sym_BQUOTE] = ACTIONS(951), - [anon_sym_LBRACE] = ACTIONS(951), - [anon_sym_PIPE] = ACTIONS(951), - [anon_sym_RBRACE] = ACTIONS(951), - [anon_sym_TILDE] = ACTIONS(951), - [aux_sym__html_block_1_token1] = ACTIONS(951), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(953), - [anon_sym_LT_QMARK] = ACTIONS(953), - [aux_sym__html_block_4_token1] = ACTIONS(953), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(951), - [aux_sym__html_block_6_token1] = ACTIONS(953), - [aux_sym__html_block_6_token2] = ACTIONS(951), - [sym__open_tag_html_block] = ACTIONS(951), - [sym__open_tag_html_block_newline] = ACTIONS(951), - [sym__closing_tag_html_block] = ACTIONS(951), - [sym__closing_tag_html_block_newline] = ACTIONS(951), - [sym_backslash_escape] = ACTIONS(951), - [sym_entity_reference] = ACTIONS(951), - [sym_numeric_character_reference] = ACTIONS(951), - [sym_uri_autolink] = ACTIONS(951), - [sym_email_autolink] = ACTIONS(951), - [sym__whitespace_ge_2] = ACTIONS(951), - [aux_sym__whitespace_token1] = ACTIONS(953), - [sym__word_no_digit] = ACTIONS(951), - [sym__digits] = ACTIONS(951), - [aux_sym__newline_token1] = ACTIONS(951), - [sym__block_continuation] = ACTIONS(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(951), - [sym__indented_chunk_start] = ACTIONS(951), - [sym_atx_h1_marker] = ACTIONS(951), - [sym_atx_h2_marker] = ACTIONS(951), - [sym_atx_h3_marker] = ACTIONS(951), - [sym_atx_h4_marker] = ACTIONS(951), - [sym_atx_h5_marker] = ACTIONS(951), - [sym_atx_h6_marker] = ACTIONS(951), - [sym__thematic_break] = ACTIONS(951), - [sym__list_marker_minus] = ACTIONS(951), - [sym__list_marker_plus] = ACTIONS(951), - [sym__list_marker_star] = ACTIONS(951), - [sym__list_marker_parenthesis] = ACTIONS(951), - [sym__list_marker_dot] = ACTIONS(951), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(951), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(951), - [sym__list_marker_star_dont_interrupt] = ACTIONS(951), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(951), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(951), - [sym__fenced_code_block_start_backtick] = ACTIONS(951), - [sym__fenced_code_block_start_tilde] = ACTIONS(951), - [sym__blank_line_start] = ACTIONS(951), - [sym__code_span_start] = ACTIONS(951), - [sym__emphasis_open_star] = ACTIONS(951), - [sym__emphasis_open_underscore] = ACTIONS(951), - [sym__last_token_whitespace] = ACTIONS(111), + [251] = { + [aux_sym__ignore_matching_tokens] = STATE(237), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(715), + [anon_sym_POUND] = ACTIONS(715), + [anon_sym_DOLLAR] = ACTIONS(715), + [anon_sym_PERCENT] = ACTIONS(715), + [anon_sym_AMP] = ACTIONS(717), + [anon_sym_SQUOTE] = ACTIONS(715), + [anon_sym_LPAREN] = ACTIONS(715), + [anon_sym_RPAREN] = ACTIONS(715), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_PLUS] = ACTIONS(715), + [anon_sym_COMMA] = ACTIONS(715), + [anon_sym_DASH] = ACTIONS(715), + [anon_sym_DOT] = ACTIONS(715), + [anon_sym_SLASH] = ACTIONS(715), + [anon_sym_COLON] = ACTIONS(715), + [anon_sym_SEMI] = ACTIONS(715), + [anon_sym_LT] = ACTIONS(717), + [anon_sym_EQ] = ACTIONS(715), + [anon_sym_GT] = ACTIONS(715), + [anon_sym_QMARK] = ACTIONS(715), + [anon_sym_AT] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(715), + [anon_sym_BSLASH] = ACTIONS(717), + [anon_sym_RBRACK] = ACTIONS(715), + [anon_sym_CARET] = ACTIONS(715), + [anon_sym__] = ACTIONS(715), + [anon_sym_BQUOTE] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(715), + [anon_sym_PIPE] = ACTIONS(715), + [anon_sym_RBRACE] = ACTIONS(715), + [anon_sym_TILDE] = ACTIONS(715), + [aux_sym__html_block_1_token1] = ACTIONS(715), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(717), + [anon_sym_LT_QMARK] = ACTIONS(717), + [aux_sym__html_block_4_token1] = ACTIONS(717), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(715), + [aux_sym__html_block_6_token1] = ACTIONS(717), + [aux_sym__html_block_6_token2] = ACTIONS(715), + [sym__open_tag_html_block] = ACTIONS(715), + [sym__open_tag_html_block_newline] = ACTIONS(715), + [sym__closing_tag_html_block] = ACTIONS(715), + [sym__closing_tag_html_block_newline] = ACTIONS(715), + [sym_backslash_escape] = ACTIONS(715), + [sym_entity_reference] = ACTIONS(715), + [sym_numeric_character_reference] = ACTIONS(715), + [sym_uri_autolink] = ACTIONS(715), + [sym_email_autolink] = ACTIONS(715), + [sym__whitespace_ge_2] = ACTIONS(715), + [aux_sym__whitespace_token1] = ACTIONS(717), + [sym__word_no_digit] = ACTIONS(715), + [sym__digits] = ACTIONS(715), + [aux_sym__newline_token1] = ACTIONS(715), + [sym__block_close] = ACTIONS(715), + [sym__block_continuation] = ACTIONS(1119), + [sym__block_quote_continuation] = ACTIONS(1119), + [sym__block_quote_start] = ACTIONS(715), + [sym__indented_chunk_start] = ACTIONS(715), + [sym_atx_h1_marker] = ACTIONS(715), + [sym_atx_h2_marker] = ACTIONS(715), + [sym_atx_h3_marker] = ACTIONS(715), + [sym_atx_h4_marker] = ACTIONS(715), + [sym_atx_h5_marker] = ACTIONS(715), + [sym_atx_h6_marker] = ACTIONS(715), + [sym__thematic_break] = ACTIONS(715), + [sym__list_marker_minus] = ACTIONS(715), + [sym__list_marker_plus] = ACTIONS(715), + [sym__list_marker_star] = ACTIONS(715), + [sym__list_marker_parenthesis] = ACTIONS(715), + [sym__list_marker_dot] = ACTIONS(715), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(715), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(715), + [sym__list_marker_star_dont_interrupt] = ACTIONS(715), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(715), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(715), + [sym__fenced_code_block_start_backtick] = ACTIONS(715), + [sym__fenced_code_block_start_tilde] = ACTIONS(715), + [sym__blank_line_start] = ACTIONS(715), + [sym__code_span_start] = ACTIONS(715), + [sym__emphasis_open_star] = ACTIONS(715), + [sym__emphasis_open_underscore] = ACTIONS(715), + [sym__last_token_whitespace] = ACTIONS(1119), }, - [199] = { - [aux_sym__ignore_matching_tokens] = STATE(164), + [252] = { + [aux_sym__ignore_matching_tokens] = STATE(160), + [anon_sym_BANG] = ACTIONS(887), + [anon_sym_DQUOTE] = ACTIONS(887), + [anon_sym_POUND] = ACTIONS(887), + [anon_sym_DOLLAR] = ACTIONS(887), + [anon_sym_PERCENT] = ACTIONS(887), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_SQUOTE] = ACTIONS(887), + [anon_sym_LPAREN] = ACTIONS(887), + [anon_sym_RPAREN] = ACTIONS(887), + [anon_sym_STAR] = ACTIONS(887), + [anon_sym_PLUS] = ACTIONS(887), + [anon_sym_COMMA] = ACTIONS(887), + [anon_sym_DASH] = ACTIONS(887), + [anon_sym_DOT] = ACTIONS(887), + [anon_sym_SLASH] = ACTIONS(887), + [anon_sym_COLON] = ACTIONS(887), + [anon_sym_SEMI] = ACTIONS(887), + [anon_sym_LT] = ACTIONS(889), + [anon_sym_EQ] = ACTIONS(887), + [anon_sym_GT] = ACTIONS(887), + [anon_sym_QMARK] = ACTIONS(887), + [anon_sym_AT] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(887), + [anon_sym_BSLASH] = ACTIONS(889), + [anon_sym_RBRACK] = ACTIONS(887), + [anon_sym_CARET] = ACTIONS(887), + [anon_sym__] = ACTIONS(887), + [anon_sym_BQUOTE] = ACTIONS(887), + [anon_sym_LBRACE] = ACTIONS(887), + [anon_sym_PIPE] = ACTIONS(887), + [anon_sym_RBRACE] = ACTIONS(887), + [anon_sym_TILDE] = ACTIONS(887), + [aux_sym__html_block_1_token1] = ACTIONS(887), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(889), + [anon_sym_LT_QMARK] = ACTIONS(889), + [aux_sym__html_block_4_token1] = ACTIONS(889), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(887), + [aux_sym__html_block_6_token1] = ACTIONS(889), + [aux_sym__html_block_6_token2] = ACTIONS(887), + [sym__open_tag_html_block] = ACTIONS(887), + [sym__open_tag_html_block_newline] = ACTIONS(887), + [sym__closing_tag_html_block] = ACTIONS(887), + [sym__closing_tag_html_block_newline] = ACTIONS(887), + [sym_backslash_escape] = ACTIONS(887), + [sym_entity_reference] = ACTIONS(887), + [sym_numeric_character_reference] = ACTIONS(887), + [sym_uri_autolink] = ACTIONS(887), + [sym_email_autolink] = ACTIONS(887), + [sym__whitespace_ge_2] = ACTIONS(887), + [aux_sym__whitespace_token1] = ACTIONS(889), + [sym__word_no_digit] = ACTIONS(887), + [sym__digits] = ACTIONS(887), + [aux_sym__newline_token1] = ACTIONS(887), + [sym__block_close] = ACTIONS(887), + [sym__block_continuation] = ACTIONS(113), + [sym__block_quote_continuation] = ACTIONS(113), + [sym__block_quote_start] = ACTIONS(887), + [sym__indented_chunk_start] = ACTIONS(887), + [sym_atx_h1_marker] = ACTIONS(887), + [sym_atx_h2_marker] = ACTIONS(887), + [sym_atx_h3_marker] = ACTIONS(887), + [sym_atx_h4_marker] = ACTIONS(887), + [sym_atx_h5_marker] = ACTIONS(887), + [sym_atx_h6_marker] = ACTIONS(887), + [sym__thematic_break] = ACTIONS(887), + [sym__list_marker_minus] = ACTIONS(887), + [sym__list_marker_plus] = ACTIONS(887), + [sym__list_marker_star] = ACTIONS(887), + [sym__list_marker_parenthesis] = ACTIONS(887), + [sym__list_marker_dot] = ACTIONS(887), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(887), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(887), + [sym__list_marker_star_dont_interrupt] = ACTIONS(887), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(887), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(887), + [sym__fenced_code_block_start_backtick] = ACTIONS(887), + [sym__fenced_code_block_start_tilde] = ACTIONS(887), + [sym__blank_line_start] = ACTIONS(887), + [sym__code_span_start] = ACTIONS(887), + [sym__emphasis_open_star] = ACTIONS(887), + [sym__emphasis_open_underscore] = ACTIONS(887), + [sym__last_token_whitespace] = ACTIONS(113), + }, + [253] = { + [sym__soft_line_break] = STATE(253), + [sym__link_text] = STATE(2124), + [sym__link_text_non_empty] = STATE(712), + [sym_shortcut_link] = STATE(253), + [sym_full_reference_link] = STATE(253), + [sym_collapsed_reference_link] = STATE(253), + [sym_inline_link] = STATE(253), + [sym_image] = STATE(253), + [sym__image_inline_link] = STATE(713), + [sym__image_shortcut_link] = STATE(713), + [sym__image_full_reference_link] = STATE(713), + [sym__image_collapsed_reference_link] = STATE(713), + [sym__image_description] = STATE(2120), + [sym__image_description_non_empty] = STATE(714), + [sym_html_tag] = STATE(253), + [sym__open_tag] = STATE(715), + [sym__closing_tag] = STATE(715), + [sym__html_comment] = STATE(715), + [sym__processing_instruction] = STATE(715), + [sym__declaration] = STATE(715), + [sym__cdata_section] = STATE(715), + [sym_hard_line_break] = STATE(253), + [sym__whitespace] = STATE(253), + [sym__word] = STATE(253), + [sym__newline] = STATE(2144), + [sym__inline_element_no_star] = STATE(253), + [aux_sym__inline_no_star] = STATE(253), + [sym__text_inline_no_star] = STATE(253), + [sym__emphasis_star] = STATE(811), + [sym__strong_emphasis_star] = STATE(253), + [sym__emphasis_underscore] = STATE(811), + [sym__strong_emphasis_underscore] = STATE(253), + [sym__code_span] = STATE(253), + [anon_sym_BANG] = ACTIONS(1121), + [anon_sym_DQUOTE] = ACTIONS(1124), + [anon_sym_POUND] = ACTIONS(1124), + [anon_sym_DOLLAR] = ACTIONS(1124), + [anon_sym_PERCENT] = ACTIONS(1124), + [anon_sym_AMP] = ACTIONS(1127), + [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(1130), + [anon_sym_EQ] = ACTIONS(1124), + [anon_sym_GT] = ACTIONS(1124), + [anon_sym_QMARK] = ACTIONS(1124), + [anon_sym_AT] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1133), + [anon_sym_BSLASH] = ACTIONS(1136), + [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(1139), + [anon_sym_LT_QMARK] = ACTIONS(1142), + [aux_sym__html_block_4_token1] = ACTIONS(1145), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1148), + [sym_backslash_escape] = ACTIONS(1151), + [sym_entity_reference] = ACTIONS(1151), + [sym_numeric_character_reference] = ACTIONS(1151), + [sym_uri_autolink] = ACTIONS(1151), + [sym_email_autolink] = ACTIONS(1151), + [sym__whitespace_ge_2] = ACTIONS(1154), + [aux_sym__whitespace_token1] = ACTIONS(1157), + [sym__word_no_digit] = ACTIONS(1151), + [sym__digits] = ACTIONS(1151), + [aux_sym__newline_token1] = ACTIONS(1160), + [sym__code_span_start] = ACTIONS(1163), + [sym__emphasis_open_star] = ACTIONS(1166), + [sym__emphasis_open_underscore] = ACTIONS(1169), + [sym__emphasis_close_star] = ACTIONS(1172), + }, + [254] = { + [aux_sym__ignore_matching_tokens] = STATE(160), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_DQUOTE] = ACTIONS(709), + [anon_sym_POUND] = ACTIONS(709), + [anon_sym_DOLLAR] = ACTIONS(709), + [anon_sym_PERCENT] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_RPAREN] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_COMMA] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_DOT] = ACTIONS(709), + [anon_sym_SLASH] = ACTIONS(709), + [anon_sym_COLON] = ACTIONS(709), + [anon_sym_SEMI] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_EQ] = ACTIONS(709), + [anon_sym_GT] = ACTIONS(709), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_AT] = ACTIONS(709), + [anon_sym_LBRACK] = ACTIONS(709), + [anon_sym_BSLASH] = ACTIONS(711), + [anon_sym_RBRACK] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym__] = ACTIONS(709), + [anon_sym_BQUOTE] = ACTIONS(709), + [anon_sym_LBRACE] = ACTIONS(709), + [anon_sym_PIPE] = ACTIONS(709), + [anon_sym_RBRACE] = ACTIONS(709), + [anon_sym_TILDE] = ACTIONS(709), + [aux_sym__html_block_1_token1] = ACTIONS(709), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(711), + [anon_sym_LT_QMARK] = ACTIONS(711), + [aux_sym__html_block_4_token1] = ACTIONS(711), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(709), + [aux_sym__html_block_6_token1] = ACTIONS(711), + [aux_sym__html_block_6_token2] = ACTIONS(709), + [sym__open_tag_html_block] = ACTIONS(709), + [sym__open_tag_html_block_newline] = ACTIONS(709), + [sym__closing_tag_html_block] = ACTIONS(709), + [sym__closing_tag_html_block_newline] = ACTIONS(709), + [sym_backslash_escape] = ACTIONS(709), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(709), + [aux_sym__whitespace_token1] = ACTIONS(711), + [sym__word_no_digit] = ACTIONS(709), + [sym__digits] = ACTIONS(709), + [aux_sym__newline_token1] = ACTIONS(709), + [sym__block_close] = ACTIONS(709), + [sym__block_continuation] = ACTIONS(113), + [sym__block_quote_continuation] = ACTIONS(113), + [sym__block_quote_start] = ACTIONS(709), + [sym__indented_chunk_start] = ACTIONS(709), + [sym_atx_h1_marker] = ACTIONS(709), + [sym_atx_h2_marker] = ACTIONS(709), + [sym_atx_h3_marker] = ACTIONS(709), + [sym_atx_h4_marker] = ACTIONS(709), + [sym_atx_h5_marker] = ACTIONS(709), + [sym_atx_h6_marker] = ACTIONS(709), + [sym__thematic_break] = ACTIONS(709), + [sym__list_marker_minus] = ACTIONS(709), + [sym__list_marker_plus] = ACTIONS(709), + [sym__list_marker_star] = ACTIONS(709), + [sym__list_marker_parenthesis] = ACTIONS(709), + [sym__list_marker_dot] = ACTIONS(709), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(709), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(709), + [sym__list_marker_star_dont_interrupt] = ACTIONS(709), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(709), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(709), + [sym__fenced_code_block_start_backtick] = ACTIONS(709), + [sym__fenced_code_block_start_tilde] = ACTIONS(709), + [sym__blank_line_start] = ACTIONS(709), + [sym__code_span_start] = ACTIONS(709), + [sym__emphasis_open_star] = ACTIONS(709), + [sym__emphasis_open_underscore] = ACTIONS(709), + [sym__last_token_whitespace] = ACTIONS(113), + }, + [255] = { + [aux_sym__ignore_matching_tokens] = STATE(240), + [ts_builtin_sym_end] = ACTIONS(945), + [anon_sym_BANG] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(945), + [anon_sym_POUND] = ACTIONS(945), + [anon_sym_DOLLAR] = ACTIONS(945), + [anon_sym_PERCENT] = ACTIONS(945), + [anon_sym_AMP] = ACTIONS(947), + [anon_sym_SQUOTE] = ACTIONS(945), + [anon_sym_LPAREN] = ACTIONS(945), + [anon_sym_RPAREN] = ACTIONS(945), + [anon_sym_STAR] = ACTIONS(945), + [anon_sym_PLUS] = ACTIONS(945), + [anon_sym_COMMA] = ACTIONS(945), + [anon_sym_DASH] = ACTIONS(945), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_SLASH] = ACTIONS(945), + [anon_sym_COLON] = ACTIONS(945), + [anon_sym_SEMI] = ACTIONS(945), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_EQ] = ACTIONS(945), + [anon_sym_GT] = ACTIONS(945), + [anon_sym_QMARK] = ACTIONS(945), + [anon_sym_AT] = ACTIONS(945), + [anon_sym_LBRACK] = ACTIONS(945), + [anon_sym_BSLASH] = ACTIONS(947), + [anon_sym_RBRACK] = ACTIONS(945), + [anon_sym_CARET] = ACTIONS(945), + [anon_sym__] = ACTIONS(945), + [anon_sym_BQUOTE] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(945), + [anon_sym_PIPE] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(945), + [anon_sym_TILDE] = ACTIONS(945), + [aux_sym__html_block_1_token1] = ACTIONS(945), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(947), + [anon_sym_LT_QMARK] = ACTIONS(947), + [aux_sym__html_block_4_token1] = ACTIONS(947), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(945), + [aux_sym__html_block_6_token1] = ACTIONS(947), + [aux_sym__html_block_6_token2] = ACTIONS(945), + [sym__open_tag_html_block] = ACTIONS(945), + [sym__open_tag_html_block_newline] = ACTIONS(945), + [sym__closing_tag_html_block] = ACTIONS(945), + [sym__closing_tag_html_block_newline] = ACTIONS(945), + [sym_backslash_escape] = ACTIONS(945), + [sym_entity_reference] = ACTIONS(945), + [sym_numeric_character_reference] = ACTIONS(945), + [sym_uri_autolink] = ACTIONS(945), + [sym_email_autolink] = ACTIONS(945), + [sym__whitespace_ge_2] = ACTIONS(945), + [aux_sym__whitespace_token1] = ACTIONS(947), + [sym__word_no_digit] = ACTIONS(945), + [sym__digits] = ACTIONS(945), + [aux_sym__newline_token1] = ACTIONS(945), + [sym__block_continuation] = ACTIONS(1174), + [sym__block_quote_continuation] = ACTIONS(1174), + [sym__block_quote_start] = ACTIONS(945), + [sym__indented_chunk_start] = ACTIONS(945), + [sym_atx_h1_marker] = ACTIONS(945), + [sym_atx_h2_marker] = ACTIONS(945), + [sym_atx_h3_marker] = ACTIONS(945), + [sym_atx_h4_marker] = ACTIONS(945), + [sym_atx_h5_marker] = ACTIONS(945), + [sym_atx_h6_marker] = ACTIONS(945), + [sym__thematic_break] = ACTIONS(945), + [sym__list_marker_minus] = ACTIONS(945), + [sym__list_marker_plus] = ACTIONS(945), + [sym__list_marker_star] = ACTIONS(945), + [sym__list_marker_parenthesis] = ACTIONS(945), + [sym__list_marker_dot] = ACTIONS(945), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(945), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(945), + [sym__list_marker_star_dont_interrupt] = ACTIONS(945), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(945), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(945), + [sym__fenced_code_block_start_backtick] = ACTIONS(945), + [sym__fenced_code_block_start_tilde] = ACTIONS(945), + [sym__blank_line_start] = ACTIONS(945), + [sym__code_span_start] = ACTIONS(945), + [sym__emphasis_open_star] = ACTIONS(945), + [sym__emphasis_open_underscore] = ACTIONS(945), + [sym__last_token_whitespace] = ACTIONS(1174), + }, + [256] = { + [aux_sym__ignore_matching_tokens] = STATE(201), + [ts_builtin_sym_end] = ACTIONS(945), + [anon_sym_BANG] = ACTIONS(945), + [anon_sym_DQUOTE] = ACTIONS(945), + [anon_sym_POUND] = ACTIONS(945), + [anon_sym_DOLLAR] = ACTIONS(945), + [anon_sym_PERCENT] = ACTIONS(945), + [anon_sym_AMP] = ACTIONS(947), + [anon_sym_SQUOTE] = ACTIONS(945), + [anon_sym_LPAREN] = ACTIONS(945), + [anon_sym_RPAREN] = ACTIONS(945), + [anon_sym_STAR] = ACTIONS(945), + [anon_sym_PLUS] = ACTIONS(945), + [anon_sym_COMMA] = ACTIONS(945), + [anon_sym_DASH] = ACTIONS(945), + [anon_sym_DOT] = ACTIONS(945), + [anon_sym_SLASH] = ACTIONS(945), + [anon_sym_COLON] = ACTIONS(945), + [anon_sym_SEMI] = ACTIONS(945), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_EQ] = ACTIONS(945), + [anon_sym_GT] = ACTIONS(945), + [anon_sym_QMARK] = ACTIONS(945), + [anon_sym_AT] = ACTIONS(945), + [anon_sym_LBRACK] = ACTIONS(945), + [anon_sym_BSLASH] = ACTIONS(947), + [anon_sym_RBRACK] = ACTIONS(945), + [anon_sym_CARET] = ACTIONS(945), + [anon_sym__] = ACTIONS(945), + [anon_sym_BQUOTE] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(945), + [anon_sym_PIPE] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(945), + [anon_sym_TILDE] = ACTIONS(945), + [aux_sym__html_block_1_token1] = ACTIONS(945), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(947), + [anon_sym_LT_QMARK] = ACTIONS(947), + [aux_sym__html_block_4_token1] = ACTIONS(947), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(945), + [aux_sym__html_block_6_token1] = ACTIONS(947), + [aux_sym__html_block_6_token2] = ACTIONS(945), + [sym__open_tag_html_block] = ACTIONS(945), + [sym__open_tag_html_block_newline] = ACTIONS(945), + [sym__closing_tag_html_block] = ACTIONS(945), + [sym__closing_tag_html_block_newline] = ACTIONS(945), + [sym_backslash_escape] = ACTIONS(945), + [sym_entity_reference] = ACTIONS(945), + [sym_numeric_character_reference] = ACTIONS(945), + [sym_uri_autolink] = ACTIONS(945), + [sym_email_autolink] = ACTIONS(945), + [sym__whitespace_ge_2] = ACTIONS(945), + [aux_sym__whitespace_token1] = ACTIONS(947), + [sym__word_no_digit] = ACTIONS(945), + [sym__digits] = ACTIONS(945), + [aux_sym__newline_token1] = ACTIONS(945), + [sym__block_continuation] = ACTIONS(109), + [sym__block_quote_continuation] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(945), + [sym__indented_chunk_start] = ACTIONS(945), + [sym_atx_h1_marker] = ACTIONS(945), + [sym_atx_h2_marker] = ACTIONS(945), + [sym_atx_h3_marker] = ACTIONS(945), + [sym_atx_h4_marker] = ACTIONS(945), + [sym_atx_h5_marker] = ACTIONS(945), + [sym_atx_h6_marker] = ACTIONS(945), + [sym__thematic_break] = ACTIONS(945), + [sym__list_marker_minus] = ACTIONS(945), + [sym__list_marker_plus] = ACTIONS(945), + [sym__list_marker_star] = ACTIONS(945), + [sym__list_marker_parenthesis] = ACTIONS(945), + [sym__list_marker_dot] = ACTIONS(945), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(945), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(945), + [sym__list_marker_star_dont_interrupt] = ACTIONS(945), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(945), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(945), + [sym__fenced_code_block_start_backtick] = ACTIONS(945), + [sym__fenced_code_block_start_tilde] = ACTIONS(945), + [sym__blank_line_start] = ACTIONS(945), + [sym__code_span_start] = ACTIONS(945), + [sym__emphasis_open_star] = ACTIONS(945), + [sym__emphasis_open_underscore] = ACTIONS(945), + [sym__last_token_whitespace] = ACTIONS(109), + }, + [257] = { + [sym__soft_line_break] = STATE(257), + [sym__link_text] = STATE(2126), + [sym__link_text_non_empty] = STATE(716), + [sym_shortcut_link] = STATE(257), + [sym_full_reference_link] = STATE(257), + [sym_collapsed_reference_link] = STATE(257), + [sym_inline_link] = STATE(257), + [sym_image] = STATE(257), + [sym__image_inline_link] = STATE(663), + [sym__image_shortcut_link] = STATE(663), + [sym__image_full_reference_link] = STATE(663), + [sym__image_collapsed_reference_link] = STATE(663), + [sym__image_description] = STATE(2134), + [sym__image_description_non_empty] = STATE(705), + [sym_html_tag] = STATE(257), + [sym__open_tag] = STATE(702), + [sym__closing_tag] = STATE(702), + [sym__html_comment] = STATE(702), + [sym__processing_instruction] = STATE(702), + [sym__declaration] = STATE(702), + [sym__cdata_section] = STATE(702), + [sym_hard_line_break] = STATE(257), + [sym__whitespace] = STATE(257), + [sym__word] = STATE(257), + [sym__newline] = STATE(2143), + [sym__inline_element_no_underscore] = STATE(257), + [aux_sym__inline_no_underscore] = STATE(257), + [sym__text_inline_no_underscore] = STATE(257), + [sym__emphasis_star] = STATE(800), + [sym__strong_emphasis_star] = STATE(257), + [sym__emphasis_underscore] = STATE(800), + [sym__strong_emphasis_underscore] = STATE(257), + [sym__code_span] = STATE(257), + [anon_sym_BANG] = ACTIONS(1176), + [anon_sym_DQUOTE] = ACTIONS(1179), + [anon_sym_POUND] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_PERCENT] = ACTIONS(1179), + [anon_sym_AMP] = ACTIONS(1182), + [anon_sym_SQUOTE] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_RPAREN] = ACTIONS(1179), + [anon_sym_STAR] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1179), + [anon_sym_COMMA] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1179), + [anon_sym_DOT] = ACTIONS(1179), + [anon_sym_SLASH] = ACTIONS(1179), + [anon_sym_COLON] = ACTIONS(1179), + [anon_sym_SEMI] = ACTIONS(1179), + [anon_sym_LT] = ACTIONS(1185), + [anon_sym_EQ] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1179), + [anon_sym_QMARK] = ACTIONS(1179), + [anon_sym_AT] = ACTIONS(1179), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_BSLASH] = ACTIONS(1191), + [anon_sym_RBRACK] = ACTIONS(1179), + [anon_sym_CARET] = ACTIONS(1179), + [anon_sym__] = ACTIONS(1179), + [anon_sym_BQUOTE] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_PIPE] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1179), + [anon_sym_TILDE] = ACTIONS(1179), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1194), + [anon_sym_LT_QMARK] = ACTIONS(1197), + [aux_sym__html_block_4_token1] = ACTIONS(1200), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1203), + [sym_backslash_escape] = ACTIONS(1206), + [sym_entity_reference] = ACTIONS(1206), + [sym_numeric_character_reference] = ACTIONS(1206), + [sym_uri_autolink] = ACTIONS(1206), + [sym_email_autolink] = ACTIONS(1206), + [sym__whitespace_ge_2] = ACTIONS(1209), + [aux_sym__whitespace_token1] = ACTIONS(1212), + [sym__word_no_digit] = ACTIONS(1206), + [sym__digits] = ACTIONS(1206), + [aux_sym__newline_token1] = ACTIONS(1215), + [sym__code_span_start] = ACTIONS(1218), + [sym__emphasis_open_star] = ACTIONS(1221), + [sym__emphasis_open_underscore] = ACTIONS(1224), + [sym__emphasis_close_underscore] = ACTIONS(1227), + }, + [258] = { + [aux_sym__ignore_matching_tokens] = STATE(241), + [ts_builtin_sym_end] = ACTIONS(965), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_DQUOTE] = ACTIONS(965), + [anon_sym_POUND] = ACTIONS(965), + [anon_sym_DOLLAR] = ACTIONS(965), + [anon_sym_PERCENT] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(967), + [anon_sym_SQUOTE] = ACTIONS(965), + [anon_sym_LPAREN] = ACTIONS(965), + [anon_sym_RPAREN] = ACTIONS(965), + [anon_sym_STAR] = ACTIONS(965), + [anon_sym_PLUS] = ACTIONS(965), + [anon_sym_COMMA] = ACTIONS(965), + [anon_sym_DASH] = ACTIONS(965), + [anon_sym_DOT] = ACTIONS(965), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_COLON] = ACTIONS(965), + [anon_sym_SEMI] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(967), + [anon_sym_EQ] = ACTIONS(965), + [anon_sym_GT] = ACTIONS(965), + [anon_sym_QMARK] = ACTIONS(965), + [anon_sym_AT] = ACTIONS(965), + [anon_sym_LBRACK] = ACTIONS(965), + [anon_sym_BSLASH] = ACTIONS(967), + [anon_sym_RBRACK] = ACTIONS(965), + [anon_sym_CARET] = ACTIONS(965), + [anon_sym__] = ACTIONS(965), + [anon_sym_BQUOTE] = ACTIONS(965), + [anon_sym_LBRACE] = ACTIONS(965), + [anon_sym_PIPE] = ACTIONS(965), + [anon_sym_RBRACE] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(965), + [aux_sym__html_block_1_token1] = ACTIONS(965), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(967), + [anon_sym_LT_QMARK] = ACTIONS(967), + [aux_sym__html_block_4_token1] = ACTIONS(967), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(965), + [aux_sym__html_block_6_token1] = ACTIONS(967), + [aux_sym__html_block_6_token2] = ACTIONS(965), + [sym__open_tag_html_block] = ACTIONS(965), + [sym__open_tag_html_block_newline] = ACTIONS(965), + [sym__closing_tag_html_block] = ACTIONS(965), + [sym__closing_tag_html_block_newline] = ACTIONS(965), + [sym_backslash_escape] = ACTIONS(965), + [sym_entity_reference] = ACTIONS(965), + [sym_numeric_character_reference] = ACTIONS(965), + [sym_uri_autolink] = ACTIONS(965), + [sym_email_autolink] = ACTIONS(965), + [sym__whitespace_ge_2] = ACTIONS(965), + [aux_sym__whitespace_token1] = ACTIONS(967), + [sym__word_no_digit] = ACTIONS(965), + [sym__digits] = ACTIONS(965), + [aux_sym__newline_token1] = ACTIONS(965), + [sym__block_continuation] = ACTIONS(1229), + [sym__block_quote_continuation] = ACTIONS(1229), + [sym__block_quote_start] = ACTIONS(965), + [sym__indented_chunk_start] = ACTIONS(965), + [sym_atx_h1_marker] = ACTIONS(965), + [sym_atx_h2_marker] = ACTIONS(965), + [sym_atx_h3_marker] = ACTIONS(965), + [sym_atx_h4_marker] = ACTIONS(965), + [sym_atx_h5_marker] = ACTIONS(965), + [sym_atx_h6_marker] = ACTIONS(965), + [sym__thematic_break] = ACTIONS(965), + [sym__list_marker_minus] = ACTIONS(965), + [sym__list_marker_plus] = ACTIONS(965), + [sym__list_marker_star] = ACTIONS(965), + [sym__list_marker_parenthesis] = ACTIONS(965), + [sym__list_marker_dot] = ACTIONS(965), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(965), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(965), + [sym__list_marker_star_dont_interrupt] = ACTIONS(965), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(965), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(965), + [sym__fenced_code_block_start_backtick] = ACTIONS(965), + [sym__fenced_code_block_start_tilde] = ACTIONS(965), + [sym__blank_line_start] = ACTIONS(965), + [sym__code_span_start] = ACTIONS(965), + [sym__emphasis_open_star] = ACTIONS(965), + [sym__emphasis_open_underscore] = ACTIONS(965), + [sym__last_token_whitespace] = ACTIONS(1229), + }, + [259] = { + [aux_sym__ignore_matching_tokens] = STATE(201), + [ts_builtin_sym_end] = ACTIONS(965), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_DQUOTE] = ACTIONS(965), + [anon_sym_POUND] = ACTIONS(965), + [anon_sym_DOLLAR] = ACTIONS(965), + [anon_sym_PERCENT] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(967), + [anon_sym_SQUOTE] = ACTIONS(965), + [anon_sym_LPAREN] = ACTIONS(965), + [anon_sym_RPAREN] = ACTIONS(965), + [anon_sym_STAR] = ACTIONS(965), + [anon_sym_PLUS] = ACTIONS(965), + [anon_sym_COMMA] = ACTIONS(965), + [anon_sym_DASH] = ACTIONS(965), + [anon_sym_DOT] = ACTIONS(965), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_COLON] = ACTIONS(965), + [anon_sym_SEMI] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(967), + [anon_sym_EQ] = ACTIONS(965), + [anon_sym_GT] = ACTIONS(965), + [anon_sym_QMARK] = ACTIONS(965), + [anon_sym_AT] = ACTIONS(965), + [anon_sym_LBRACK] = ACTIONS(965), + [anon_sym_BSLASH] = ACTIONS(967), + [anon_sym_RBRACK] = ACTIONS(965), + [anon_sym_CARET] = ACTIONS(965), + [anon_sym__] = ACTIONS(965), + [anon_sym_BQUOTE] = ACTIONS(965), + [anon_sym_LBRACE] = ACTIONS(965), + [anon_sym_PIPE] = ACTIONS(965), + [anon_sym_RBRACE] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(965), + [aux_sym__html_block_1_token1] = ACTIONS(965), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(967), + [anon_sym_LT_QMARK] = ACTIONS(967), + [aux_sym__html_block_4_token1] = ACTIONS(967), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(965), + [aux_sym__html_block_6_token1] = ACTIONS(967), + [aux_sym__html_block_6_token2] = ACTIONS(965), + [sym__open_tag_html_block] = ACTIONS(965), + [sym__open_tag_html_block_newline] = ACTIONS(965), + [sym__closing_tag_html_block] = ACTIONS(965), + [sym__closing_tag_html_block_newline] = ACTIONS(965), + [sym_backslash_escape] = ACTIONS(965), + [sym_entity_reference] = ACTIONS(965), + [sym_numeric_character_reference] = ACTIONS(965), + [sym_uri_autolink] = ACTIONS(965), + [sym_email_autolink] = ACTIONS(965), + [sym__whitespace_ge_2] = ACTIONS(965), + [aux_sym__whitespace_token1] = ACTIONS(967), + [sym__word_no_digit] = ACTIONS(965), + [sym__digits] = ACTIONS(965), + [aux_sym__newline_token1] = ACTIONS(965), + [sym__block_continuation] = ACTIONS(109), + [sym__block_quote_continuation] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(965), + [sym__indented_chunk_start] = ACTIONS(965), + [sym_atx_h1_marker] = ACTIONS(965), + [sym_atx_h2_marker] = ACTIONS(965), + [sym_atx_h3_marker] = ACTIONS(965), + [sym_atx_h4_marker] = ACTIONS(965), + [sym_atx_h5_marker] = ACTIONS(965), + [sym_atx_h6_marker] = ACTIONS(965), + [sym__thematic_break] = ACTIONS(965), + [sym__list_marker_minus] = ACTIONS(965), + [sym__list_marker_plus] = ACTIONS(965), + [sym__list_marker_star] = ACTIONS(965), + [sym__list_marker_parenthesis] = ACTIONS(965), + [sym__list_marker_dot] = ACTIONS(965), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(965), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(965), + [sym__list_marker_star_dont_interrupt] = ACTIONS(965), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(965), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(965), + [sym__fenced_code_block_start_backtick] = ACTIONS(965), + [sym__fenced_code_block_start_tilde] = ACTIONS(965), + [sym__blank_line_start] = ACTIONS(965), + [sym__code_span_start] = ACTIONS(965), + [sym__emphasis_open_star] = ACTIONS(965), + [sym__emphasis_open_underscore] = ACTIONS(965), + [sym__last_token_whitespace] = ACTIONS(109), + }, + [260] = { + [aux_sym__ignore_matching_tokens] = STATE(177), + [ts_builtin_sym_end] = 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), + [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(820), + [sym_numeric_character_reference] = ACTIONS(820), + [sym_uri_autolink] = ACTIONS(820), + [sym_email_autolink] = 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(1231), + [sym__block_quote_continuation] = ACTIONS(1231), + [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__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__emphasis_open_star] = ACTIONS(820), + [sym__emphasis_open_underscore] = ACTIONS(820), + [sym__last_token_whitespace] = ACTIONS(1231), + }, + [261] = { + [sym__soft_line_break] = STATE(253), + [sym__link_text] = STATE(2124), + [sym__link_text_non_empty] = STATE(712), + [sym_shortcut_link] = STATE(253), + [sym_full_reference_link] = STATE(253), + [sym_collapsed_reference_link] = STATE(253), + [sym_inline_link] = STATE(253), + [sym_image] = STATE(253), + [sym__image_inline_link] = STATE(713), + [sym__image_shortcut_link] = STATE(713), + [sym__image_full_reference_link] = STATE(713), + [sym__image_collapsed_reference_link] = STATE(713), + [sym__image_description] = STATE(2120), + [sym__image_description_non_empty] = STATE(714), + [sym_html_tag] = STATE(253), + [sym__open_tag] = STATE(715), + [sym__closing_tag] = STATE(715), + [sym__html_comment] = STATE(715), + [sym__processing_instruction] = STATE(715), + [sym__declaration] = STATE(715), + [sym__cdata_section] = STATE(715), + [sym_hard_line_break] = STATE(253), + [sym__whitespace] = STATE(253), + [sym__word] = STATE(253), + [sym__newline] = STATE(2144), + [sym__inline_element_no_star] = STATE(253), + [aux_sym__inline_no_star] = STATE(253), + [sym__text_inline_no_star] = STATE(253), + [sym__emphasis_star] = STATE(811), + [sym__strong_emphasis_star] = STATE(253), + [sym__emphasis_underscore] = STATE(811), + [sym__strong_emphasis_underscore] = STATE(253), + [sym__code_span] = STATE(253), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_DQUOTE] = ACTIONS(599), + [anon_sym_POUND] = ACTIONS(599), + [anon_sym_DOLLAR] = ACTIONS(599), + [anon_sym_PERCENT] = ACTIONS(599), + [anon_sym_AMP] = ACTIONS(601), + [anon_sym_SQUOTE] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_RPAREN] = ACTIONS(599), + [anon_sym_STAR] = ACTIONS(599), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_COMMA] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_DOT] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(599), + [anon_sym_COLON] = ACTIONS(599), + [anon_sym_SEMI] = ACTIONS(599), + [anon_sym_LT] = ACTIONS(603), + [anon_sym_EQ] = ACTIONS(599), + [anon_sym_GT] = ACTIONS(599), + [anon_sym_QMARK] = ACTIONS(599), + [anon_sym_AT] = ACTIONS(599), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_BSLASH] = ACTIONS(607), + [anon_sym_RBRACK] = ACTIONS(599), + [anon_sym_CARET] = ACTIONS(599), + [anon_sym__] = ACTIONS(599), + [anon_sym_BQUOTE] = ACTIONS(599), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_PIPE] = ACTIONS(599), + [anon_sym_RBRACE] = ACTIONS(599), + [anon_sym_TILDE] = ACTIONS(599), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(609), + [anon_sym_LT_QMARK] = ACTIONS(611), + [aux_sym__html_block_4_token1] = ACTIONS(613), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(615), + [sym_backslash_escape] = ACTIONS(617), + [sym_entity_reference] = ACTIONS(617), + [sym_numeric_character_reference] = ACTIONS(617), + [sym_uri_autolink] = ACTIONS(617), + [sym_email_autolink] = ACTIONS(617), + [sym__whitespace_ge_2] = ACTIONS(619), + [aux_sym__whitespace_token1] = ACTIONS(621), + [sym__word_no_digit] = ACTIONS(617), + [sym__digits] = ACTIONS(617), + [aux_sym__newline_token1] = ACTIONS(41), + [sym__code_span_start] = ACTIONS(623), + [sym__emphasis_open_star] = ACTIONS(625), + [sym__emphasis_open_underscore] = ACTIONS(627), + [sym__emphasis_close_star] = ACTIONS(1233), + }, + [262] = { + [aux_sym__ignore_matching_tokens] = STATE(160), + [anon_sym_BANG] = ACTIONS(880), + [anon_sym_DQUOTE] = ACTIONS(880), + [anon_sym_POUND] = ACTIONS(880), + [anon_sym_DOLLAR] = ACTIONS(880), + [anon_sym_PERCENT] = ACTIONS(880), + [anon_sym_AMP] = ACTIONS(882), + [anon_sym_SQUOTE] = ACTIONS(880), + [anon_sym_LPAREN] = ACTIONS(880), + [anon_sym_RPAREN] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(880), + [anon_sym_COMMA] = ACTIONS(880), + [anon_sym_DASH] = ACTIONS(880), + [anon_sym_DOT] = ACTIONS(880), + [anon_sym_SLASH] = ACTIONS(880), + [anon_sym_COLON] = ACTIONS(880), + [anon_sym_SEMI] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_EQ] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(880), + [anon_sym_QMARK] = ACTIONS(880), + [anon_sym_AT] = ACTIONS(880), + [anon_sym_LBRACK] = ACTIONS(880), + [anon_sym_BSLASH] = ACTIONS(882), + [anon_sym_RBRACK] = ACTIONS(880), + [anon_sym_CARET] = ACTIONS(880), + [anon_sym__] = ACTIONS(880), + [anon_sym_BQUOTE] = ACTIONS(880), + [anon_sym_LBRACE] = ACTIONS(880), + [anon_sym_PIPE] = ACTIONS(880), + [anon_sym_RBRACE] = ACTIONS(880), + [anon_sym_TILDE] = ACTIONS(880), + [aux_sym__html_block_1_token1] = ACTIONS(880), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(882), + [anon_sym_LT_QMARK] = ACTIONS(882), + [aux_sym__html_block_4_token1] = ACTIONS(882), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(880), + [aux_sym__html_block_6_token1] = ACTIONS(882), + [aux_sym__html_block_6_token2] = ACTIONS(880), + [sym__open_tag_html_block] = ACTIONS(880), + [sym__open_tag_html_block_newline] = ACTIONS(880), + [sym__closing_tag_html_block] = ACTIONS(880), + [sym__closing_tag_html_block_newline] = ACTIONS(880), + [sym_backslash_escape] = ACTIONS(880), + [sym_entity_reference] = ACTIONS(880), + [sym_numeric_character_reference] = ACTIONS(880), + [sym_uri_autolink] = ACTIONS(880), + [sym_email_autolink] = ACTIONS(880), + [sym__whitespace_ge_2] = ACTIONS(880), + [aux_sym__whitespace_token1] = ACTIONS(882), + [sym__word_no_digit] = ACTIONS(880), + [sym__digits] = ACTIONS(880), + [aux_sym__newline_token1] = ACTIONS(880), + [sym__block_close] = ACTIONS(880), + [sym__block_continuation] = ACTIONS(113), + [sym__block_quote_continuation] = ACTIONS(113), + [sym__block_quote_start] = ACTIONS(880), + [sym__indented_chunk_start] = ACTIONS(880), + [sym_atx_h1_marker] = ACTIONS(880), + [sym_atx_h2_marker] = ACTIONS(880), + [sym_atx_h3_marker] = ACTIONS(880), + [sym_atx_h4_marker] = ACTIONS(880), + [sym_atx_h5_marker] = ACTIONS(880), + [sym_atx_h6_marker] = ACTIONS(880), + [sym__thematic_break] = ACTIONS(880), + [sym__list_marker_minus] = ACTIONS(880), + [sym__list_marker_plus] = ACTIONS(880), + [sym__list_marker_star] = ACTIONS(880), + [sym__list_marker_parenthesis] = ACTIONS(880), + [sym__list_marker_dot] = ACTIONS(880), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(880), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(880), + [sym__list_marker_star_dont_interrupt] = ACTIONS(880), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(880), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(880), + [sym__fenced_code_block_start_backtick] = ACTIONS(880), + [sym__fenced_code_block_start_tilde] = ACTIONS(880), + [sym__blank_line_start] = ACTIONS(880), + [sym__code_span_start] = ACTIONS(880), + [sym__emphasis_open_star] = ACTIONS(880), + [sym__emphasis_open_underscore] = ACTIONS(880), + [sym__last_token_whitespace] = ACTIONS(113), + }, + [263] = { + [sym__soft_line_break] = STATE(257), + [sym__link_text] = STATE(2126), + [sym__link_text_non_empty] = STATE(716), + [sym_shortcut_link] = STATE(257), + [sym_full_reference_link] = STATE(257), + [sym_collapsed_reference_link] = STATE(257), + [sym_inline_link] = STATE(257), + [sym_image] = STATE(257), + [sym__image_inline_link] = STATE(663), + [sym__image_shortcut_link] = STATE(663), + [sym__image_full_reference_link] = STATE(663), + [sym__image_collapsed_reference_link] = STATE(663), + [sym__image_description] = STATE(2134), + [sym__image_description_non_empty] = STATE(705), + [sym_html_tag] = STATE(257), + [sym__open_tag] = STATE(702), + [sym__closing_tag] = STATE(702), + [sym__html_comment] = STATE(702), + [sym__processing_instruction] = STATE(702), + [sym__declaration] = STATE(702), + [sym__cdata_section] = STATE(702), + [sym_hard_line_break] = STATE(257), + [sym__whitespace] = STATE(257), + [sym__word] = STATE(257), + [sym__newline] = STATE(2143), + [sym__inline_element_no_underscore] = STATE(257), + [aux_sym__inline_no_underscore] = STATE(257), + [sym__text_inline_no_underscore] = STATE(257), + [sym__emphasis_star] = STATE(800), + [sym__strong_emphasis_star] = STATE(257), + [sym__emphasis_underscore] = STATE(800), + [sym__strong_emphasis_underscore] = STATE(257), + [sym__code_span] = STATE(257), + [anon_sym_BANG] = ACTIONS(559), + [anon_sym_DQUOTE] = ACTIONS(561), + [anon_sym_POUND] = ACTIONS(561), + [anon_sym_DOLLAR] = ACTIONS(561), + [anon_sym_PERCENT] = ACTIONS(561), + [anon_sym_AMP] = ACTIONS(563), + [anon_sym_SQUOTE] = ACTIONS(561), + [anon_sym_LPAREN] = ACTIONS(561), + [anon_sym_RPAREN] = ACTIONS(561), + [anon_sym_STAR] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_COMMA] = ACTIONS(561), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_DOT] = ACTIONS(561), + [anon_sym_SLASH] = ACTIONS(561), + [anon_sym_COLON] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(561), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_EQ] = ACTIONS(561), + [anon_sym_GT] = ACTIONS(561), + [anon_sym_QMARK] = ACTIONS(561), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_BSLASH] = ACTIONS(569), + [anon_sym_RBRACK] = ACTIONS(561), + [anon_sym_CARET] = ACTIONS(561), + [anon_sym__] = ACTIONS(561), + [anon_sym_BQUOTE] = ACTIONS(561), + [anon_sym_LBRACE] = ACTIONS(561), + [anon_sym_PIPE] = ACTIONS(561), + [anon_sym_RBRACE] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(571), + [anon_sym_LT_QMARK] = ACTIONS(573), + [aux_sym__html_block_4_token1] = ACTIONS(575), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(577), + [sym_backslash_escape] = ACTIONS(579), + [sym_entity_reference] = ACTIONS(579), + [sym_numeric_character_reference] = ACTIONS(579), + [sym_uri_autolink] = ACTIONS(579), + [sym_email_autolink] = ACTIONS(579), + [sym__whitespace_ge_2] = ACTIONS(581), + [aux_sym__whitespace_token1] = ACTIONS(583), + [sym__word_no_digit] = ACTIONS(579), + [sym__digits] = ACTIONS(579), + [aux_sym__newline_token1] = ACTIONS(41), + [sym__code_span_start] = ACTIONS(585), + [sym__emphasis_open_star] = ACTIONS(587), + [sym__emphasis_open_underscore] = ACTIONS(589), + [sym__emphasis_close_underscore] = ACTIONS(1235), + }, + [264] = { + [aux_sym__ignore_matching_tokens] = STATE(160), [anon_sym_BANG] = ACTIONS(870), [anon_sym_DQUOTE] = ACTIONS(870), [anon_sym_POUND] = ACTIONS(870), @@ -49741,6697 +55273,1004 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__digits] = ACTIONS(870), [aux_sym__newline_token1] = ACTIONS(870), [sym__block_close] = ACTIONS(870), - [sym__block_continuation] = ACTIONS(957), - [sym__block_quote_continuation] = ACTIONS(957), - [sym__block_quote_start] = ACTIONS(870), - [sym__indented_chunk_start] = ACTIONS(870), - [sym_atx_h1_marker] = ACTIONS(870), - [sym_atx_h2_marker] = ACTIONS(870), - [sym_atx_h3_marker] = ACTIONS(870), - [sym_atx_h4_marker] = ACTIONS(870), - [sym_atx_h5_marker] = ACTIONS(870), - [sym_atx_h6_marker] = ACTIONS(870), - [sym__thematic_break] = ACTIONS(870), - [sym__list_marker_minus] = ACTIONS(870), - [sym__list_marker_plus] = ACTIONS(870), - [sym__list_marker_star] = ACTIONS(870), - [sym__list_marker_parenthesis] = ACTIONS(870), - [sym__list_marker_dot] = ACTIONS(870), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(870), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(870), - [sym__list_marker_star_dont_interrupt] = ACTIONS(870), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(870), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(870), - [sym__fenced_code_block_start_backtick] = ACTIONS(870), - [sym__fenced_code_block_start_tilde] = ACTIONS(870), - [sym__blank_line_start] = ACTIONS(870), - [sym__code_span_start] = ACTIONS(870), - [sym__emphasis_open_star] = ACTIONS(870), - [sym__emphasis_open_underscore] = ACTIONS(870), - [sym__last_token_whitespace] = ACTIONS(957), - }, - [200] = { - [sym__soft_line_break] = STATE(258), - [sym__link_text] = STATE(2133), - [sym__link_text_non_empty] = STATE(795), - [sym_shortcut_link] = STATE(258), - [sym_full_reference_link] = STATE(258), - [sym_collapsed_reference_link] = STATE(258), - [sym_inline_link] = STATE(258), - [sym_image] = STATE(258), - [sym__image_inline_link] = STATE(801), - [sym__image_shortcut_link] = STATE(801), - [sym__image_full_reference_link] = STATE(801), - [sym__image_collapsed_reference_link] = STATE(801), - [sym__image_description] = STATE(2122), - [sym__image_description_non_empty] = STATE(802), - [sym_html_tag] = STATE(258), - [sym__open_tag] = STATE(683), - [sym__closing_tag] = STATE(683), - [sym__html_comment] = STATE(683), - [sym__processing_instruction] = STATE(683), - [sym__declaration] = STATE(683), - [sym__cdata_section] = STATE(683), - [sym_hard_line_break] = STATE(258), - [sym__whitespace] = STATE(258), - [sym__word] = STATE(258), - [sym__newline] = STATE(2123), - [sym__inline_element_no_underscore] = STATE(258), - [aux_sym__inline_no_underscore] = STATE(258), - [sym__text_inline_no_underscore] = STATE(258), - [sym__emphasis_star] = STATE(761), - [sym__strong_emphasis_star] = STATE(258), - [sym__emphasis_underscore] = STATE(761), - [sym__strong_emphasis_underscore] = STATE(258), - [sym__code_span] = STATE(258), - [anon_sym_BANG] = ACTIONS(711), - [anon_sym_DQUOTE] = ACTIONS(713), - [anon_sym_POUND] = ACTIONS(713), - [anon_sym_DOLLAR] = ACTIONS(713), - [anon_sym_PERCENT] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(713), - [anon_sym_LPAREN] = ACTIONS(713), - [anon_sym_RPAREN] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(713), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_COMMA] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_DOT] = ACTIONS(713), - [anon_sym_SLASH] = ACTIONS(713), - [anon_sym_COLON] = ACTIONS(713), - [anon_sym_SEMI] = ACTIONS(713), - [anon_sym_LT] = ACTIONS(717), - [anon_sym_EQ] = ACTIONS(713), - [anon_sym_GT] = ACTIONS(713), - [anon_sym_QMARK] = ACTIONS(713), - [anon_sym_AT] = ACTIONS(713), - [anon_sym_LBRACK] = ACTIONS(719), - [anon_sym_BSLASH] = ACTIONS(721), - [anon_sym_RBRACK] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym__] = ACTIONS(713), - [anon_sym_BQUOTE] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(713), - [anon_sym_PIPE] = ACTIONS(713), - [anon_sym_RBRACE] = ACTIONS(713), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(723), - [anon_sym_LT_QMARK] = ACTIONS(725), - [aux_sym__html_block_4_token1] = ACTIONS(727), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(729), - [sym_backslash_escape] = ACTIONS(731), - [sym_entity_reference] = ACTIONS(731), - [sym_numeric_character_reference] = ACTIONS(731), - [sym_uri_autolink] = ACTIONS(731), - [sym_email_autolink] = ACTIONS(731), - [sym__whitespace_ge_2] = ACTIONS(733), - [aux_sym__whitespace_token1] = ACTIONS(735), - [sym__word_no_digit] = ACTIONS(731), - [sym__digits] = ACTIONS(731), - [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(737), - [sym__emphasis_open_star] = ACTIONS(739), - [sym__emphasis_open_underscore] = ACTIONS(741), - [sym__emphasis_close_underscore] = ACTIONS(959), - }, - [201] = { - [aux_sym__ignore_matching_tokens] = STATE(275), - [anon_sym_BANG] = ACTIONS(870), - [anon_sym_DQUOTE] = ACTIONS(870), - [anon_sym_POUND] = ACTIONS(870), - [anon_sym_DOLLAR] = ACTIONS(870), - [anon_sym_PERCENT] = ACTIONS(870), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_SQUOTE] = ACTIONS(870), - [anon_sym_LPAREN] = ACTIONS(870), - [anon_sym_RPAREN] = ACTIONS(870), - [anon_sym_STAR] = ACTIONS(870), - [anon_sym_PLUS] = ACTIONS(870), - [anon_sym_COMMA] = ACTIONS(870), - [anon_sym_DASH] = ACTIONS(870), - [anon_sym_DOT] = ACTIONS(870), - [anon_sym_SLASH] = ACTIONS(870), - [anon_sym_COLON] = ACTIONS(870), - [anon_sym_SEMI] = ACTIONS(870), - [anon_sym_LT] = ACTIONS(872), - [anon_sym_EQ] = ACTIONS(870), - [anon_sym_GT] = ACTIONS(870), - [anon_sym_QMARK] = ACTIONS(870), - [anon_sym_AT] = ACTIONS(870), - [anon_sym_LBRACK] = ACTIONS(870), - [anon_sym_BSLASH] = ACTIONS(872), - [anon_sym_RBRACK] = ACTIONS(870), - [anon_sym_CARET] = ACTIONS(870), - [anon_sym__] = ACTIONS(870), - [anon_sym_BQUOTE] = ACTIONS(870), - [anon_sym_LBRACE] = ACTIONS(870), - [anon_sym_PIPE] = ACTIONS(870), - [anon_sym_RBRACE] = ACTIONS(870), - [anon_sym_TILDE] = ACTIONS(870), - [aux_sym__html_block_1_token1] = ACTIONS(870), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(872), - [anon_sym_LT_QMARK] = ACTIONS(872), - [aux_sym__html_block_4_token1] = ACTIONS(872), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(870), - [aux_sym__html_block_6_token1] = ACTIONS(872), - [aux_sym__html_block_6_token2] = ACTIONS(870), - [sym__open_tag_html_block] = ACTIONS(870), - [sym__open_tag_html_block_newline] = ACTIONS(870), - [sym__closing_tag_html_block] = ACTIONS(870), - [sym__closing_tag_html_block_newline] = ACTIONS(870), - [sym_backslash_escape] = ACTIONS(870), - [sym_entity_reference] = ACTIONS(870), - [sym_numeric_character_reference] = ACTIONS(870), - [sym_uri_autolink] = ACTIONS(870), - [sym_email_autolink] = ACTIONS(870), - [sym__whitespace_ge_2] = ACTIONS(870), - [aux_sym__whitespace_token1] = ACTIONS(872), - [sym__word_no_digit] = ACTIONS(870), - [sym__digits] = ACTIONS(870), - [aux_sym__newline_token1] = ACTIONS(870), - [sym__block_close] = ACTIONS(870), - [sym__block_continuation] = ACTIONS(125), - [sym__block_quote_continuation] = ACTIONS(125), - [sym__block_quote_start] = ACTIONS(870), - [sym__indented_chunk_start] = ACTIONS(870), - [sym_atx_h1_marker] = ACTIONS(870), - [sym_atx_h2_marker] = ACTIONS(870), - [sym_atx_h3_marker] = ACTIONS(870), - [sym_atx_h4_marker] = ACTIONS(870), - [sym_atx_h5_marker] = ACTIONS(870), - [sym_atx_h6_marker] = ACTIONS(870), - [sym__thematic_break] = ACTIONS(870), - [sym__list_marker_minus] = ACTIONS(870), - [sym__list_marker_plus] = ACTIONS(870), - [sym__list_marker_star] = ACTIONS(870), - [sym__list_marker_parenthesis] = ACTIONS(870), - [sym__list_marker_dot] = ACTIONS(870), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(870), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(870), - [sym__list_marker_star_dont_interrupt] = ACTIONS(870), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(870), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(870), - [sym__fenced_code_block_start_backtick] = ACTIONS(870), - [sym__fenced_code_block_start_tilde] = ACTIONS(870), - [sym__blank_line_start] = ACTIONS(870), - [sym__code_span_start] = ACTIONS(870), - [sym__emphasis_open_star] = ACTIONS(870), - [sym__emphasis_open_underscore] = ACTIONS(870), - [sym__last_token_whitespace] = ACTIONS(125), - }, - [202] = { - [aux_sym__ignore_matching_tokens] = STATE(202), - [ts_builtin_sym_end] = ACTIONS(397), - [anon_sym_BANG] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(397), - [anon_sym_POUND] = ACTIONS(397), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_PERCENT] = ACTIONS(397), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(397), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_RPAREN] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_DOT] = ACTIONS(397), - [anon_sym_SLASH] = ACTIONS(397), - [anon_sym_COLON] = ACTIONS(397), - [anon_sym_SEMI] = ACTIONS(397), - [anon_sym_LT] = ACTIONS(399), - [anon_sym_EQ] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(397), - [anon_sym_QMARK] = ACTIONS(397), - [anon_sym_AT] = ACTIONS(397), - [anon_sym_LBRACK] = ACTIONS(397), - [anon_sym_BSLASH] = ACTIONS(399), - [anon_sym_RBRACK] = ACTIONS(397), - [anon_sym_CARET] = ACTIONS(397), - [anon_sym__] = ACTIONS(397), - [anon_sym_BQUOTE] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_PIPE] = ACTIONS(397), - [anon_sym_RBRACE] = ACTIONS(397), - [anon_sym_TILDE] = ACTIONS(397), - [aux_sym__html_block_1_token1] = ACTIONS(397), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(399), - [anon_sym_LT_QMARK] = ACTIONS(399), - [aux_sym__html_block_4_token1] = ACTIONS(399), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(397), - [aux_sym__html_block_6_token1] = ACTIONS(399), - [aux_sym__html_block_6_token2] = ACTIONS(397), - [sym__open_tag_html_block] = ACTIONS(397), - [sym__open_tag_html_block_newline] = ACTIONS(397), - [sym__closing_tag_html_block] = ACTIONS(397), - [sym__closing_tag_html_block_newline] = ACTIONS(397), - [sym_backslash_escape] = ACTIONS(397), - [sym_entity_reference] = ACTIONS(397), - [sym_numeric_character_reference] = ACTIONS(397), - [sym_uri_autolink] = ACTIONS(397), - [sym_email_autolink] = ACTIONS(397), - [sym__whitespace_ge_2] = ACTIONS(397), - [aux_sym__whitespace_token1] = ACTIONS(399), - [sym__word_no_digit] = ACTIONS(397), - [sym__digits] = ACTIONS(397), - [aux_sym__newline_token1] = ACTIONS(397), - [sym__block_continuation] = ACTIONS(961), - [sym__block_quote_continuation] = ACTIONS(961), - [sym__block_quote_start] = ACTIONS(397), - [sym__indented_chunk_start] = ACTIONS(397), - [sym_atx_h1_marker] = ACTIONS(397), - [sym_atx_h2_marker] = ACTIONS(397), - [sym_atx_h3_marker] = ACTIONS(397), - [sym_atx_h4_marker] = ACTIONS(397), - [sym_atx_h5_marker] = ACTIONS(397), - [sym_atx_h6_marker] = ACTIONS(397), - [sym__thematic_break] = ACTIONS(397), - [sym__list_marker_minus] = ACTIONS(397), - [sym__list_marker_plus] = ACTIONS(397), - [sym__list_marker_star] = ACTIONS(397), - [sym__list_marker_parenthesis] = ACTIONS(397), - [sym__list_marker_dot] = ACTIONS(397), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(397), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(397), - [sym__list_marker_star_dont_interrupt] = ACTIONS(397), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(397), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(397), - [sym__fenced_code_block_start_backtick] = ACTIONS(397), - [sym__fenced_code_block_start_tilde] = ACTIONS(397), - [sym__blank_line_start] = ACTIONS(397), - [sym__code_span_start] = ACTIONS(397), - [sym__emphasis_open_star] = ACTIONS(397), - [sym__emphasis_open_underscore] = ACTIONS(397), - [sym__last_token_whitespace] = ACTIONS(961), - }, - [203] = { - [aux_sym__ignore_matching_tokens] = STATE(165), - [anon_sym_BANG] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(933), - [anon_sym_DOLLAR] = ACTIONS(933), - [anon_sym_PERCENT] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(935), - [anon_sym_SQUOTE] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(933), - [anon_sym_RPAREN] = ACTIONS(933), - [anon_sym_STAR] = ACTIONS(933), - [anon_sym_PLUS] = ACTIONS(933), - [anon_sym_COMMA] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(933), - [anon_sym_DOT] = ACTIONS(933), - [anon_sym_SLASH] = ACTIONS(933), - [anon_sym_COLON] = ACTIONS(933), - [anon_sym_SEMI] = ACTIONS(933), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_EQ] = ACTIONS(933), - [anon_sym_GT] = ACTIONS(933), - [anon_sym_QMARK] = ACTIONS(933), - [anon_sym_AT] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(933), - [anon_sym_BSLASH] = ACTIONS(935), - [anon_sym_RBRACK] = ACTIONS(933), - [anon_sym_CARET] = ACTIONS(933), - [anon_sym__] = ACTIONS(933), - [anon_sym_BQUOTE] = ACTIONS(933), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_RBRACE] = ACTIONS(933), - [anon_sym_TILDE] = ACTIONS(933), - [aux_sym__html_block_1_token1] = ACTIONS(933), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(935), - [anon_sym_LT_QMARK] = ACTIONS(935), - [aux_sym__html_block_4_token1] = ACTIONS(935), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(933), - [aux_sym__html_block_6_token1] = ACTIONS(935), - [aux_sym__html_block_6_token2] = ACTIONS(933), - [sym__open_tag_html_block] = ACTIONS(933), - [sym__open_tag_html_block_newline] = ACTIONS(933), - [sym__closing_tag_html_block] = ACTIONS(933), - [sym__closing_tag_html_block_newline] = ACTIONS(933), - [sym_backslash_escape] = ACTIONS(933), - [sym_entity_reference] = ACTIONS(933), - [sym_numeric_character_reference] = ACTIONS(933), - [sym_uri_autolink] = ACTIONS(933), - [sym_email_autolink] = ACTIONS(933), - [sym__whitespace_ge_2] = ACTIONS(933), - [aux_sym__whitespace_token1] = ACTIONS(935), - [sym__word_no_digit] = ACTIONS(933), - [sym__digits] = ACTIONS(933), - [aux_sym__newline_token1] = ACTIONS(933), - [sym__block_close] = ACTIONS(933), - [sym__block_continuation] = ACTIONS(964), - [sym__block_quote_continuation] = ACTIONS(964), - [sym__block_quote_start] = ACTIONS(933), - [sym__indented_chunk_start] = ACTIONS(933), - [sym_atx_h1_marker] = ACTIONS(933), - [sym_atx_h2_marker] = ACTIONS(933), - [sym_atx_h3_marker] = ACTIONS(933), - [sym_atx_h4_marker] = ACTIONS(933), - [sym_atx_h5_marker] = ACTIONS(933), - [sym_atx_h6_marker] = ACTIONS(933), - [sym__thematic_break] = ACTIONS(933), - [sym__list_marker_minus] = ACTIONS(933), - [sym__list_marker_plus] = ACTIONS(933), - [sym__list_marker_star] = ACTIONS(933), - [sym__list_marker_parenthesis] = ACTIONS(933), - [sym__list_marker_dot] = ACTIONS(933), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(933), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(933), - [sym__list_marker_star_dont_interrupt] = ACTIONS(933), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(933), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(933), - [sym__fenced_code_block_start_backtick] = ACTIONS(933), - [sym__fenced_code_block_start_tilde] = ACTIONS(933), - [sym__blank_line_start] = ACTIONS(933), - [sym__code_span_start] = ACTIONS(933), - [sym__emphasis_open_star] = ACTIONS(933), - [sym__emphasis_open_underscore] = ACTIONS(933), - [sym__last_token_whitespace] = ACTIONS(964), - }, - [204] = { - [sym__soft_line_break] = STATE(254), - [sym__link_text] = STATE(2135), - [sym__link_text_non_empty] = STATE(707), - [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(708), - [sym__image_shortcut_link] = STATE(708), - [sym__image_full_reference_link] = STATE(708), - [sym__image_collapsed_reference_link] = STATE(708), - [sym__image_description] = STATE(2137), - [sym__image_description_non_empty] = STATE(709), - [sym_html_tag] = STATE(254), - [sym__open_tag] = STATE(710), - [sym__closing_tag] = STATE(710), - [sym__html_comment] = STATE(710), - [sym__processing_instruction] = STATE(710), - [sym__declaration] = STATE(710), - [sym__cdata_section] = STATE(710), - [sym_hard_line_break] = STATE(254), - [sym__whitespace] = STATE(254), - [sym__word] = STATE(254), - [sym__newline] = STATE(2120), - [sym__inline_element_no_star] = STATE(254), - [aux_sym__inline_no_star] = STATE(254), - [sym__text_inline_no_star] = STATE(254), - [sym__emphasis_star] = STATE(777), - [sym__strong_emphasis_star] = STATE(254), - [sym__emphasis_underscore] = STATE(777), - [sym__strong_emphasis_underscore] = STATE(254), - [sym__code_span] = STATE(254), - [anon_sym_BANG] = ACTIONS(578), - [anon_sym_DQUOTE] = ACTIONS(580), - [anon_sym_POUND] = ACTIONS(580), - [anon_sym_DOLLAR] = ACTIONS(580), - [anon_sym_PERCENT] = ACTIONS(580), - [anon_sym_AMP] = ACTIONS(582), - [anon_sym_SQUOTE] = ACTIONS(580), - [anon_sym_LPAREN] = ACTIONS(580), - [anon_sym_RPAREN] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(580), - [anon_sym_COMMA] = ACTIONS(580), - [anon_sym_DASH] = ACTIONS(580), - [anon_sym_DOT] = ACTIONS(580), - [anon_sym_SLASH] = ACTIONS(580), - [anon_sym_COLON] = ACTIONS(580), - [anon_sym_SEMI] = ACTIONS(580), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_EQ] = ACTIONS(580), - [anon_sym_GT] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(580), - [anon_sym_AT] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_BSLASH] = ACTIONS(588), - [anon_sym_RBRACK] = ACTIONS(580), - [anon_sym_CARET] = ACTIONS(580), - [anon_sym__] = ACTIONS(580), - [anon_sym_BQUOTE] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(580), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_RBRACE] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(580), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(590), - [anon_sym_LT_QMARK] = ACTIONS(592), - [aux_sym__html_block_4_token1] = ACTIONS(594), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(596), - [sym_backslash_escape] = ACTIONS(598), - [sym_entity_reference] = ACTIONS(598), - [sym_numeric_character_reference] = ACTIONS(598), - [sym_uri_autolink] = ACTIONS(598), - [sym_email_autolink] = ACTIONS(598), - [sym__whitespace_ge_2] = ACTIONS(600), - [aux_sym__whitespace_token1] = ACTIONS(602), - [sym__word_no_digit] = ACTIONS(598), - [sym__digits] = ACTIONS(598), - [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(604), - [sym__emphasis_open_star] = ACTIONS(606), - [sym__emphasis_open_underscore] = ACTIONS(608), - [sym__emphasis_close_star] = ACTIONS(966), - }, - [205] = { - [aux_sym__ignore_matching_tokens] = STATE(275), - [anon_sym_BANG] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(933), - [anon_sym_DOLLAR] = ACTIONS(933), - [anon_sym_PERCENT] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(935), - [anon_sym_SQUOTE] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(933), - [anon_sym_RPAREN] = ACTIONS(933), - [anon_sym_STAR] = ACTIONS(933), - [anon_sym_PLUS] = ACTIONS(933), - [anon_sym_COMMA] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(933), - [anon_sym_DOT] = ACTIONS(933), - [anon_sym_SLASH] = ACTIONS(933), - [anon_sym_COLON] = ACTIONS(933), - [anon_sym_SEMI] = ACTIONS(933), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_EQ] = ACTIONS(933), - [anon_sym_GT] = ACTIONS(933), - [anon_sym_QMARK] = ACTIONS(933), - [anon_sym_AT] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(933), - [anon_sym_BSLASH] = ACTIONS(935), - [anon_sym_RBRACK] = ACTIONS(933), - [anon_sym_CARET] = ACTIONS(933), - [anon_sym__] = ACTIONS(933), - [anon_sym_BQUOTE] = ACTIONS(933), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_RBRACE] = ACTIONS(933), - [anon_sym_TILDE] = ACTIONS(933), - [aux_sym__html_block_1_token1] = ACTIONS(933), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(935), - [anon_sym_LT_QMARK] = ACTIONS(935), - [aux_sym__html_block_4_token1] = ACTIONS(935), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(933), - [aux_sym__html_block_6_token1] = ACTIONS(935), - [aux_sym__html_block_6_token2] = ACTIONS(933), - [sym__open_tag_html_block] = ACTIONS(933), - [sym__open_tag_html_block_newline] = ACTIONS(933), - [sym__closing_tag_html_block] = ACTIONS(933), - [sym__closing_tag_html_block_newline] = ACTIONS(933), - [sym_backslash_escape] = ACTIONS(933), - [sym_entity_reference] = ACTIONS(933), - [sym_numeric_character_reference] = ACTIONS(933), - [sym_uri_autolink] = ACTIONS(933), - [sym_email_autolink] = ACTIONS(933), - [sym__whitespace_ge_2] = ACTIONS(933), - [aux_sym__whitespace_token1] = ACTIONS(935), - [sym__word_no_digit] = ACTIONS(933), - [sym__digits] = ACTIONS(933), - [aux_sym__newline_token1] = ACTIONS(933), - [sym__block_close] = ACTIONS(933), - [sym__block_continuation] = ACTIONS(125), - [sym__block_quote_continuation] = ACTIONS(125), - [sym__block_quote_start] = ACTIONS(933), - [sym__indented_chunk_start] = ACTIONS(933), - [sym_atx_h1_marker] = ACTIONS(933), - [sym_atx_h2_marker] = ACTIONS(933), - [sym_atx_h3_marker] = ACTIONS(933), - [sym_atx_h4_marker] = ACTIONS(933), - [sym_atx_h5_marker] = ACTIONS(933), - [sym_atx_h6_marker] = ACTIONS(933), - [sym__thematic_break] = ACTIONS(933), - [sym__list_marker_minus] = ACTIONS(933), - [sym__list_marker_plus] = ACTIONS(933), - [sym__list_marker_star] = ACTIONS(933), - [sym__list_marker_parenthesis] = ACTIONS(933), - [sym__list_marker_dot] = ACTIONS(933), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(933), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(933), - [sym__list_marker_star_dont_interrupt] = ACTIONS(933), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(933), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(933), - [sym__fenced_code_block_start_backtick] = ACTIONS(933), - [sym__fenced_code_block_start_tilde] = ACTIONS(933), - [sym__blank_line_start] = ACTIONS(933), - [sym__code_span_start] = ACTIONS(933), - [sym__emphasis_open_star] = ACTIONS(933), - [sym__emphasis_open_underscore] = ACTIONS(933), - [sym__last_token_whitespace] = ACTIONS(125), - }, - [206] = { - [sym__soft_line_break] = STATE(899), - [sym__paragraph_end_newline] = STATE(338), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), - [sym__whitespace] = STATE(899), - [sym__word] = STATE(899), - [sym__newline] = STATE(86), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(304), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(7), - [anon_sym_DOLLAR] = ACTIONS(7), - [anon_sym_PERCENT] = ACTIONS(7), - [anon_sym_AMP] = ACTIONS(9), - [anon_sym_SQUOTE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(7), - [anon_sym_RPAREN] = ACTIONS(7), - [anon_sym_STAR] = ACTIONS(7), - [anon_sym_PLUS] = ACTIONS(7), - [anon_sym_COMMA] = ACTIONS(7), - [anon_sym_DASH] = ACTIONS(7), - [anon_sym_DOT] = ACTIONS(7), - [anon_sym_SLASH] = ACTIONS(7), - [anon_sym_COLON] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(7), - [anon_sym_LT] = ACTIONS(11), - [anon_sym_EQ] = ACTIONS(7), - [anon_sym_GT] = ACTIONS(7), - [anon_sym_QMARK] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(846), - [anon_sym_BSLASH] = ACTIONS(15), - [anon_sym_RBRACK] = ACTIONS(7), - [anon_sym_CARET] = ACTIONS(7), - [anon_sym__] = ACTIONS(7), - [anon_sym_BQUOTE] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_PIPE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(7), - [anon_sym_TILDE] = ACTIONS(7), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(848), - [anon_sym_LT_QMARK] = ACTIONS(850), - [aux_sym__html_block_4_token1] = ACTIONS(852), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(854), - [sym_backslash_escape] = ACTIONS(35), - [sym_entity_reference] = ACTIONS(35), - [sym_numeric_character_reference] = ACTIONS(35), - [sym_uri_autolink] = ACTIONS(35), - [sym_email_autolink] = ACTIONS(35), - [sym__whitespace_ge_2] = ACTIONS(856), - [aux_sym__whitespace_token1] = ACTIONS(858), - [sym__word_no_digit] = ACTIONS(35), - [sym__digits] = ACTIONS(35), - [aux_sym__newline_token1] = ACTIONS(968), - [sym__code_span_start] = ACTIONS(69), - [sym__emphasis_open_star] = ACTIONS(71), - [sym__emphasis_open_underscore] = ACTIONS(73), - }, - [207] = { - [aux_sym__ignore_matching_tokens] = STATE(166), - [anon_sym_BANG] = ACTIONS(951), - [anon_sym_DQUOTE] = ACTIONS(951), - [anon_sym_POUND] = ACTIONS(951), - [anon_sym_DOLLAR] = ACTIONS(951), - [anon_sym_PERCENT] = ACTIONS(951), - [anon_sym_AMP] = ACTIONS(953), - [anon_sym_SQUOTE] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(951), - [anon_sym_RPAREN] = ACTIONS(951), - [anon_sym_STAR] = ACTIONS(951), - [anon_sym_PLUS] = ACTIONS(951), - [anon_sym_COMMA] = ACTIONS(951), - [anon_sym_DASH] = ACTIONS(951), - [anon_sym_DOT] = ACTIONS(951), - [anon_sym_SLASH] = ACTIONS(951), - [anon_sym_COLON] = ACTIONS(951), - [anon_sym_SEMI] = ACTIONS(951), - [anon_sym_LT] = ACTIONS(953), - [anon_sym_EQ] = ACTIONS(951), - [anon_sym_GT] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(951), - [anon_sym_AT] = ACTIONS(951), - [anon_sym_LBRACK] = ACTIONS(951), - [anon_sym_BSLASH] = ACTIONS(953), - [anon_sym_RBRACK] = ACTIONS(951), - [anon_sym_CARET] = ACTIONS(951), - [anon_sym__] = ACTIONS(951), - [anon_sym_BQUOTE] = ACTIONS(951), - [anon_sym_LBRACE] = ACTIONS(951), - [anon_sym_PIPE] = ACTIONS(951), - [anon_sym_RBRACE] = ACTIONS(951), - [anon_sym_TILDE] = ACTIONS(951), - [aux_sym__html_block_1_token1] = ACTIONS(951), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(953), - [anon_sym_LT_QMARK] = ACTIONS(953), - [aux_sym__html_block_4_token1] = ACTIONS(953), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(951), - [aux_sym__html_block_6_token1] = ACTIONS(953), - [aux_sym__html_block_6_token2] = ACTIONS(951), - [sym__open_tag_html_block] = ACTIONS(951), - [sym__open_tag_html_block_newline] = ACTIONS(951), - [sym__closing_tag_html_block] = ACTIONS(951), - [sym__closing_tag_html_block_newline] = ACTIONS(951), - [sym_backslash_escape] = ACTIONS(951), - [sym_entity_reference] = ACTIONS(951), - [sym_numeric_character_reference] = ACTIONS(951), - [sym_uri_autolink] = ACTIONS(951), - [sym_email_autolink] = ACTIONS(951), - [sym__whitespace_ge_2] = ACTIONS(951), - [aux_sym__whitespace_token1] = ACTIONS(953), - [sym__word_no_digit] = ACTIONS(951), - [sym__digits] = ACTIONS(951), - [aux_sym__newline_token1] = ACTIONS(951), - [sym__block_close] = ACTIONS(951), - [sym__block_continuation] = ACTIONS(970), - [sym__block_quote_continuation] = ACTIONS(970), - [sym__block_quote_start] = ACTIONS(951), - [sym__indented_chunk_start] = ACTIONS(951), - [sym_atx_h1_marker] = ACTIONS(951), - [sym_atx_h2_marker] = ACTIONS(951), - [sym_atx_h3_marker] = ACTIONS(951), - [sym_atx_h4_marker] = ACTIONS(951), - [sym_atx_h5_marker] = ACTIONS(951), - [sym_atx_h6_marker] = ACTIONS(951), - [sym__thematic_break] = ACTIONS(951), - [sym__list_marker_minus] = ACTIONS(951), - [sym__list_marker_plus] = ACTIONS(951), - [sym__list_marker_star] = ACTIONS(951), - [sym__list_marker_parenthesis] = ACTIONS(951), - [sym__list_marker_dot] = ACTIONS(951), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(951), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(951), - [sym__list_marker_star_dont_interrupt] = ACTIONS(951), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(951), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(951), - [sym__fenced_code_block_start_backtick] = ACTIONS(951), - [sym__fenced_code_block_start_tilde] = ACTIONS(951), - [sym__blank_line_start] = ACTIONS(951), - [sym__code_span_start] = ACTIONS(951), - [sym__emphasis_open_star] = ACTIONS(951), - [sym__emphasis_open_underscore] = ACTIONS(951), - [sym__last_token_whitespace] = ACTIONS(970), - }, - [208] = { - [aux_sym__ignore_matching_tokens] = STATE(229), - [ts_builtin_sym_end] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(811), - [anon_sym_DQUOTE] = ACTIONS(811), - [anon_sym_POUND] = ACTIONS(811), - [anon_sym_DOLLAR] = ACTIONS(811), - [anon_sym_PERCENT] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(813), - [anon_sym_SQUOTE] = ACTIONS(811), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_RPAREN] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_PLUS] = ACTIONS(811), - [anon_sym_COMMA] = ACTIONS(811), - [anon_sym_DASH] = ACTIONS(811), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_SLASH] = ACTIONS(811), - [anon_sym_COLON] = ACTIONS(811), - [anon_sym_SEMI] = ACTIONS(811), - [anon_sym_LT] = ACTIONS(813), - [anon_sym_EQ] = ACTIONS(811), - [anon_sym_GT] = ACTIONS(811), - [anon_sym_QMARK] = ACTIONS(811), - [anon_sym_AT] = ACTIONS(811), - [anon_sym_LBRACK] = ACTIONS(811), - [anon_sym_BSLASH] = ACTIONS(813), - [anon_sym_RBRACK] = ACTIONS(811), - [anon_sym_CARET] = ACTIONS(811), - [anon_sym__] = ACTIONS(811), - [anon_sym_BQUOTE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(811), - [anon_sym_PIPE] = ACTIONS(811), - [anon_sym_RBRACE] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(811), - [aux_sym__html_block_1_token1] = ACTIONS(811), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(813), - [anon_sym_LT_QMARK] = ACTIONS(813), - [aux_sym__html_block_4_token1] = ACTIONS(813), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(811), - [aux_sym__html_block_6_token1] = ACTIONS(813), - [aux_sym__html_block_6_token2] = ACTIONS(811), - [sym__open_tag_html_block] = ACTIONS(811), - [sym__open_tag_html_block_newline] = ACTIONS(811), - [sym__closing_tag_html_block] = ACTIONS(811), - [sym__closing_tag_html_block_newline] = ACTIONS(811), - [sym_backslash_escape] = ACTIONS(811), - [sym_entity_reference] = ACTIONS(811), - [sym_numeric_character_reference] = ACTIONS(811), - [sym_uri_autolink] = ACTIONS(811), - [sym_email_autolink] = ACTIONS(811), - [sym__whitespace_ge_2] = ACTIONS(811), - [aux_sym__whitespace_token1] = ACTIONS(813), - [sym__word_no_digit] = ACTIONS(811), - [sym__digits] = ACTIONS(811), - [aux_sym__newline_token1] = ACTIONS(811), - [sym__block_continuation] = ACTIONS(972), - [sym__block_quote_continuation] = ACTIONS(972), - [sym__block_quote_start] = ACTIONS(811), - [sym__indented_chunk_start] = ACTIONS(811), - [sym_atx_h1_marker] = ACTIONS(811), - [sym_atx_h2_marker] = ACTIONS(811), - [sym_atx_h3_marker] = ACTIONS(811), - [sym_atx_h4_marker] = ACTIONS(811), - [sym_atx_h5_marker] = ACTIONS(811), - [sym_atx_h6_marker] = ACTIONS(811), - [sym__thematic_break] = ACTIONS(811), - [sym__list_marker_minus] = ACTIONS(811), - [sym__list_marker_plus] = ACTIONS(811), - [sym__list_marker_star] = ACTIONS(811), - [sym__list_marker_parenthesis] = ACTIONS(811), - [sym__list_marker_dot] = ACTIONS(811), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(811), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(811), - [sym__list_marker_star_dont_interrupt] = ACTIONS(811), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(811), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(811), - [sym__fenced_code_block_start_backtick] = ACTIONS(811), - [sym__fenced_code_block_start_tilde] = ACTIONS(811), - [sym__blank_line_start] = ACTIONS(811), - [sym__code_span_start] = ACTIONS(811), - [sym__emphasis_open_star] = ACTIONS(811), - [sym__emphasis_open_underscore] = ACTIONS(811), - [sym__last_token_whitespace] = ACTIONS(972), - }, - [209] = { - [aux_sym__ignore_matching_tokens] = STATE(202), - [ts_builtin_sym_end] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(811), - [anon_sym_DQUOTE] = ACTIONS(811), - [anon_sym_POUND] = ACTIONS(811), - [anon_sym_DOLLAR] = ACTIONS(811), - [anon_sym_PERCENT] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(813), - [anon_sym_SQUOTE] = ACTIONS(811), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_RPAREN] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_PLUS] = ACTIONS(811), - [anon_sym_COMMA] = ACTIONS(811), - [anon_sym_DASH] = ACTIONS(811), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_SLASH] = ACTIONS(811), - [anon_sym_COLON] = ACTIONS(811), - [anon_sym_SEMI] = ACTIONS(811), - [anon_sym_LT] = ACTIONS(813), - [anon_sym_EQ] = ACTIONS(811), - [anon_sym_GT] = ACTIONS(811), - [anon_sym_QMARK] = ACTIONS(811), - [anon_sym_AT] = ACTIONS(811), - [anon_sym_LBRACK] = ACTIONS(811), - [anon_sym_BSLASH] = ACTIONS(813), - [anon_sym_RBRACK] = ACTIONS(811), - [anon_sym_CARET] = ACTIONS(811), - [anon_sym__] = ACTIONS(811), - [anon_sym_BQUOTE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(811), - [anon_sym_PIPE] = ACTIONS(811), - [anon_sym_RBRACE] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(811), - [aux_sym__html_block_1_token1] = ACTIONS(811), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(813), - [anon_sym_LT_QMARK] = ACTIONS(813), - [aux_sym__html_block_4_token1] = ACTIONS(813), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(811), - [aux_sym__html_block_6_token1] = ACTIONS(813), - [aux_sym__html_block_6_token2] = ACTIONS(811), - [sym__open_tag_html_block] = ACTIONS(811), - [sym__open_tag_html_block_newline] = ACTIONS(811), - [sym__closing_tag_html_block] = ACTIONS(811), - [sym__closing_tag_html_block_newline] = ACTIONS(811), - [sym_backslash_escape] = ACTIONS(811), - [sym_entity_reference] = ACTIONS(811), - [sym_numeric_character_reference] = ACTIONS(811), - [sym_uri_autolink] = ACTIONS(811), - [sym_email_autolink] = ACTIONS(811), - [sym__whitespace_ge_2] = ACTIONS(811), - [aux_sym__whitespace_token1] = ACTIONS(813), - [sym__word_no_digit] = ACTIONS(811), - [sym__digits] = ACTIONS(811), - [aux_sym__newline_token1] = ACTIONS(811), - [sym__block_continuation] = ACTIONS(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(811), - [sym__indented_chunk_start] = ACTIONS(811), - [sym_atx_h1_marker] = ACTIONS(811), - [sym_atx_h2_marker] = ACTIONS(811), - [sym_atx_h3_marker] = ACTIONS(811), - [sym_atx_h4_marker] = ACTIONS(811), - [sym_atx_h5_marker] = ACTIONS(811), - [sym_atx_h6_marker] = ACTIONS(811), - [sym__thematic_break] = ACTIONS(811), - [sym__list_marker_minus] = ACTIONS(811), - [sym__list_marker_plus] = ACTIONS(811), - [sym__list_marker_star] = ACTIONS(811), - [sym__list_marker_parenthesis] = ACTIONS(811), - [sym__list_marker_dot] = ACTIONS(811), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(811), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(811), - [sym__list_marker_star_dont_interrupt] = ACTIONS(811), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(811), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(811), - [sym__fenced_code_block_start_backtick] = ACTIONS(811), - [sym__fenced_code_block_start_tilde] = ACTIONS(811), - [sym__blank_line_start] = ACTIONS(811), - [sym__code_span_start] = ACTIONS(811), - [sym__emphasis_open_star] = ACTIONS(811), - [sym__emphasis_open_underscore] = ACTIONS(811), - [sym__last_token_whitespace] = ACTIONS(111), - }, - [210] = { - [aux_sym__ignore_matching_tokens] = STATE(213), - [ts_builtin_sym_end] = ACTIONS(974), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_DQUOTE] = ACTIONS(974), - [anon_sym_POUND] = ACTIONS(974), - [anon_sym_DOLLAR] = ACTIONS(974), - [anon_sym_PERCENT] = ACTIONS(974), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_SQUOTE] = ACTIONS(974), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(974), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_COMMA] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_DOT] = ACTIONS(974), - [anon_sym_SLASH] = ACTIONS(974), - [anon_sym_COLON] = ACTIONS(974), - [anon_sym_SEMI] = ACTIONS(974), - [anon_sym_LT] = ACTIONS(976), - [anon_sym_EQ] = ACTIONS(974), - [anon_sym_GT] = ACTIONS(974), - [anon_sym_QMARK] = ACTIONS(974), - [anon_sym_AT] = ACTIONS(974), - [anon_sym_LBRACK] = ACTIONS(974), - [anon_sym_BSLASH] = ACTIONS(976), - [anon_sym_RBRACK] = ACTIONS(974), - [anon_sym_CARET] = ACTIONS(974), - [anon_sym__] = ACTIONS(974), - [anon_sym_BQUOTE] = ACTIONS(974), - [anon_sym_LBRACE] = ACTIONS(974), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RBRACE] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(974), - [aux_sym__html_block_1_token1] = ACTIONS(974), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(976), - [anon_sym_LT_QMARK] = ACTIONS(976), - [aux_sym__html_block_4_token1] = ACTIONS(976), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(974), - [aux_sym__html_block_6_token1] = ACTIONS(976), - [aux_sym__html_block_6_token2] = ACTIONS(974), - [sym__open_tag_html_block] = ACTIONS(974), - [sym__open_tag_html_block_newline] = ACTIONS(974), - [sym__closing_tag_html_block] = ACTIONS(974), - [sym__closing_tag_html_block_newline] = ACTIONS(974), - [sym_backslash_escape] = ACTIONS(974), - [sym_entity_reference] = ACTIONS(974), - [sym_numeric_character_reference] = ACTIONS(974), - [sym_uri_autolink] = ACTIONS(974), - [sym_email_autolink] = ACTIONS(974), - [sym__whitespace_ge_2] = ACTIONS(974), - [aux_sym__whitespace_token1] = ACTIONS(976), - [sym__word_no_digit] = ACTIONS(974), - [sym__digits] = ACTIONS(974), - [aux_sym__newline_token1] = ACTIONS(974), - [sym__block_continuation] = ACTIONS(978), - [sym__block_quote_continuation] = ACTIONS(978), - [sym__block_quote_start] = ACTIONS(974), - [sym__indented_chunk_start] = ACTIONS(974), - [sym_atx_h1_marker] = ACTIONS(974), - [sym_atx_h2_marker] = ACTIONS(974), - [sym_atx_h3_marker] = ACTIONS(974), - [sym_atx_h4_marker] = ACTIONS(974), - [sym_atx_h5_marker] = ACTIONS(974), - [sym_atx_h6_marker] = ACTIONS(974), - [sym__thematic_break] = ACTIONS(974), - [sym__list_marker_minus] = ACTIONS(974), - [sym__list_marker_plus] = ACTIONS(974), - [sym__list_marker_star] = ACTIONS(974), - [sym__list_marker_parenthesis] = ACTIONS(974), - [sym__list_marker_dot] = ACTIONS(974), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(974), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(974), - [sym__list_marker_star_dont_interrupt] = ACTIONS(974), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(974), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(974), - [sym__fenced_code_block_start_backtick] = ACTIONS(974), - [sym__fenced_code_block_start_tilde] = ACTIONS(974), - [sym__blank_line_start] = ACTIONS(974), - [sym__code_span_start] = ACTIONS(974), - [sym__emphasis_open_star] = ACTIONS(974), - [sym__emphasis_open_underscore] = ACTIONS(974), - [sym__last_token_whitespace] = ACTIONS(978), - }, - [211] = { - [aux_sym__ignore_matching_tokens] = STATE(202), - [ts_builtin_sym_end] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_DQUOTE] = ACTIONS(557), - [anon_sym_POUND] = ACTIONS(557), - [anon_sym_DOLLAR] = ACTIONS(557), - [anon_sym_PERCENT] = ACTIONS(557), - [anon_sym_AMP] = ACTIONS(559), - [anon_sym_SQUOTE] = ACTIONS(557), - [anon_sym_LPAREN] = ACTIONS(557), - [anon_sym_RPAREN] = ACTIONS(557), - [anon_sym_STAR] = ACTIONS(557), - [anon_sym_PLUS] = ACTIONS(557), - [anon_sym_COMMA] = ACTIONS(557), - [anon_sym_DASH] = ACTIONS(557), - [anon_sym_DOT] = ACTIONS(557), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_COLON] = ACTIONS(557), - [anon_sym_SEMI] = ACTIONS(557), - [anon_sym_LT] = ACTIONS(559), - [anon_sym_EQ] = ACTIONS(557), - [anon_sym_GT] = ACTIONS(557), - [anon_sym_QMARK] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(557), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_BSLASH] = ACTIONS(559), - [anon_sym_RBRACK] = ACTIONS(557), - [anon_sym_CARET] = ACTIONS(557), - [anon_sym__] = ACTIONS(557), - [anon_sym_BQUOTE] = ACTIONS(557), - [anon_sym_LBRACE] = ACTIONS(557), - [anon_sym_PIPE] = ACTIONS(557), - [anon_sym_RBRACE] = ACTIONS(557), - [anon_sym_TILDE] = ACTIONS(557), - [aux_sym__html_block_1_token1] = ACTIONS(557), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(559), - [anon_sym_LT_QMARK] = ACTIONS(559), - [aux_sym__html_block_4_token1] = ACTIONS(559), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(557), - [aux_sym__html_block_6_token1] = ACTIONS(559), - [aux_sym__html_block_6_token2] = ACTIONS(557), - [sym__open_tag_html_block] = ACTIONS(557), - [sym__open_tag_html_block_newline] = ACTIONS(557), - [sym__closing_tag_html_block] = ACTIONS(557), - [sym__closing_tag_html_block_newline] = ACTIONS(557), - [sym_backslash_escape] = ACTIONS(557), - [sym_entity_reference] = ACTIONS(557), - [sym_numeric_character_reference] = ACTIONS(557), - [sym_uri_autolink] = ACTIONS(557), - [sym_email_autolink] = ACTIONS(557), - [sym__whitespace_ge_2] = ACTIONS(557), - [aux_sym__whitespace_token1] = ACTIONS(559), - [sym__word_no_digit] = ACTIONS(557), - [sym__digits] = ACTIONS(557), - [aux_sym__newline_token1] = ACTIONS(557), - [sym__block_continuation] = ACTIONS(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(557), - [sym__indented_chunk_start] = ACTIONS(557), - [sym_atx_h1_marker] = ACTIONS(557), - [sym_atx_h2_marker] = ACTIONS(557), - [sym_atx_h3_marker] = ACTIONS(557), - [sym_atx_h4_marker] = ACTIONS(557), - [sym_atx_h5_marker] = ACTIONS(557), - [sym_atx_h6_marker] = ACTIONS(557), - [sym__thematic_break] = ACTIONS(557), - [sym__list_marker_minus] = ACTIONS(557), - [sym__list_marker_plus] = ACTIONS(557), - [sym__list_marker_star] = ACTIONS(557), - [sym__list_marker_parenthesis] = ACTIONS(557), - [sym__list_marker_dot] = ACTIONS(557), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(557), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(557), - [sym__list_marker_star_dont_interrupt] = ACTIONS(557), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(557), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(557), - [sym__fenced_code_block_start_backtick] = ACTIONS(557), - [sym__fenced_code_block_start_tilde] = ACTIONS(557), - [sym__blank_line_start] = ACTIONS(557), - [sym__code_span_start] = ACTIONS(557), - [sym__emphasis_open_star] = ACTIONS(557), - [sym__emphasis_open_underscore] = ACTIONS(557), - [sym__last_token_whitespace] = ACTIONS(111), - }, - [212] = { - [aux_sym__ignore_matching_tokens] = STATE(202), - [ts_builtin_sym_end] = ACTIONS(980), - [anon_sym_BANG] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(980), - [anon_sym_POUND] = ACTIONS(980), - [anon_sym_DOLLAR] = ACTIONS(980), - [anon_sym_PERCENT] = ACTIONS(980), - [anon_sym_AMP] = ACTIONS(982), - [anon_sym_SQUOTE] = ACTIONS(980), - [anon_sym_LPAREN] = ACTIONS(980), - [anon_sym_RPAREN] = ACTIONS(980), - [anon_sym_STAR] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_COMMA] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_DOT] = ACTIONS(980), - [anon_sym_SLASH] = ACTIONS(980), - [anon_sym_COLON] = ACTIONS(980), - [anon_sym_SEMI] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(982), - [anon_sym_EQ] = ACTIONS(980), - [anon_sym_GT] = ACTIONS(980), - [anon_sym_QMARK] = ACTIONS(980), - [anon_sym_AT] = ACTIONS(980), - [anon_sym_LBRACK] = ACTIONS(980), - [anon_sym_BSLASH] = ACTIONS(982), - [anon_sym_RBRACK] = ACTIONS(980), - [anon_sym_CARET] = ACTIONS(980), - [anon_sym__] = ACTIONS(980), - [anon_sym_BQUOTE] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(980), - [anon_sym_PIPE] = ACTIONS(980), - [anon_sym_RBRACE] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(980), - [aux_sym__html_block_1_token1] = ACTIONS(980), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(982), - [anon_sym_LT_QMARK] = ACTIONS(982), - [aux_sym__html_block_4_token1] = ACTIONS(982), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(980), - [aux_sym__html_block_6_token1] = ACTIONS(982), - [aux_sym__html_block_6_token2] = ACTIONS(980), - [sym__open_tag_html_block] = ACTIONS(980), - [sym__open_tag_html_block_newline] = ACTIONS(980), - [sym__closing_tag_html_block] = ACTIONS(980), - [sym__closing_tag_html_block_newline] = ACTIONS(980), - [sym_backslash_escape] = ACTIONS(980), - [sym_entity_reference] = ACTIONS(980), - [sym_numeric_character_reference] = ACTIONS(980), - [sym_uri_autolink] = ACTIONS(980), - [sym_email_autolink] = ACTIONS(980), - [sym__whitespace_ge_2] = ACTIONS(980), - [aux_sym__whitespace_token1] = ACTIONS(982), - [sym__word_no_digit] = ACTIONS(980), - [sym__digits] = ACTIONS(980), - [aux_sym__newline_token1] = ACTIONS(980), - [sym__block_continuation] = ACTIONS(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(980), - [sym__indented_chunk_start] = ACTIONS(980), - [sym_atx_h1_marker] = ACTIONS(980), - [sym_atx_h2_marker] = ACTIONS(980), - [sym_atx_h3_marker] = ACTIONS(980), - [sym_atx_h4_marker] = ACTIONS(980), - [sym_atx_h5_marker] = ACTIONS(980), - [sym_atx_h6_marker] = ACTIONS(980), - [sym__thematic_break] = ACTIONS(980), - [sym__list_marker_minus] = ACTIONS(980), - [sym__list_marker_plus] = ACTIONS(980), - [sym__list_marker_star] = ACTIONS(980), - [sym__list_marker_parenthesis] = ACTIONS(980), - [sym__list_marker_dot] = ACTIONS(980), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(980), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(980), - [sym__list_marker_star_dont_interrupt] = ACTIONS(980), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(980), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(980), - [sym__fenced_code_block_start_backtick] = ACTIONS(980), - [sym__fenced_code_block_start_tilde] = ACTIONS(980), - [sym__blank_line_start] = ACTIONS(980), - [sym__code_span_start] = ACTIONS(980), - [sym__emphasis_open_star] = ACTIONS(980), - [sym__emphasis_open_underscore] = ACTIONS(980), - [sym__last_token_whitespace] = ACTIONS(111), - }, - [213] = { - [aux_sym__ignore_matching_tokens] = STATE(202), - [ts_builtin_sym_end] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(984), - [anon_sym_POUND] = ACTIONS(984), - [anon_sym_DOLLAR] = ACTIONS(984), - [anon_sym_PERCENT] = ACTIONS(984), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SQUOTE] = ACTIONS(984), - [anon_sym_LPAREN] = ACTIONS(984), - [anon_sym_RPAREN] = ACTIONS(984), - [anon_sym_STAR] = ACTIONS(984), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_COMMA] = ACTIONS(984), - [anon_sym_DASH] = ACTIONS(984), - [anon_sym_DOT] = ACTIONS(984), - [anon_sym_SLASH] = ACTIONS(984), - [anon_sym_COLON] = ACTIONS(984), - [anon_sym_SEMI] = ACTIONS(984), - [anon_sym_LT] = ACTIONS(986), - [anon_sym_EQ] = ACTIONS(984), - [anon_sym_GT] = ACTIONS(984), - [anon_sym_QMARK] = ACTIONS(984), - [anon_sym_AT] = ACTIONS(984), - [anon_sym_LBRACK] = ACTIONS(984), - [anon_sym_BSLASH] = ACTIONS(986), - [anon_sym_RBRACK] = ACTIONS(984), - [anon_sym_CARET] = ACTIONS(984), - [anon_sym__] = ACTIONS(984), - [anon_sym_BQUOTE] = ACTIONS(984), - [anon_sym_LBRACE] = ACTIONS(984), - [anon_sym_PIPE] = ACTIONS(984), - [anon_sym_RBRACE] = ACTIONS(984), - [anon_sym_TILDE] = ACTIONS(984), - [aux_sym__html_block_1_token1] = ACTIONS(984), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(986), - [anon_sym_LT_QMARK] = ACTIONS(986), - [aux_sym__html_block_4_token1] = ACTIONS(986), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(984), - [aux_sym__html_block_6_token1] = ACTIONS(986), - [aux_sym__html_block_6_token2] = ACTIONS(984), - [sym__open_tag_html_block] = ACTIONS(984), - [sym__open_tag_html_block_newline] = ACTIONS(984), - [sym__closing_tag_html_block] = ACTIONS(984), - [sym__closing_tag_html_block_newline] = ACTIONS(984), - [sym_backslash_escape] = ACTIONS(984), - [sym_entity_reference] = ACTIONS(984), - [sym_numeric_character_reference] = ACTIONS(984), - [sym_uri_autolink] = ACTIONS(984), - [sym_email_autolink] = ACTIONS(984), - [sym__whitespace_ge_2] = ACTIONS(984), - [aux_sym__whitespace_token1] = ACTIONS(986), - [sym__word_no_digit] = ACTIONS(984), - [sym__digits] = ACTIONS(984), - [aux_sym__newline_token1] = ACTIONS(984), - [sym__block_continuation] = ACTIONS(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(984), - [sym__indented_chunk_start] = ACTIONS(984), - [sym_atx_h1_marker] = ACTIONS(984), - [sym_atx_h2_marker] = ACTIONS(984), - [sym_atx_h3_marker] = ACTIONS(984), - [sym_atx_h4_marker] = ACTIONS(984), - [sym_atx_h5_marker] = ACTIONS(984), - [sym_atx_h6_marker] = ACTIONS(984), - [sym__thematic_break] = ACTIONS(984), - [sym__list_marker_minus] = ACTIONS(984), - [sym__list_marker_plus] = ACTIONS(984), - [sym__list_marker_star] = ACTIONS(984), - [sym__list_marker_parenthesis] = ACTIONS(984), - [sym__list_marker_dot] = ACTIONS(984), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(984), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(984), - [sym__list_marker_star_dont_interrupt] = ACTIONS(984), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(984), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(984), - [sym__fenced_code_block_start_backtick] = ACTIONS(984), - [sym__fenced_code_block_start_tilde] = ACTIONS(984), - [sym__blank_line_start] = ACTIONS(984), - [sym__code_span_start] = ACTIONS(984), - [sym__emphasis_open_star] = ACTIONS(984), - [sym__emphasis_open_underscore] = ACTIONS(984), - [sym__last_token_whitespace] = ACTIONS(111), - }, - [214] = { - [aux_sym__ignore_matching_tokens] = STATE(220), - [ts_builtin_sym_end] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(984), - [anon_sym_POUND] = ACTIONS(984), - [anon_sym_DOLLAR] = ACTIONS(984), - [anon_sym_PERCENT] = ACTIONS(984), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SQUOTE] = ACTIONS(984), - [anon_sym_LPAREN] = ACTIONS(984), - [anon_sym_RPAREN] = ACTIONS(984), - [anon_sym_STAR] = ACTIONS(984), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_COMMA] = ACTIONS(984), - [anon_sym_DASH] = ACTIONS(984), - [anon_sym_DOT] = ACTIONS(984), - [anon_sym_SLASH] = ACTIONS(984), - [anon_sym_COLON] = ACTIONS(984), - [anon_sym_SEMI] = ACTIONS(984), - [anon_sym_LT] = ACTIONS(986), - [anon_sym_EQ] = ACTIONS(984), - [anon_sym_GT] = ACTIONS(984), - [anon_sym_QMARK] = ACTIONS(984), - [anon_sym_AT] = ACTIONS(984), - [anon_sym_LBRACK] = ACTIONS(984), - [anon_sym_BSLASH] = ACTIONS(986), - [anon_sym_RBRACK] = ACTIONS(984), - [anon_sym_CARET] = ACTIONS(984), - [anon_sym__] = ACTIONS(984), - [anon_sym_BQUOTE] = ACTIONS(984), - [anon_sym_LBRACE] = ACTIONS(984), - [anon_sym_PIPE] = ACTIONS(984), - [anon_sym_RBRACE] = ACTIONS(984), - [anon_sym_TILDE] = ACTIONS(984), - [aux_sym__html_block_1_token1] = ACTIONS(984), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(986), - [anon_sym_LT_QMARK] = ACTIONS(986), - [aux_sym__html_block_4_token1] = ACTIONS(986), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(984), - [aux_sym__html_block_6_token1] = ACTIONS(986), - [aux_sym__html_block_6_token2] = ACTIONS(984), - [sym__open_tag_html_block] = ACTIONS(984), - [sym__open_tag_html_block_newline] = ACTIONS(984), - [sym__closing_tag_html_block] = ACTIONS(984), - [sym__closing_tag_html_block_newline] = ACTIONS(984), - [sym_backslash_escape] = ACTIONS(984), - [sym_entity_reference] = ACTIONS(984), - [sym_numeric_character_reference] = ACTIONS(984), - [sym_uri_autolink] = ACTIONS(984), - [sym_email_autolink] = ACTIONS(984), - [sym__whitespace_ge_2] = ACTIONS(984), - [aux_sym__whitespace_token1] = ACTIONS(986), - [sym__word_no_digit] = ACTIONS(984), - [sym__digits] = ACTIONS(984), - [aux_sym__newline_token1] = ACTIONS(984), - [sym__block_continuation] = ACTIONS(988), - [sym__block_quote_continuation] = ACTIONS(988), - [sym__block_quote_start] = ACTIONS(984), - [sym__indented_chunk_start] = ACTIONS(984), - [sym_atx_h1_marker] = ACTIONS(984), - [sym_atx_h2_marker] = ACTIONS(984), - [sym_atx_h3_marker] = ACTIONS(984), - [sym_atx_h4_marker] = ACTIONS(984), - [sym_atx_h5_marker] = ACTIONS(984), - [sym_atx_h6_marker] = ACTIONS(984), - [sym__thematic_break] = ACTIONS(984), - [sym__list_marker_minus] = ACTIONS(984), - [sym__list_marker_plus] = ACTIONS(984), - [sym__list_marker_star] = ACTIONS(984), - [sym__list_marker_parenthesis] = ACTIONS(984), - [sym__list_marker_dot] = ACTIONS(984), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(984), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(984), - [sym__list_marker_star_dont_interrupt] = ACTIONS(984), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(984), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(984), - [sym__fenced_code_block_start_backtick] = ACTIONS(984), - [sym__fenced_code_block_start_tilde] = ACTIONS(984), - [sym__blank_line_start] = ACTIONS(984), - [sym__code_span_start] = ACTIONS(984), - [sym__emphasis_open_star] = ACTIONS(984), - [sym__emphasis_open_underscore] = ACTIONS(984), - [sym__last_token_whitespace] = ACTIONS(988), - }, - [215] = { - [aux_sym__ignore_matching_tokens] = STATE(275), - [anon_sym_BANG] = ACTIONS(951), - [anon_sym_DQUOTE] = ACTIONS(951), - [anon_sym_POUND] = ACTIONS(951), - [anon_sym_DOLLAR] = ACTIONS(951), - [anon_sym_PERCENT] = ACTIONS(951), - [anon_sym_AMP] = ACTIONS(953), - [anon_sym_SQUOTE] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(951), - [anon_sym_RPAREN] = ACTIONS(951), - [anon_sym_STAR] = ACTIONS(951), - [anon_sym_PLUS] = ACTIONS(951), - [anon_sym_COMMA] = ACTIONS(951), - [anon_sym_DASH] = ACTIONS(951), - [anon_sym_DOT] = ACTIONS(951), - [anon_sym_SLASH] = ACTIONS(951), - [anon_sym_COLON] = ACTIONS(951), - [anon_sym_SEMI] = ACTIONS(951), - [anon_sym_LT] = ACTIONS(953), - [anon_sym_EQ] = ACTIONS(951), - [anon_sym_GT] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(951), - [anon_sym_AT] = ACTIONS(951), - [anon_sym_LBRACK] = ACTIONS(951), - [anon_sym_BSLASH] = ACTIONS(953), - [anon_sym_RBRACK] = ACTIONS(951), - [anon_sym_CARET] = ACTIONS(951), - [anon_sym__] = ACTIONS(951), - [anon_sym_BQUOTE] = ACTIONS(951), - [anon_sym_LBRACE] = ACTIONS(951), - [anon_sym_PIPE] = ACTIONS(951), - [anon_sym_RBRACE] = ACTIONS(951), - [anon_sym_TILDE] = ACTIONS(951), - [aux_sym__html_block_1_token1] = ACTIONS(951), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(953), - [anon_sym_LT_QMARK] = ACTIONS(953), - [aux_sym__html_block_4_token1] = ACTIONS(953), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(951), - [aux_sym__html_block_6_token1] = ACTIONS(953), - [aux_sym__html_block_6_token2] = ACTIONS(951), - [sym__open_tag_html_block] = ACTIONS(951), - [sym__open_tag_html_block_newline] = ACTIONS(951), - [sym__closing_tag_html_block] = ACTIONS(951), - [sym__closing_tag_html_block_newline] = ACTIONS(951), - [sym_backslash_escape] = ACTIONS(951), - [sym_entity_reference] = ACTIONS(951), - [sym_numeric_character_reference] = ACTIONS(951), - [sym_uri_autolink] = ACTIONS(951), - [sym_email_autolink] = ACTIONS(951), - [sym__whitespace_ge_2] = ACTIONS(951), - [aux_sym__whitespace_token1] = ACTIONS(953), - [sym__word_no_digit] = ACTIONS(951), - [sym__digits] = ACTIONS(951), - [aux_sym__newline_token1] = ACTIONS(951), - [sym__block_close] = ACTIONS(951), - [sym__block_continuation] = ACTIONS(125), - [sym__block_quote_continuation] = ACTIONS(125), - [sym__block_quote_start] = ACTIONS(951), - [sym__indented_chunk_start] = ACTIONS(951), - [sym_atx_h1_marker] = ACTIONS(951), - [sym_atx_h2_marker] = ACTIONS(951), - [sym_atx_h3_marker] = ACTIONS(951), - [sym_atx_h4_marker] = ACTIONS(951), - [sym_atx_h5_marker] = ACTIONS(951), - [sym_atx_h6_marker] = ACTIONS(951), - [sym__thematic_break] = ACTIONS(951), - [sym__list_marker_minus] = ACTIONS(951), - [sym__list_marker_plus] = ACTIONS(951), - [sym__list_marker_star] = ACTIONS(951), - [sym__list_marker_parenthesis] = ACTIONS(951), - [sym__list_marker_dot] = ACTIONS(951), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(951), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(951), - [sym__list_marker_star_dont_interrupt] = ACTIONS(951), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(951), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(951), - [sym__fenced_code_block_start_backtick] = ACTIONS(951), - [sym__fenced_code_block_start_tilde] = ACTIONS(951), - [sym__blank_line_start] = ACTIONS(951), - [sym__code_span_start] = ACTIONS(951), - [sym__emphasis_open_star] = ACTIONS(951), - [sym__emphasis_open_underscore] = ACTIONS(951), - [sym__last_token_whitespace] = ACTIONS(125), - }, - [216] = { - [aux_sym__ignore_matching_tokens] = STATE(202), - [ts_builtin_sym_end] = 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), - [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(990), - [sym_numeric_character_reference] = ACTIONS(990), - [sym_uri_autolink] = ACTIONS(990), - [sym_email_autolink] = 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(111), - [sym__block_quote_continuation] = ACTIONS(111), - [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__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__emphasis_open_star] = ACTIONS(990), - [sym__emphasis_open_underscore] = ACTIONS(990), - [sym__last_token_whitespace] = ACTIONS(111), - }, - [217] = { - [aux_sym__ignore_matching_tokens] = STATE(234), - [ts_builtin_sym_end] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_DQUOTE] = ACTIONS(389), - [anon_sym_POUND] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(389), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_RPAREN] = ACTIONS(389), - [anon_sym_STAR] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_COMMA] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_DOT] = ACTIONS(389), - [anon_sym_SLASH] = ACTIONS(389), - [anon_sym_COLON] = ACTIONS(389), - [anon_sym_SEMI] = ACTIONS(389), - [anon_sym_LT] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(389), - [anon_sym_GT] = ACTIONS(389), - [anon_sym_QMARK] = ACTIONS(389), - [anon_sym_AT] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_BSLASH] = ACTIONS(391), - [anon_sym_RBRACK] = ACTIONS(389), - [anon_sym_CARET] = ACTIONS(389), - [anon_sym__] = ACTIONS(389), - [anon_sym_BQUOTE] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(389), - [anon_sym_RBRACE] = ACTIONS(389), - [anon_sym_TILDE] = ACTIONS(389), - [aux_sym__html_block_1_token1] = ACTIONS(389), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(391), - [anon_sym_LT_QMARK] = ACTIONS(391), - [aux_sym__html_block_4_token1] = ACTIONS(391), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(389), - [aux_sym__html_block_6_token1] = ACTIONS(391), - [aux_sym__html_block_6_token2] = ACTIONS(389), - [sym__open_tag_html_block] = ACTIONS(389), - [sym__open_tag_html_block_newline] = ACTIONS(389), - [sym__closing_tag_html_block] = ACTIONS(389), - [sym__closing_tag_html_block_newline] = ACTIONS(389), - [sym_backslash_escape] = ACTIONS(389), - [sym_entity_reference] = ACTIONS(389), - [sym_numeric_character_reference] = ACTIONS(389), - [sym_uri_autolink] = ACTIONS(389), - [sym_email_autolink] = ACTIONS(389), - [sym__whitespace_ge_2] = ACTIONS(389), - [aux_sym__whitespace_token1] = ACTIONS(391), - [sym__word_no_digit] = ACTIONS(389), - [sym__digits] = ACTIONS(389), - [aux_sym__newline_token1] = ACTIONS(389), - [sym__block_continuation] = ACTIONS(994), - [sym__block_quote_continuation] = ACTIONS(994), - [sym__block_quote_start] = ACTIONS(389), - [sym__indented_chunk_start] = ACTIONS(389), - [sym_atx_h1_marker] = ACTIONS(389), - [sym_atx_h2_marker] = ACTIONS(389), - [sym_atx_h3_marker] = ACTIONS(389), - [sym_atx_h4_marker] = ACTIONS(389), - [sym_atx_h5_marker] = ACTIONS(389), - [sym_atx_h6_marker] = ACTIONS(389), - [sym__thematic_break] = ACTIONS(389), - [sym__list_marker_minus] = ACTIONS(389), - [sym__list_marker_plus] = ACTIONS(389), - [sym__list_marker_star] = ACTIONS(389), - [sym__list_marker_parenthesis] = ACTIONS(389), - [sym__list_marker_dot] = ACTIONS(389), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(389), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(389), - [sym__list_marker_star_dont_interrupt] = ACTIONS(389), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(389), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(389), - [sym__fenced_code_block_start_backtick] = ACTIONS(389), - [sym__fenced_code_block_start_tilde] = ACTIONS(389), - [sym__blank_line_start] = ACTIONS(389), - [sym__code_span_start] = ACTIONS(389), - [sym__emphasis_open_star] = ACTIONS(389), - [sym__emphasis_open_underscore] = ACTIONS(389), - [sym__last_token_whitespace] = ACTIONS(994), - }, - [218] = { - [aux_sym__ignore_matching_tokens] = STATE(212), - [ts_builtin_sym_end] = 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), - [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(990), - [sym_numeric_character_reference] = ACTIONS(990), - [sym_uri_autolink] = ACTIONS(990), - [sym_email_autolink] = 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(996), - [sym__block_quote_continuation] = ACTIONS(996), - [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__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__emphasis_open_star] = ACTIONS(990), - [sym__emphasis_open_underscore] = ACTIONS(990), - [sym__last_token_whitespace] = ACTIONS(996), - }, - [219] = { - [aux_sym__ignore_matching_tokens] = STATE(105), - [ts_builtin_sym_end] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(998), - [anon_sym_POUND] = ACTIONS(998), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_PERCENT] = ACTIONS(998), - [anon_sym_AMP] = ACTIONS(1000), - [anon_sym_SQUOTE] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(998), - [anon_sym_RPAREN] = ACTIONS(998), - [anon_sym_STAR] = ACTIONS(998), - [anon_sym_PLUS] = ACTIONS(998), - [anon_sym_COMMA] = ACTIONS(998), - [anon_sym_DASH] = ACTIONS(998), - [anon_sym_DOT] = ACTIONS(998), - [anon_sym_SLASH] = ACTIONS(998), - [anon_sym_COLON] = ACTIONS(998), - [anon_sym_SEMI] = ACTIONS(998), - [anon_sym_LT] = ACTIONS(1000), - [anon_sym_EQ] = ACTIONS(998), - [anon_sym_GT] = ACTIONS(998), - [anon_sym_QMARK] = ACTIONS(998), - [anon_sym_AT] = ACTIONS(998), - [anon_sym_LBRACK] = ACTIONS(998), - [anon_sym_BSLASH] = ACTIONS(1000), - [anon_sym_RBRACK] = ACTIONS(998), - [anon_sym_CARET] = ACTIONS(998), - [anon_sym__] = ACTIONS(998), - [anon_sym_BQUOTE] = ACTIONS(998), - [anon_sym_LBRACE] = ACTIONS(998), - [anon_sym_PIPE] = ACTIONS(998), - [anon_sym_RBRACE] = ACTIONS(998), - [anon_sym_TILDE] = ACTIONS(998), - [aux_sym__html_block_1_token1] = ACTIONS(998), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1000), - [anon_sym_LT_QMARK] = ACTIONS(1000), - [aux_sym__html_block_4_token1] = ACTIONS(1000), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(998), - [aux_sym__html_block_6_token1] = ACTIONS(1000), - [aux_sym__html_block_6_token2] = ACTIONS(998), - [sym__open_tag_html_block] = ACTIONS(998), - [sym__open_tag_html_block_newline] = ACTIONS(998), - [sym__closing_tag_html_block] = ACTIONS(998), - [sym__closing_tag_html_block_newline] = ACTIONS(998), - [sym_backslash_escape] = ACTIONS(998), - [sym_entity_reference] = ACTIONS(998), - [sym_numeric_character_reference] = ACTIONS(998), - [sym_uri_autolink] = ACTIONS(998), - [sym_email_autolink] = ACTIONS(998), - [sym__whitespace_ge_2] = ACTIONS(998), - [aux_sym__whitespace_token1] = ACTIONS(1000), - [sym__word_no_digit] = ACTIONS(998), - [sym__digits] = ACTIONS(998), - [aux_sym__newline_token1] = ACTIONS(998), - [sym__block_continuation] = ACTIONS(1002), - [sym__block_quote_continuation] = ACTIONS(1002), - [sym__block_quote_start] = ACTIONS(998), - [sym__indented_chunk_start] = ACTIONS(998), - [sym_atx_h1_marker] = ACTIONS(998), - [sym_atx_h2_marker] = ACTIONS(998), - [sym_atx_h3_marker] = ACTIONS(998), - [sym_atx_h4_marker] = ACTIONS(998), - [sym_atx_h5_marker] = ACTIONS(998), - [sym_atx_h6_marker] = ACTIONS(998), - [sym__thematic_break] = ACTIONS(998), - [sym__list_marker_minus] = ACTIONS(998), - [sym__list_marker_plus] = ACTIONS(998), - [sym__list_marker_star] = ACTIONS(998), - [sym__list_marker_parenthesis] = ACTIONS(998), - [sym__list_marker_dot] = ACTIONS(998), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(998), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(998), - [sym__list_marker_star_dont_interrupt] = ACTIONS(998), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(998), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(998), - [sym__fenced_code_block_start_backtick] = ACTIONS(998), - [sym__fenced_code_block_start_tilde] = ACTIONS(998), - [sym__blank_line_start] = ACTIONS(998), - [sym__code_span_start] = ACTIONS(998), - [sym__emphasis_open_star] = ACTIONS(998), - [sym__emphasis_open_underscore] = ACTIONS(998), - [sym__last_token_whitespace] = ACTIONS(1002), - }, - [220] = { - [aux_sym__ignore_matching_tokens] = STATE(202), - [ts_builtin_sym_end] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(998), - [anon_sym_POUND] = ACTIONS(998), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_PERCENT] = ACTIONS(998), - [anon_sym_AMP] = ACTIONS(1000), - [anon_sym_SQUOTE] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(998), - [anon_sym_RPAREN] = ACTIONS(998), - [anon_sym_STAR] = ACTIONS(998), - [anon_sym_PLUS] = ACTIONS(998), - [anon_sym_COMMA] = ACTIONS(998), - [anon_sym_DASH] = ACTIONS(998), - [anon_sym_DOT] = ACTIONS(998), - [anon_sym_SLASH] = ACTIONS(998), - [anon_sym_COLON] = ACTIONS(998), - [anon_sym_SEMI] = ACTIONS(998), - [anon_sym_LT] = ACTIONS(1000), - [anon_sym_EQ] = ACTIONS(998), - [anon_sym_GT] = ACTIONS(998), - [anon_sym_QMARK] = ACTIONS(998), - [anon_sym_AT] = ACTIONS(998), - [anon_sym_LBRACK] = ACTIONS(998), - [anon_sym_BSLASH] = ACTIONS(1000), - [anon_sym_RBRACK] = ACTIONS(998), - [anon_sym_CARET] = ACTIONS(998), - [anon_sym__] = ACTIONS(998), - [anon_sym_BQUOTE] = ACTIONS(998), - [anon_sym_LBRACE] = ACTIONS(998), - [anon_sym_PIPE] = ACTIONS(998), - [anon_sym_RBRACE] = ACTIONS(998), - [anon_sym_TILDE] = ACTIONS(998), - [aux_sym__html_block_1_token1] = ACTIONS(998), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1000), - [anon_sym_LT_QMARK] = ACTIONS(1000), - [aux_sym__html_block_4_token1] = ACTIONS(1000), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(998), - [aux_sym__html_block_6_token1] = ACTIONS(1000), - [aux_sym__html_block_6_token2] = ACTIONS(998), - [sym__open_tag_html_block] = ACTIONS(998), - [sym__open_tag_html_block_newline] = ACTIONS(998), - [sym__closing_tag_html_block] = ACTIONS(998), - [sym__closing_tag_html_block_newline] = ACTIONS(998), - [sym_backslash_escape] = ACTIONS(998), - [sym_entity_reference] = ACTIONS(998), - [sym_numeric_character_reference] = ACTIONS(998), - [sym_uri_autolink] = ACTIONS(998), - [sym_email_autolink] = ACTIONS(998), - [sym__whitespace_ge_2] = ACTIONS(998), - [aux_sym__whitespace_token1] = ACTIONS(1000), - [sym__word_no_digit] = ACTIONS(998), - [sym__digits] = ACTIONS(998), - [aux_sym__newline_token1] = ACTIONS(998), - [sym__block_continuation] = ACTIONS(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(998), - [sym__indented_chunk_start] = ACTIONS(998), - [sym_atx_h1_marker] = ACTIONS(998), - [sym_atx_h2_marker] = ACTIONS(998), - [sym_atx_h3_marker] = ACTIONS(998), - [sym_atx_h4_marker] = ACTIONS(998), - [sym_atx_h5_marker] = ACTIONS(998), - [sym_atx_h6_marker] = ACTIONS(998), - [sym__thematic_break] = ACTIONS(998), - [sym__list_marker_minus] = ACTIONS(998), - [sym__list_marker_plus] = ACTIONS(998), - [sym__list_marker_star] = ACTIONS(998), - [sym__list_marker_parenthesis] = ACTIONS(998), - [sym__list_marker_dot] = ACTIONS(998), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(998), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(998), - [sym__list_marker_star_dont_interrupt] = ACTIONS(998), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(998), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(998), - [sym__fenced_code_block_start_backtick] = ACTIONS(998), - [sym__fenced_code_block_start_tilde] = ACTIONS(998), - [sym__blank_line_start] = ACTIONS(998), - [sym__code_span_start] = ACTIONS(998), - [sym__emphasis_open_star] = ACTIONS(998), - [sym__emphasis_open_underscore] = ACTIONS(998), - [sym__last_token_whitespace] = ACTIONS(111), - }, - [221] = { - [aux_sym__ignore_matching_tokens] = STATE(275), - [anon_sym_BANG] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(980), - [anon_sym_POUND] = ACTIONS(980), - [anon_sym_DOLLAR] = ACTIONS(980), - [anon_sym_PERCENT] = ACTIONS(980), - [anon_sym_AMP] = ACTIONS(982), - [anon_sym_SQUOTE] = ACTIONS(980), - [anon_sym_LPAREN] = ACTIONS(980), - [anon_sym_RPAREN] = ACTIONS(980), - [anon_sym_STAR] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_COMMA] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_DOT] = ACTIONS(980), - [anon_sym_SLASH] = ACTIONS(980), - [anon_sym_COLON] = ACTIONS(980), - [anon_sym_SEMI] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(982), - [anon_sym_EQ] = ACTIONS(980), - [anon_sym_GT] = ACTIONS(980), - [anon_sym_QMARK] = ACTIONS(980), - [anon_sym_AT] = ACTIONS(980), - [anon_sym_LBRACK] = ACTIONS(980), - [anon_sym_BSLASH] = ACTIONS(982), - [anon_sym_RBRACK] = ACTIONS(980), - [anon_sym_CARET] = ACTIONS(980), - [anon_sym__] = ACTIONS(980), - [anon_sym_BQUOTE] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(980), - [anon_sym_PIPE] = ACTIONS(980), - [anon_sym_RBRACE] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(980), - [aux_sym__html_block_1_token1] = ACTIONS(980), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(982), - [anon_sym_LT_QMARK] = ACTIONS(982), - [aux_sym__html_block_4_token1] = ACTIONS(982), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(980), - [aux_sym__html_block_6_token1] = ACTIONS(982), - [aux_sym__html_block_6_token2] = ACTIONS(980), - [sym__open_tag_html_block] = ACTIONS(980), - [sym__open_tag_html_block_newline] = ACTIONS(980), - [sym__closing_tag_html_block] = ACTIONS(980), - [sym__closing_tag_html_block_newline] = ACTIONS(980), - [sym_backslash_escape] = ACTIONS(980), - [sym_entity_reference] = ACTIONS(980), - [sym_numeric_character_reference] = ACTIONS(980), - [sym_uri_autolink] = ACTIONS(980), - [sym_email_autolink] = ACTIONS(980), - [sym__whitespace_ge_2] = ACTIONS(980), - [aux_sym__whitespace_token1] = ACTIONS(982), - [sym__word_no_digit] = ACTIONS(980), - [sym__digits] = ACTIONS(980), - [aux_sym__newline_token1] = ACTIONS(980), - [sym__block_close] = ACTIONS(980), - [sym__block_continuation] = ACTIONS(125), - [sym__block_quote_continuation] = ACTIONS(125), - [sym__block_quote_start] = ACTIONS(980), - [sym__indented_chunk_start] = ACTIONS(980), - [sym_atx_h1_marker] = ACTIONS(980), - [sym_atx_h2_marker] = ACTIONS(980), - [sym_atx_h3_marker] = ACTIONS(980), - [sym_atx_h4_marker] = ACTIONS(980), - [sym_atx_h5_marker] = ACTIONS(980), - [sym_atx_h6_marker] = ACTIONS(980), - [sym__thematic_break] = ACTIONS(980), - [sym__list_marker_minus] = ACTIONS(980), - [sym__list_marker_plus] = ACTIONS(980), - [sym__list_marker_star] = ACTIONS(980), - [sym__list_marker_parenthesis] = ACTIONS(980), - [sym__list_marker_dot] = ACTIONS(980), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(980), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(980), - [sym__list_marker_star_dont_interrupt] = ACTIONS(980), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(980), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(980), - [sym__fenced_code_block_start_backtick] = ACTIONS(980), - [sym__fenced_code_block_start_tilde] = ACTIONS(980), - [sym__blank_line_start] = ACTIONS(980), - [sym__code_span_start] = ACTIONS(980), - [sym__emphasis_open_star] = ACTIONS(980), - [sym__emphasis_open_underscore] = ACTIONS(980), - [sym__last_token_whitespace] = ACTIONS(125), - }, - [222] = { - [aux_sym__ignore_matching_tokens] = STATE(168), - [anon_sym_BANG] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(998), - [anon_sym_POUND] = ACTIONS(998), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_PERCENT] = ACTIONS(998), - [anon_sym_AMP] = ACTIONS(1000), - [anon_sym_SQUOTE] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(998), - [anon_sym_RPAREN] = ACTIONS(998), - [anon_sym_STAR] = ACTIONS(998), - [anon_sym_PLUS] = ACTIONS(998), - [anon_sym_COMMA] = ACTIONS(998), - [anon_sym_DASH] = ACTIONS(998), - [anon_sym_DOT] = ACTIONS(998), - [anon_sym_SLASH] = ACTIONS(998), - [anon_sym_COLON] = ACTIONS(998), - [anon_sym_SEMI] = ACTIONS(998), - [anon_sym_LT] = ACTIONS(1000), - [anon_sym_EQ] = ACTIONS(998), - [anon_sym_GT] = ACTIONS(998), - [anon_sym_QMARK] = ACTIONS(998), - [anon_sym_AT] = ACTIONS(998), - [anon_sym_LBRACK] = ACTIONS(998), - [anon_sym_BSLASH] = ACTIONS(1000), - [anon_sym_RBRACK] = ACTIONS(998), - [anon_sym_CARET] = ACTIONS(998), - [anon_sym__] = ACTIONS(998), - [anon_sym_BQUOTE] = ACTIONS(998), - [anon_sym_LBRACE] = ACTIONS(998), - [anon_sym_PIPE] = ACTIONS(998), - [anon_sym_RBRACE] = ACTIONS(998), - [anon_sym_TILDE] = ACTIONS(998), - [aux_sym__html_block_1_token1] = ACTIONS(998), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1000), - [anon_sym_LT_QMARK] = ACTIONS(1000), - [aux_sym__html_block_4_token1] = ACTIONS(1000), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(998), - [aux_sym__html_block_6_token1] = ACTIONS(1000), - [aux_sym__html_block_6_token2] = ACTIONS(998), - [sym__open_tag_html_block] = ACTIONS(998), - [sym__open_tag_html_block_newline] = ACTIONS(998), - [sym__closing_tag_html_block] = ACTIONS(998), - [sym__closing_tag_html_block_newline] = ACTIONS(998), - [sym_backslash_escape] = ACTIONS(998), - [sym_entity_reference] = ACTIONS(998), - [sym_numeric_character_reference] = ACTIONS(998), - [sym_uri_autolink] = ACTIONS(998), - [sym_email_autolink] = ACTIONS(998), - [sym__whitespace_ge_2] = ACTIONS(998), - [aux_sym__whitespace_token1] = ACTIONS(1000), - [sym__word_no_digit] = ACTIONS(998), - [sym__digits] = ACTIONS(998), - [aux_sym__newline_token1] = ACTIONS(998), - [sym__block_close] = ACTIONS(998), - [sym__block_continuation] = ACTIONS(1004), - [sym__block_quote_continuation] = ACTIONS(1004), - [sym__block_quote_start] = ACTIONS(998), - [sym__indented_chunk_start] = ACTIONS(998), - [sym_atx_h1_marker] = ACTIONS(998), - [sym_atx_h2_marker] = ACTIONS(998), - [sym_atx_h3_marker] = ACTIONS(998), - [sym_atx_h4_marker] = ACTIONS(998), - [sym_atx_h5_marker] = ACTIONS(998), - [sym_atx_h6_marker] = ACTIONS(998), - [sym__thematic_break] = ACTIONS(998), - [sym__list_marker_minus] = ACTIONS(998), - [sym__list_marker_plus] = ACTIONS(998), - [sym__list_marker_star] = ACTIONS(998), - [sym__list_marker_parenthesis] = ACTIONS(998), - [sym__list_marker_dot] = ACTIONS(998), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(998), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(998), - [sym__list_marker_star_dont_interrupt] = ACTIONS(998), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(998), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(998), - [sym__fenced_code_block_start_backtick] = ACTIONS(998), - [sym__fenced_code_block_start_tilde] = ACTIONS(998), - [sym__blank_line_start] = ACTIONS(998), - [sym__code_span_start] = ACTIONS(998), - [sym__emphasis_open_star] = ACTIONS(998), - [sym__emphasis_open_underscore] = ACTIONS(998), - [sym__last_token_whitespace] = ACTIONS(1004), - }, - [223] = { - [aux_sym__paragraph_end_newline_repeat1] = STATE(104), - [ts_builtin_sym_end] = ACTIONS(1006), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [anon_sym_POUND] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_PERCENT] = ACTIONS(1006), - [anon_sym_AMP] = ACTIONS(1008), - [anon_sym_SQUOTE] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1006), - [anon_sym_RPAREN] = ACTIONS(1006), - [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_COMMA] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(1006), - [anon_sym_SLASH] = ACTIONS(1006), - [anon_sym_COLON] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_LT] = ACTIONS(1008), - [anon_sym_EQ] = ACTIONS(1006), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_QMARK] = ACTIONS(1006), - [anon_sym_AT] = ACTIONS(1006), - [anon_sym_LBRACK] = ACTIONS(1006), - [anon_sym_BSLASH] = ACTIONS(1008), - [anon_sym_RBRACK] = ACTIONS(1006), - [anon_sym_CARET] = ACTIONS(1006), - [anon_sym__] = ACTIONS(1006), - [anon_sym_BQUOTE] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1006), - [anon_sym_TILDE] = ACTIONS(1006), - [aux_sym__html_block_1_token1] = ACTIONS(1006), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1008), - [anon_sym_LT_QMARK] = ACTIONS(1008), - [aux_sym__html_block_4_token1] = ACTIONS(1008), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1006), - [aux_sym__html_block_6_token1] = ACTIONS(1008), - [aux_sym__html_block_6_token2] = ACTIONS(1006), - [sym__open_tag_html_block] = ACTIONS(1006), - [sym__open_tag_html_block_newline] = ACTIONS(1006), - [sym__closing_tag_html_block] = ACTIONS(1006), - [sym__closing_tag_html_block_newline] = ACTIONS(1006), - [sym_backslash_escape] = ACTIONS(1006), - [sym_entity_reference] = ACTIONS(1006), - [sym_numeric_character_reference] = ACTIONS(1006), - [sym_uri_autolink] = ACTIONS(1006), - [sym_email_autolink] = ACTIONS(1006), - [sym__whitespace_ge_2] = ACTIONS(1006), - [aux_sym__whitespace_token1] = ACTIONS(1008), - [sym__word_no_digit] = ACTIONS(1006), - [sym__digits] = ACTIONS(1006), - [aux_sym__newline_token1] = ACTIONS(1006), - [sym__block_quote_start] = ACTIONS(1006), - [sym__indented_chunk_start] = ACTIONS(1006), - [sym_atx_h1_marker] = ACTIONS(1006), - [sym_atx_h2_marker] = ACTIONS(1006), - [sym_atx_h3_marker] = ACTIONS(1006), - [sym_atx_h4_marker] = ACTIONS(1006), - [sym_atx_h5_marker] = ACTIONS(1006), - [sym_atx_h6_marker] = ACTIONS(1006), - [sym_setext_h1_underline] = ACTIONS(1006), - [sym_setext_h2_underline] = ACTIONS(1006), - [sym__thematic_break] = ACTIONS(1006), - [sym__list_marker_minus] = ACTIONS(1006), - [sym__list_marker_plus] = ACTIONS(1006), - [sym__list_marker_star] = ACTIONS(1006), - [sym__list_marker_parenthesis] = ACTIONS(1006), - [sym__list_marker_dot] = ACTIONS(1006), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1006), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1006), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1006), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1006), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1006), - [sym__fenced_code_block_start_backtick] = ACTIONS(1006), - [sym__fenced_code_block_start_tilde] = ACTIONS(1006), - [sym__blank_line_start] = ACTIONS(1006), - [sym__split_token] = ACTIONS(1010), - [sym__code_span_start] = ACTIONS(1006), - [sym__emphasis_open_star] = ACTIONS(1006), - [sym__emphasis_open_underscore] = ACTIONS(1006), - }, - [224] = { - [ts_builtin_sym_end] = 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), - [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(1012), - [sym_numeric_character_reference] = ACTIONS(1012), - [sym_uri_autolink] = ACTIONS(1012), - [sym_email_autolink] = 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_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_h1_underline] = ACTIONS(1012), - [sym_setext_h2_underline] = 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__split_token] = ACTIONS(1016), - [sym__soft_line_break_marker] = ACTIONS(447), - [sym__code_span_start] = ACTIONS(1012), - [sym__emphasis_open_star] = ACTIONS(1012), - [sym__emphasis_open_underscore] = ACTIONS(1012), - }, - [225] = { - [aux_sym__ignore_matching_tokens] = STATE(216), - [ts_builtin_sym_end] = ACTIONS(1019), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_DQUOTE] = ACTIONS(1019), - [anon_sym_POUND] = ACTIONS(1019), - [anon_sym_DOLLAR] = ACTIONS(1019), - [anon_sym_PERCENT] = ACTIONS(1019), - [anon_sym_AMP] = ACTIONS(1021), - [anon_sym_SQUOTE] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1019), - [anon_sym_RPAREN] = ACTIONS(1019), - [anon_sym_STAR] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1019), - [anon_sym_COMMA] = ACTIONS(1019), - [anon_sym_DASH] = ACTIONS(1019), - [anon_sym_DOT] = ACTIONS(1019), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_COLON] = ACTIONS(1019), - [anon_sym_SEMI] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(1021), - [anon_sym_EQ] = ACTIONS(1019), - [anon_sym_GT] = ACTIONS(1019), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_AT] = ACTIONS(1019), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_BSLASH] = ACTIONS(1021), - [anon_sym_RBRACK] = ACTIONS(1019), - [anon_sym_CARET] = ACTIONS(1019), - [anon_sym__] = ACTIONS(1019), - [anon_sym_BQUOTE] = ACTIONS(1019), - [anon_sym_LBRACE] = ACTIONS(1019), - [anon_sym_PIPE] = ACTIONS(1019), - [anon_sym_RBRACE] = ACTIONS(1019), - [anon_sym_TILDE] = ACTIONS(1019), - [aux_sym__html_block_1_token1] = ACTIONS(1019), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1021), - [anon_sym_LT_QMARK] = ACTIONS(1021), - [aux_sym__html_block_4_token1] = ACTIONS(1021), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1019), - [aux_sym__html_block_6_token1] = ACTIONS(1021), - [aux_sym__html_block_6_token2] = ACTIONS(1019), - [sym__open_tag_html_block] = ACTIONS(1019), - [sym__open_tag_html_block_newline] = ACTIONS(1019), - [sym__closing_tag_html_block] = ACTIONS(1019), - [sym__closing_tag_html_block_newline] = ACTIONS(1019), - [sym_backslash_escape] = ACTIONS(1019), - [sym_entity_reference] = ACTIONS(1019), - [sym_numeric_character_reference] = ACTIONS(1019), - [sym_uri_autolink] = ACTIONS(1019), - [sym_email_autolink] = ACTIONS(1019), - [sym__whitespace_ge_2] = ACTIONS(1019), - [aux_sym__whitespace_token1] = ACTIONS(1021), - [sym__word_no_digit] = ACTIONS(1019), - [sym__digits] = ACTIONS(1019), - [aux_sym__newline_token1] = ACTIONS(1019), - [sym__block_continuation] = ACTIONS(1023), - [sym__block_quote_continuation] = ACTIONS(1023), - [sym__block_quote_start] = ACTIONS(1019), - [sym__indented_chunk_start] = ACTIONS(1019), - [sym_atx_h1_marker] = ACTIONS(1019), - [sym_atx_h2_marker] = ACTIONS(1019), - [sym_atx_h3_marker] = ACTIONS(1019), - [sym_atx_h4_marker] = ACTIONS(1019), - [sym_atx_h5_marker] = ACTIONS(1019), - [sym_atx_h6_marker] = ACTIONS(1019), - [sym__thematic_break] = ACTIONS(1019), - [sym__list_marker_minus] = ACTIONS(1019), - [sym__list_marker_plus] = ACTIONS(1019), - [sym__list_marker_star] = ACTIONS(1019), - [sym__list_marker_parenthesis] = ACTIONS(1019), - [sym__list_marker_dot] = ACTIONS(1019), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1019), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1019), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1019), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1019), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1019), - [sym__fenced_code_block_start_backtick] = ACTIONS(1019), - [sym__fenced_code_block_start_tilde] = ACTIONS(1019), - [sym__blank_line_start] = ACTIONS(1019), - [sym__code_span_start] = ACTIONS(1019), - [sym__emphasis_open_star] = ACTIONS(1019), - [sym__emphasis_open_underscore] = ACTIONS(1019), - [sym__last_token_whitespace] = ACTIONS(1023), - }, - [226] = { - [aux_sym__ignore_matching_tokens] = STATE(275), - [anon_sym_BANG] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(998), - [anon_sym_POUND] = ACTIONS(998), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_PERCENT] = ACTIONS(998), - [anon_sym_AMP] = ACTIONS(1000), - [anon_sym_SQUOTE] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(998), - [anon_sym_RPAREN] = ACTIONS(998), - [anon_sym_STAR] = ACTIONS(998), - [anon_sym_PLUS] = ACTIONS(998), - [anon_sym_COMMA] = ACTIONS(998), - [anon_sym_DASH] = ACTIONS(998), - [anon_sym_DOT] = ACTIONS(998), - [anon_sym_SLASH] = ACTIONS(998), - [anon_sym_COLON] = ACTIONS(998), - [anon_sym_SEMI] = ACTIONS(998), - [anon_sym_LT] = ACTIONS(1000), - [anon_sym_EQ] = ACTIONS(998), - [anon_sym_GT] = ACTIONS(998), - [anon_sym_QMARK] = ACTIONS(998), - [anon_sym_AT] = ACTIONS(998), - [anon_sym_LBRACK] = ACTIONS(998), - [anon_sym_BSLASH] = ACTIONS(1000), - [anon_sym_RBRACK] = ACTIONS(998), - [anon_sym_CARET] = ACTIONS(998), - [anon_sym__] = ACTIONS(998), - [anon_sym_BQUOTE] = ACTIONS(998), - [anon_sym_LBRACE] = ACTIONS(998), - [anon_sym_PIPE] = ACTIONS(998), - [anon_sym_RBRACE] = ACTIONS(998), - [anon_sym_TILDE] = ACTIONS(998), - [aux_sym__html_block_1_token1] = ACTIONS(998), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1000), - [anon_sym_LT_QMARK] = ACTIONS(1000), - [aux_sym__html_block_4_token1] = ACTIONS(1000), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(998), - [aux_sym__html_block_6_token1] = ACTIONS(1000), - [aux_sym__html_block_6_token2] = ACTIONS(998), - [sym__open_tag_html_block] = ACTIONS(998), - [sym__open_tag_html_block_newline] = ACTIONS(998), - [sym__closing_tag_html_block] = ACTIONS(998), - [sym__closing_tag_html_block_newline] = ACTIONS(998), - [sym_backslash_escape] = ACTIONS(998), - [sym_entity_reference] = ACTIONS(998), - [sym_numeric_character_reference] = ACTIONS(998), - [sym_uri_autolink] = ACTIONS(998), - [sym_email_autolink] = ACTIONS(998), - [sym__whitespace_ge_2] = ACTIONS(998), - [aux_sym__whitespace_token1] = ACTIONS(1000), - [sym__word_no_digit] = ACTIONS(998), - [sym__digits] = ACTIONS(998), - [aux_sym__newline_token1] = ACTIONS(998), - [sym__block_close] = ACTIONS(998), - [sym__block_continuation] = ACTIONS(125), - [sym__block_quote_continuation] = ACTIONS(125), - [sym__block_quote_start] = ACTIONS(998), - [sym__indented_chunk_start] = ACTIONS(998), - [sym_atx_h1_marker] = ACTIONS(998), - [sym_atx_h2_marker] = ACTIONS(998), - [sym_atx_h3_marker] = ACTIONS(998), - [sym_atx_h4_marker] = ACTIONS(998), - [sym_atx_h5_marker] = ACTIONS(998), - [sym_atx_h6_marker] = ACTIONS(998), - [sym__thematic_break] = ACTIONS(998), - [sym__list_marker_minus] = ACTIONS(998), - [sym__list_marker_plus] = ACTIONS(998), - [sym__list_marker_star] = ACTIONS(998), - [sym__list_marker_parenthesis] = ACTIONS(998), - [sym__list_marker_dot] = ACTIONS(998), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(998), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(998), - [sym__list_marker_star_dont_interrupt] = ACTIONS(998), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(998), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(998), - [sym__fenced_code_block_start_backtick] = ACTIONS(998), - [sym__fenced_code_block_start_tilde] = ACTIONS(998), - [sym__blank_line_start] = ACTIONS(998), - [sym__code_span_start] = ACTIONS(998), - [sym__emphasis_open_star] = ACTIONS(998), - [sym__emphasis_open_underscore] = ACTIONS(998), - [sym__last_token_whitespace] = ACTIONS(125), - }, - [227] = { - [aux_sym__paragraph_end_newline_repeat1] = STATE(170), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_DQUOTE] = ACTIONS(1006), - [anon_sym_POUND] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_PERCENT] = ACTIONS(1006), - [anon_sym_AMP] = ACTIONS(1008), - [anon_sym_SQUOTE] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1006), - [anon_sym_RPAREN] = ACTIONS(1006), - [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_COMMA] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(1006), - [anon_sym_SLASH] = ACTIONS(1006), - [anon_sym_COLON] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_LT] = ACTIONS(1008), - [anon_sym_EQ] = ACTIONS(1006), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_QMARK] = ACTIONS(1006), - [anon_sym_AT] = ACTIONS(1006), - [anon_sym_LBRACK] = ACTIONS(1006), - [anon_sym_BSLASH] = ACTIONS(1008), - [anon_sym_RBRACK] = ACTIONS(1006), - [anon_sym_CARET] = ACTIONS(1006), - [anon_sym__] = ACTIONS(1006), - [anon_sym_BQUOTE] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1006), - [anon_sym_TILDE] = ACTIONS(1006), - [aux_sym__html_block_1_token1] = ACTIONS(1006), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1008), - [anon_sym_LT_QMARK] = ACTIONS(1008), - [aux_sym__html_block_4_token1] = ACTIONS(1008), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1006), - [aux_sym__html_block_6_token1] = ACTIONS(1008), - [aux_sym__html_block_6_token2] = ACTIONS(1006), - [sym__open_tag_html_block] = ACTIONS(1006), - [sym__open_tag_html_block_newline] = ACTIONS(1006), - [sym__closing_tag_html_block] = ACTIONS(1006), - [sym__closing_tag_html_block_newline] = ACTIONS(1006), - [sym_backslash_escape] = ACTIONS(1006), - [sym_entity_reference] = ACTIONS(1006), - [sym_numeric_character_reference] = ACTIONS(1006), - [sym_uri_autolink] = ACTIONS(1006), - [sym_email_autolink] = ACTIONS(1006), - [sym__whitespace_ge_2] = ACTIONS(1006), - [aux_sym__whitespace_token1] = ACTIONS(1008), - [sym__word_no_digit] = ACTIONS(1006), - [sym__digits] = ACTIONS(1006), - [aux_sym__newline_token1] = ACTIONS(1006), - [sym__block_close] = ACTIONS(1006), - [sym__block_quote_start] = ACTIONS(1006), - [sym__indented_chunk_start] = ACTIONS(1006), - [sym_atx_h1_marker] = ACTIONS(1006), - [sym_atx_h2_marker] = ACTIONS(1006), - [sym_atx_h3_marker] = ACTIONS(1006), - [sym_atx_h4_marker] = ACTIONS(1006), - [sym_atx_h5_marker] = ACTIONS(1006), - [sym_atx_h6_marker] = ACTIONS(1006), - [sym_setext_h1_underline] = ACTIONS(1006), - [sym_setext_h2_underline] = ACTIONS(1006), - [sym__thematic_break] = ACTIONS(1006), - [sym__list_marker_minus] = ACTIONS(1006), - [sym__list_marker_plus] = ACTIONS(1006), - [sym__list_marker_star] = ACTIONS(1006), - [sym__list_marker_parenthesis] = ACTIONS(1006), - [sym__list_marker_dot] = ACTIONS(1006), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1006), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1006), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1006), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1006), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1006), - [sym__fenced_code_block_start_backtick] = ACTIONS(1006), - [sym__fenced_code_block_start_tilde] = ACTIONS(1006), - [sym__blank_line_start] = ACTIONS(1006), - [sym__split_token] = ACTIONS(1025), - [sym__code_span_start] = ACTIONS(1006), - [sym__emphasis_open_star] = ACTIONS(1006), - [sym__emphasis_open_underscore] = ACTIONS(1006), - }, - [228] = { - [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), - [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(1012), - [sym_numeric_character_reference] = ACTIONS(1012), - [sym_uri_autolink] = ACTIONS(1012), - [sym_email_autolink] = 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_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_h1_underline] = ACTIONS(1012), - [sym_setext_h2_underline] = 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__split_token] = ACTIONS(1016), - [sym__soft_line_break_marker] = ACTIONS(447), - [sym__code_span_start] = ACTIONS(1012), - [sym__emphasis_open_star] = ACTIONS(1012), - [sym__emphasis_open_underscore] = ACTIONS(1012), - }, - [229] = { - [aux_sym__ignore_matching_tokens] = STATE(202), - [ts_builtin_sym_end] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(787), - [anon_sym_POUND] = ACTIONS(787), - [anon_sym_DOLLAR] = ACTIONS(787), - [anon_sym_PERCENT] = ACTIONS(787), - [anon_sym_AMP] = ACTIONS(789), - [anon_sym_SQUOTE] = ACTIONS(787), - [anon_sym_LPAREN] = ACTIONS(787), - [anon_sym_RPAREN] = ACTIONS(787), - [anon_sym_STAR] = ACTIONS(787), - [anon_sym_PLUS] = ACTIONS(787), - [anon_sym_COMMA] = ACTIONS(787), - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_DOT] = ACTIONS(787), - [anon_sym_SLASH] = ACTIONS(787), - [anon_sym_COLON] = ACTIONS(787), - [anon_sym_SEMI] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(789), - [anon_sym_EQ] = ACTIONS(787), - [anon_sym_GT] = ACTIONS(787), - [anon_sym_QMARK] = ACTIONS(787), - [anon_sym_AT] = ACTIONS(787), - [anon_sym_LBRACK] = ACTIONS(787), - [anon_sym_BSLASH] = ACTIONS(789), - [anon_sym_RBRACK] = ACTIONS(787), - [anon_sym_CARET] = ACTIONS(787), - [anon_sym__] = ACTIONS(787), - [anon_sym_BQUOTE] = ACTIONS(787), - [anon_sym_LBRACE] = ACTIONS(787), - [anon_sym_PIPE] = ACTIONS(787), - [anon_sym_RBRACE] = ACTIONS(787), - [anon_sym_TILDE] = ACTIONS(787), - [aux_sym__html_block_1_token1] = ACTIONS(787), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(789), - [anon_sym_LT_QMARK] = ACTIONS(789), - [aux_sym__html_block_4_token1] = ACTIONS(789), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(787), - [aux_sym__html_block_6_token1] = ACTIONS(789), - [aux_sym__html_block_6_token2] = ACTIONS(787), - [sym__open_tag_html_block] = ACTIONS(787), - [sym__open_tag_html_block_newline] = ACTIONS(787), - [sym__closing_tag_html_block] = ACTIONS(787), - [sym__closing_tag_html_block_newline] = ACTIONS(787), - [sym_backslash_escape] = ACTIONS(787), - [sym_entity_reference] = ACTIONS(787), - [sym_numeric_character_reference] = ACTIONS(787), - [sym_uri_autolink] = ACTIONS(787), - [sym_email_autolink] = ACTIONS(787), - [sym__whitespace_ge_2] = ACTIONS(787), - [aux_sym__whitespace_token1] = ACTIONS(789), - [sym__word_no_digit] = ACTIONS(787), - [sym__digits] = ACTIONS(787), - [aux_sym__newline_token1] = ACTIONS(787), - [sym__block_continuation] = ACTIONS(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(787), - [sym__indented_chunk_start] = ACTIONS(787), - [sym_atx_h1_marker] = ACTIONS(787), - [sym_atx_h2_marker] = ACTIONS(787), - [sym_atx_h3_marker] = ACTIONS(787), - [sym_atx_h4_marker] = ACTIONS(787), - [sym_atx_h5_marker] = ACTIONS(787), - [sym_atx_h6_marker] = ACTIONS(787), - [sym__thematic_break] = ACTIONS(787), - [sym__list_marker_minus] = ACTIONS(787), - [sym__list_marker_plus] = ACTIONS(787), - [sym__list_marker_star] = ACTIONS(787), - [sym__list_marker_parenthesis] = ACTIONS(787), - [sym__list_marker_dot] = ACTIONS(787), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(787), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(787), - [sym__list_marker_star_dont_interrupt] = ACTIONS(787), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(787), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(787), - [sym__fenced_code_block_start_backtick] = ACTIONS(787), - [sym__fenced_code_block_start_tilde] = ACTIONS(787), - [sym__blank_line_start] = ACTIONS(787), - [sym__code_span_start] = ACTIONS(787), - [sym__emphasis_open_star] = ACTIONS(787), - [sym__emphasis_open_underscore] = ACTIONS(787), - [sym__last_token_whitespace] = ACTIONS(111), - }, - [230] = { - [aux_sym__ignore_matching_tokens] = STATE(235), - [ts_builtin_sym_end] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_DQUOTE] = ACTIONS(787), - [anon_sym_POUND] = ACTIONS(787), - [anon_sym_DOLLAR] = ACTIONS(787), - [anon_sym_PERCENT] = ACTIONS(787), - [anon_sym_AMP] = ACTIONS(789), - [anon_sym_SQUOTE] = ACTIONS(787), - [anon_sym_LPAREN] = ACTIONS(787), - [anon_sym_RPAREN] = ACTIONS(787), - [anon_sym_STAR] = ACTIONS(787), - [anon_sym_PLUS] = ACTIONS(787), - [anon_sym_COMMA] = ACTIONS(787), - [anon_sym_DASH] = ACTIONS(787), - [anon_sym_DOT] = ACTIONS(787), - [anon_sym_SLASH] = ACTIONS(787), - [anon_sym_COLON] = ACTIONS(787), - [anon_sym_SEMI] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(789), - [anon_sym_EQ] = ACTIONS(787), - [anon_sym_GT] = ACTIONS(787), - [anon_sym_QMARK] = ACTIONS(787), - [anon_sym_AT] = ACTIONS(787), - [anon_sym_LBRACK] = ACTIONS(787), - [anon_sym_BSLASH] = ACTIONS(789), - [anon_sym_RBRACK] = ACTIONS(787), - [anon_sym_CARET] = ACTIONS(787), - [anon_sym__] = ACTIONS(787), - [anon_sym_BQUOTE] = ACTIONS(787), - [anon_sym_LBRACE] = ACTIONS(787), - [anon_sym_PIPE] = ACTIONS(787), - [anon_sym_RBRACE] = ACTIONS(787), - [anon_sym_TILDE] = ACTIONS(787), - [aux_sym__html_block_1_token1] = ACTIONS(787), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(789), - [anon_sym_LT_QMARK] = ACTIONS(789), - [aux_sym__html_block_4_token1] = ACTIONS(789), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(787), - [aux_sym__html_block_6_token1] = ACTIONS(789), - [aux_sym__html_block_6_token2] = ACTIONS(787), - [sym__open_tag_html_block] = ACTIONS(787), - [sym__open_tag_html_block_newline] = ACTIONS(787), - [sym__closing_tag_html_block] = ACTIONS(787), - [sym__closing_tag_html_block_newline] = ACTIONS(787), - [sym_backslash_escape] = ACTIONS(787), - [sym_entity_reference] = ACTIONS(787), - [sym_numeric_character_reference] = ACTIONS(787), - [sym_uri_autolink] = ACTIONS(787), - [sym_email_autolink] = ACTIONS(787), - [sym__whitespace_ge_2] = ACTIONS(787), - [aux_sym__whitespace_token1] = ACTIONS(789), - [sym__word_no_digit] = ACTIONS(787), - [sym__digits] = ACTIONS(787), - [aux_sym__newline_token1] = ACTIONS(787), - [sym__block_continuation] = ACTIONS(1027), - [sym__block_quote_continuation] = ACTIONS(1027), - [sym__block_quote_start] = ACTIONS(787), - [sym__indented_chunk_start] = ACTIONS(787), - [sym_atx_h1_marker] = ACTIONS(787), - [sym_atx_h2_marker] = ACTIONS(787), - [sym_atx_h3_marker] = ACTIONS(787), - [sym_atx_h4_marker] = ACTIONS(787), - [sym_atx_h5_marker] = ACTIONS(787), - [sym_atx_h6_marker] = ACTIONS(787), - [sym__thematic_break] = ACTIONS(787), - [sym__list_marker_minus] = ACTIONS(787), - [sym__list_marker_plus] = ACTIONS(787), - [sym__list_marker_star] = ACTIONS(787), - [sym__list_marker_parenthesis] = ACTIONS(787), - [sym__list_marker_dot] = ACTIONS(787), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(787), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(787), - [sym__list_marker_star_dont_interrupt] = ACTIONS(787), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(787), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(787), - [sym__fenced_code_block_start_backtick] = ACTIONS(787), - [sym__fenced_code_block_start_tilde] = ACTIONS(787), - [sym__blank_line_start] = ACTIONS(787), - [sym__code_span_start] = ACTIONS(787), - [sym__emphasis_open_star] = ACTIONS(787), - [sym__emphasis_open_underscore] = ACTIONS(787), - [sym__last_token_whitespace] = ACTIONS(1027), - }, - [231] = { - [aux_sym__ignore_matching_tokens] = STATE(202), - [ts_builtin_sym_end] = ACTIONS(781), - [anon_sym_BANG] = ACTIONS(781), - [anon_sym_DQUOTE] = ACTIONS(781), - [anon_sym_POUND] = ACTIONS(781), - [anon_sym_DOLLAR] = ACTIONS(781), - [anon_sym_PERCENT] = ACTIONS(781), - [anon_sym_AMP] = ACTIONS(783), - [anon_sym_SQUOTE] = ACTIONS(781), - [anon_sym_LPAREN] = ACTIONS(781), - [anon_sym_RPAREN] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_COMMA] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_DOT] = ACTIONS(781), - [anon_sym_SLASH] = ACTIONS(781), - [anon_sym_COLON] = ACTIONS(781), - [anon_sym_SEMI] = ACTIONS(781), - [anon_sym_LT] = ACTIONS(783), - [anon_sym_EQ] = ACTIONS(781), - [anon_sym_GT] = ACTIONS(781), - [anon_sym_QMARK] = ACTIONS(781), - [anon_sym_AT] = ACTIONS(781), - [anon_sym_LBRACK] = ACTIONS(781), - [anon_sym_BSLASH] = ACTIONS(783), - [anon_sym_RBRACK] = ACTIONS(781), - [anon_sym_CARET] = ACTIONS(781), - [anon_sym__] = ACTIONS(781), - [anon_sym_BQUOTE] = ACTIONS(781), - [anon_sym_LBRACE] = ACTIONS(781), - [anon_sym_PIPE] = ACTIONS(781), - [anon_sym_RBRACE] = ACTIONS(781), - [anon_sym_TILDE] = ACTIONS(781), - [aux_sym__html_block_1_token1] = ACTIONS(781), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(783), - [anon_sym_LT_QMARK] = ACTIONS(783), - [aux_sym__html_block_4_token1] = ACTIONS(783), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(781), - [aux_sym__html_block_6_token1] = ACTIONS(783), - [aux_sym__html_block_6_token2] = ACTIONS(781), - [sym__open_tag_html_block] = ACTIONS(781), - [sym__open_tag_html_block_newline] = ACTIONS(781), - [sym__closing_tag_html_block] = ACTIONS(781), - [sym__closing_tag_html_block_newline] = ACTIONS(781), - [sym_backslash_escape] = ACTIONS(781), - [sym_entity_reference] = ACTIONS(781), - [sym_numeric_character_reference] = ACTIONS(781), - [sym_uri_autolink] = ACTIONS(781), - [sym_email_autolink] = ACTIONS(781), - [sym__whitespace_ge_2] = ACTIONS(781), - [aux_sym__whitespace_token1] = ACTIONS(783), - [sym__word_no_digit] = ACTIONS(781), - [sym__digits] = ACTIONS(781), - [aux_sym__newline_token1] = ACTIONS(781), - [sym__block_continuation] = ACTIONS(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(781), - [sym__indented_chunk_start] = ACTIONS(781), - [sym_atx_h1_marker] = ACTIONS(781), - [sym_atx_h2_marker] = ACTIONS(781), - [sym_atx_h3_marker] = ACTIONS(781), - [sym_atx_h4_marker] = ACTIONS(781), - [sym_atx_h5_marker] = ACTIONS(781), - [sym_atx_h6_marker] = ACTIONS(781), - [sym__thematic_break] = ACTIONS(781), - [sym__list_marker_minus] = ACTIONS(781), - [sym__list_marker_plus] = ACTIONS(781), - [sym__list_marker_star] = ACTIONS(781), - [sym__list_marker_parenthesis] = ACTIONS(781), - [sym__list_marker_dot] = ACTIONS(781), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(781), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(781), - [sym__list_marker_star_dont_interrupt] = ACTIONS(781), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(781), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(781), - [sym__fenced_code_block_start_backtick] = ACTIONS(781), - [sym__fenced_code_block_start_tilde] = ACTIONS(781), - [sym__blank_line_start] = ACTIONS(781), - [sym__code_span_start] = ACTIONS(781), - [sym__emphasis_open_star] = ACTIONS(781), - [sym__emphasis_open_underscore] = ACTIONS(781), - [sym__last_token_whitespace] = ACTIONS(111), - }, - [232] = { - [aux_sym__ignore_matching_tokens] = STATE(239), - [ts_builtin_sym_end] = ACTIONS(781), - [anon_sym_BANG] = ACTIONS(781), - [anon_sym_DQUOTE] = ACTIONS(781), - [anon_sym_POUND] = ACTIONS(781), - [anon_sym_DOLLAR] = ACTIONS(781), - [anon_sym_PERCENT] = ACTIONS(781), - [anon_sym_AMP] = ACTIONS(783), - [anon_sym_SQUOTE] = ACTIONS(781), - [anon_sym_LPAREN] = ACTIONS(781), - [anon_sym_RPAREN] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_COMMA] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_DOT] = ACTIONS(781), - [anon_sym_SLASH] = ACTIONS(781), - [anon_sym_COLON] = ACTIONS(781), - [anon_sym_SEMI] = ACTIONS(781), - [anon_sym_LT] = ACTIONS(783), - [anon_sym_EQ] = ACTIONS(781), - [anon_sym_GT] = ACTIONS(781), - [anon_sym_QMARK] = ACTIONS(781), - [anon_sym_AT] = ACTIONS(781), - [anon_sym_LBRACK] = ACTIONS(781), - [anon_sym_BSLASH] = ACTIONS(783), - [anon_sym_RBRACK] = ACTIONS(781), - [anon_sym_CARET] = ACTIONS(781), - [anon_sym__] = ACTIONS(781), - [anon_sym_BQUOTE] = ACTIONS(781), - [anon_sym_LBRACE] = ACTIONS(781), - [anon_sym_PIPE] = ACTIONS(781), - [anon_sym_RBRACE] = ACTIONS(781), - [anon_sym_TILDE] = ACTIONS(781), - [aux_sym__html_block_1_token1] = ACTIONS(781), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(783), - [anon_sym_LT_QMARK] = ACTIONS(783), - [aux_sym__html_block_4_token1] = ACTIONS(783), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(781), - [aux_sym__html_block_6_token1] = ACTIONS(783), - [aux_sym__html_block_6_token2] = ACTIONS(781), - [sym__open_tag_html_block] = ACTIONS(781), - [sym__open_tag_html_block_newline] = ACTIONS(781), - [sym__closing_tag_html_block] = ACTIONS(781), - [sym__closing_tag_html_block_newline] = ACTIONS(781), - [sym_backslash_escape] = ACTIONS(781), - [sym_entity_reference] = ACTIONS(781), - [sym_numeric_character_reference] = ACTIONS(781), - [sym_uri_autolink] = ACTIONS(781), - [sym_email_autolink] = ACTIONS(781), - [sym__whitespace_ge_2] = ACTIONS(781), - [aux_sym__whitespace_token1] = ACTIONS(783), - [sym__word_no_digit] = ACTIONS(781), - [sym__digits] = ACTIONS(781), - [aux_sym__newline_token1] = ACTIONS(781), - [sym__block_continuation] = ACTIONS(1029), - [sym__block_quote_continuation] = ACTIONS(1029), - [sym__block_quote_start] = ACTIONS(781), - [sym__indented_chunk_start] = ACTIONS(781), - [sym_atx_h1_marker] = ACTIONS(781), - [sym_atx_h2_marker] = ACTIONS(781), - [sym_atx_h3_marker] = ACTIONS(781), - [sym_atx_h4_marker] = ACTIONS(781), - [sym_atx_h5_marker] = ACTIONS(781), - [sym_atx_h6_marker] = ACTIONS(781), - [sym__thematic_break] = ACTIONS(781), - [sym__list_marker_minus] = ACTIONS(781), - [sym__list_marker_plus] = ACTIONS(781), - [sym__list_marker_star] = ACTIONS(781), - [sym__list_marker_parenthesis] = ACTIONS(781), - [sym__list_marker_dot] = ACTIONS(781), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(781), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(781), - [sym__list_marker_star_dont_interrupt] = ACTIONS(781), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(781), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(781), - [sym__fenced_code_block_start_backtick] = ACTIONS(781), - [sym__fenced_code_block_start_tilde] = ACTIONS(781), - [sym__blank_line_start] = ACTIONS(781), - [sym__code_span_start] = ACTIONS(781), - [sym__emphasis_open_star] = ACTIONS(781), - [sym__emphasis_open_underscore] = ACTIONS(781), - [sym__last_token_whitespace] = ACTIONS(1029), - }, - [233] = { - [aux_sym__ignore_matching_tokens] = STATE(202), - [ts_builtin_sym_end] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_DQUOTE] = ACTIONS(389), - [anon_sym_POUND] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(389), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_RPAREN] = ACTIONS(389), - [anon_sym_STAR] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_COMMA] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_DOT] = ACTIONS(389), - [anon_sym_SLASH] = ACTIONS(389), - [anon_sym_COLON] = ACTIONS(389), - [anon_sym_SEMI] = ACTIONS(389), - [anon_sym_LT] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(389), - [anon_sym_GT] = ACTIONS(389), - [anon_sym_QMARK] = ACTIONS(389), - [anon_sym_AT] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_BSLASH] = ACTIONS(391), - [anon_sym_RBRACK] = ACTIONS(389), - [anon_sym_CARET] = ACTIONS(389), - [anon_sym__] = ACTIONS(389), - [anon_sym_BQUOTE] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(389), - [anon_sym_RBRACE] = ACTIONS(389), - [anon_sym_TILDE] = ACTIONS(389), - [aux_sym__html_block_1_token1] = ACTIONS(389), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(391), - [anon_sym_LT_QMARK] = ACTIONS(391), - [aux_sym__html_block_4_token1] = ACTIONS(391), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(389), - [aux_sym__html_block_6_token1] = ACTIONS(391), - [aux_sym__html_block_6_token2] = ACTIONS(389), - [sym__open_tag_html_block] = ACTIONS(389), - [sym__open_tag_html_block_newline] = ACTIONS(389), - [sym__closing_tag_html_block] = ACTIONS(389), - [sym__closing_tag_html_block_newline] = ACTIONS(389), - [sym_backslash_escape] = ACTIONS(389), - [sym_entity_reference] = ACTIONS(389), - [sym_numeric_character_reference] = ACTIONS(389), - [sym_uri_autolink] = ACTIONS(389), - [sym_email_autolink] = ACTIONS(389), - [sym__whitespace_ge_2] = ACTIONS(389), - [aux_sym__whitespace_token1] = ACTIONS(391), - [sym__word_no_digit] = ACTIONS(389), - [sym__digits] = ACTIONS(389), - [aux_sym__newline_token1] = ACTIONS(389), - [sym__block_continuation] = ACTIONS(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(389), - [sym__indented_chunk_start] = ACTIONS(389), - [sym_atx_h1_marker] = ACTIONS(389), - [sym_atx_h2_marker] = ACTIONS(389), - [sym_atx_h3_marker] = ACTIONS(389), - [sym_atx_h4_marker] = ACTIONS(389), - [sym_atx_h5_marker] = ACTIONS(389), - [sym_atx_h6_marker] = ACTIONS(389), - [sym__thematic_break] = ACTIONS(389), - [sym__list_marker_minus] = ACTIONS(389), - [sym__list_marker_plus] = ACTIONS(389), - [sym__list_marker_star] = ACTIONS(389), - [sym__list_marker_parenthesis] = ACTIONS(389), - [sym__list_marker_dot] = ACTIONS(389), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(389), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(389), - [sym__list_marker_star_dont_interrupt] = ACTIONS(389), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(389), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(389), - [sym__fenced_code_block_start_backtick] = ACTIONS(389), - [sym__fenced_code_block_start_tilde] = ACTIONS(389), - [sym__blank_line_start] = ACTIONS(389), - [sym__code_span_start] = ACTIONS(389), - [sym__emphasis_open_star] = ACTIONS(389), - [sym__emphasis_open_underscore] = ACTIONS(389), - [sym__last_token_whitespace] = ACTIONS(111), - }, - [234] = { - [aux_sym__ignore_matching_tokens] = STATE(202), - [ts_builtin_sym_end] = ACTIONS(407), - [anon_sym_BANG] = ACTIONS(407), - [anon_sym_DQUOTE] = ACTIONS(407), - [anon_sym_POUND] = ACTIONS(407), - [anon_sym_DOLLAR] = ACTIONS(407), - [anon_sym_PERCENT] = ACTIONS(407), - [anon_sym_AMP] = ACTIONS(409), - [anon_sym_SQUOTE] = ACTIONS(407), - [anon_sym_LPAREN] = ACTIONS(407), - [anon_sym_RPAREN] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(407), - [anon_sym_COMMA] = ACTIONS(407), - [anon_sym_DASH] = ACTIONS(407), - [anon_sym_DOT] = ACTIONS(407), - [anon_sym_SLASH] = ACTIONS(407), - [anon_sym_COLON] = ACTIONS(407), - [anon_sym_SEMI] = ACTIONS(407), - [anon_sym_LT] = ACTIONS(409), - [anon_sym_EQ] = ACTIONS(407), - [anon_sym_GT] = ACTIONS(407), - [anon_sym_QMARK] = ACTIONS(407), - [anon_sym_AT] = ACTIONS(407), - [anon_sym_LBRACK] = ACTIONS(407), - [anon_sym_BSLASH] = ACTIONS(409), - [anon_sym_RBRACK] = ACTIONS(407), - [anon_sym_CARET] = ACTIONS(407), - [anon_sym__] = ACTIONS(407), - [anon_sym_BQUOTE] = ACTIONS(407), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_PIPE] = ACTIONS(407), - [anon_sym_RBRACE] = ACTIONS(407), - [anon_sym_TILDE] = ACTIONS(407), - [aux_sym__html_block_1_token1] = ACTIONS(407), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(409), - [anon_sym_LT_QMARK] = ACTIONS(409), - [aux_sym__html_block_4_token1] = ACTIONS(409), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(407), - [aux_sym__html_block_6_token1] = ACTIONS(409), - [aux_sym__html_block_6_token2] = ACTIONS(407), - [sym__open_tag_html_block] = ACTIONS(407), - [sym__open_tag_html_block_newline] = ACTIONS(407), - [sym__closing_tag_html_block] = ACTIONS(407), - [sym__closing_tag_html_block_newline] = ACTIONS(407), - [sym_backslash_escape] = ACTIONS(407), - [sym_entity_reference] = ACTIONS(407), - [sym_numeric_character_reference] = ACTIONS(407), - [sym_uri_autolink] = ACTIONS(407), - [sym_email_autolink] = ACTIONS(407), - [sym__whitespace_ge_2] = ACTIONS(407), - [aux_sym__whitespace_token1] = ACTIONS(409), - [sym__word_no_digit] = ACTIONS(407), - [sym__digits] = ACTIONS(407), - [aux_sym__newline_token1] = ACTIONS(407), - [sym__block_continuation] = ACTIONS(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(407), - [sym__indented_chunk_start] = ACTIONS(407), - [sym_atx_h1_marker] = ACTIONS(407), - [sym_atx_h2_marker] = ACTIONS(407), - [sym_atx_h3_marker] = ACTIONS(407), - [sym_atx_h4_marker] = ACTIONS(407), - [sym_atx_h5_marker] = ACTIONS(407), - [sym_atx_h6_marker] = ACTIONS(407), - [sym__thematic_break] = ACTIONS(407), - [sym__list_marker_minus] = ACTIONS(407), - [sym__list_marker_plus] = ACTIONS(407), - [sym__list_marker_star] = ACTIONS(407), - [sym__list_marker_parenthesis] = ACTIONS(407), - [sym__list_marker_dot] = ACTIONS(407), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(407), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(407), - [sym__list_marker_star_dont_interrupt] = ACTIONS(407), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(407), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(407), - [sym__fenced_code_block_start_backtick] = ACTIONS(407), - [sym__fenced_code_block_start_tilde] = ACTIONS(407), - [sym__blank_line_start] = ACTIONS(407), - [sym__code_span_start] = ACTIONS(407), - [sym__emphasis_open_star] = ACTIONS(407), - [sym__emphasis_open_underscore] = ACTIONS(407), - [sym__last_token_whitespace] = ACTIONS(111), - }, - [235] = { - [aux_sym__ignore_matching_tokens] = STATE(202), - [ts_builtin_sym_end] = ACTIONS(763), - [anon_sym_BANG] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_POUND] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(763), - [anon_sym_PERCENT] = ACTIONS(763), - [anon_sym_AMP] = ACTIONS(765), - [anon_sym_SQUOTE] = ACTIONS(763), - [anon_sym_LPAREN] = ACTIONS(763), - [anon_sym_RPAREN] = ACTIONS(763), - [anon_sym_STAR] = ACTIONS(763), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_COMMA] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_DOT] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(763), - [anon_sym_COLON] = ACTIONS(763), - [anon_sym_SEMI] = ACTIONS(763), - [anon_sym_LT] = ACTIONS(765), - [anon_sym_EQ] = ACTIONS(763), - [anon_sym_GT] = ACTIONS(763), - [anon_sym_QMARK] = ACTIONS(763), - [anon_sym_AT] = ACTIONS(763), - [anon_sym_LBRACK] = ACTIONS(763), - [anon_sym_BSLASH] = ACTIONS(765), - [anon_sym_RBRACK] = ACTIONS(763), - [anon_sym_CARET] = ACTIONS(763), - [anon_sym__] = ACTIONS(763), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LBRACE] = ACTIONS(763), - [anon_sym_PIPE] = ACTIONS(763), - [anon_sym_RBRACE] = ACTIONS(763), - [anon_sym_TILDE] = ACTIONS(763), - [aux_sym__html_block_1_token1] = ACTIONS(763), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(765), - [anon_sym_LT_QMARK] = ACTIONS(765), - [aux_sym__html_block_4_token1] = ACTIONS(765), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(763), - [aux_sym__html_block_6_token1] = ACTIONS(765), - [aux_sym__html_block_6_token2] = ACTIONS(763), - [sym__open_tag_html_block] = ACTIONS(763), - [sym__open_tag_html_block_newline] = ACTIONS(763), - [sym__closing_tag_html_block] = ACTIONS(763), - [sym__closing_tag_html_block_newline] = ACTIONS(763), - [sym_backslash_escape] = ACTIONS(763), - [sym_entity_reference] = ACTIONS(763), - [sym_numeric_character_reference] = ACTIONS(763), - [sym_uri_autolink] = ACTIONS(763), - [sym_email_autolink] = ACTIONS(763), - [sym__whitespace_ge_2] = ACTIONS(763), - [aux_sym__whitespace_token1] = ACTIONS(765), - [sym__word_no_digit] = ACTIONS(763), - [sym__digits] = ACTIONS(763), - [aux_sym__newline_token1] = ACTIONS(763), - [sym__block_continuation] = ACTIONS(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(763), - [sym__indented_chunk_start] = ACTIONS(763), - [sym_atx_h1_marker] = ACTIONS(763), - [sym_atx_h2_marker] = ACTIONS(763), - [sym_atx_h3_marker] = ACTIONS(763), - [sym_atx_h4_marker] = ACTIONS(763), - [sym_atx_h5_marker] = ACTIONS(763), - [sym_atx_h6_marker] = ACTIONS(763), - [sym__thematic_break] = ACTIONS(763), - [sym__list_marker_minus] = ACTIONS(763), - [sym__list_marker_plus] = ACTIONS(763), - [sym__list_marker_star] = ACTIONS(763), - [sym__list_marker_parenthesis] = ACTIONS(763), - [sym__list_marker_dot] = ACTIONS(763), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(763), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(763), - [sym__list_marker_star_dont_interrupt] = ACTIONS(763), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(763), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(763), - [sym__fenced_code_block_start_backtick] = ACTIONS(763), - [sym__fenced_code_block_start_tilde] = ACTIONS(763), - [sym__blank_line_start] = ACTIONS(763), - [sym__code_span_start] = ACTIONS(763), - [sym__emphasis_open_star] = ACTIONS(763), - [sym__emphasis_open_underscore] = ACTIONS(763), - [sym__last_token_whitespace] = ACTIONS(111), - }, - [236] = { - [aux_sym__ignore_matching_tokens] = STATE(249), - [ts_builtin_sym_end] = ACTIONS(763), - [anon_sym_BANG] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(763), - [anon_sym_POUND] = ACTIONS(763), - [anon_sym_DOLLAR] = ACTIONS(763), - [anon_sym_PERCENT] = ACTIONS(763), - [anon_sym_AMP] = ACTIONS(765), - [anon_sym_SQUOTE] = ACTIONS(763), - [anon_sym_LPAREN] = ACTIONS(763), - [anon_sym_RPAREN] = ACTIONS(763), - [anon_sym_STAR] = ACTIONS(763), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_COMMA] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_DOT] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(763), - [anon_sym_COLON] = ACTIONS(763), - [anon_sym_SEMI] = ACTIONS(763), - [anon_sym_LT] = ACTIONS(765), - [anon_sym_EQ] = ACTIONS(763), - [anon_sym_GT] = ACTIONS(763), - [anon_sym_QMARK] = ACTIONS(763), - [anon_sym_AT] = ACTIONS(763), - [anon_sym_LBRACK] = ACTIONS(763), - [anon_sym_BSLASH] = ACTIONS(765), - [anon_sym_RBRACK] = ACTIONS(763), - [anon_sym_CARET] = ACTIONS(763), - [anon_sym__] = ACTIONS(763), - [anon_sym_BQUOTE] = ACTIONS(763), - [anon_sym_LBRACE] = ACTIONS(763), - [anon_sym_PIPE] = ACTIONS(763), - [anon_sym_RBRACE] = ACTIONS(763), - [anon_sym_TILDE] = ACTIONS(763), - [aux_sym__html_block_1_token1] = ACTIONS(763), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(765), - [anon_sym_LT_QMARK] = ACTIONS(765), - [aux_sym__html_block_4_token1] = ACTIONS(765), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(763), - [aux_sym__html_block_6_token1] = ACTIONS(765), - [aux_sym__html_block_6_token2] = ACTIONS(763), - [sym__open_tag_html_block] = ACTIONS(763), - [sym__open_tag_html_block_newline] = ACTIONS(763), - [sym__closing_tag_html_block] = ACTIONS(763), - [sym__closing_tag_html_block_newline] = ACTIONS(763), - [sym_backslash_escape] = ACTIONS(763), - [sym_entity_reference] = ACTIONS(763), - [sym_numeric_character_reference] = ACTIONS(763), - [sym_uri_autolink] = ACTIONS(763), - [sym_email_autolink] = ACTIONS(763), - [sym__whitespace_ge_2] = ACTIONS(763), - [aux_sym__whitespace_token1] = ACTIONS(765), - [sym__word_no_digit] = ACTIONS(763), - [sym__digits] = ACTIONS(763), - [aux_sym__newline_token1] = ACTIONS(763), - [sym__block_continuation] = ACTIONS(1031), - [sym__block_quote_continuation] = ACTIONS(1031), - [sym__block_quote_start] = ACTIONS(763), - [sym__indented_chunk_start] = ACTIONS(763), - [sym_atx_h1_marker] = ACTIONS(763), - [sym_atx_h2_marker] = ACTIONS(763), - [sym_atx_h3_marker] = ACTIONS(763), - [sym_atx_h4_marker] = ACTIONS(763), - [sym_atx_h5_marker] = ACTIONS(763), - [sym_atx_h6_marker] = ACTIONS(763), - [sym__thematic_break] = ACTIONS(763), - [sym__list_marker_minus] = ACTIONS(763), - [sym__list_marker_plus] = ACTIONS(763), - [sym__list_marker_star] = ACTIONS(763), - [sym__list_marker_parenthesis] = ACTIONS(763), - [sym__list_marker_dot] = ACTIONS(763), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(763), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(763), - [sym__list_marker_star_dont_interrupt] = ACTIONS(763), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(763), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(763), - [sym__fenced_code_block_start_backtick] = ACTIONS(763), - [sym__fenced_code_block_start_tilde] = ACTIONS(763), - [sym__blank_line_start] = ACTIONS(763), - [sym__code_span_start] = ACTIONS(763), - [sym__emphasis_open_star] = ACTIONS(763), - [sym__emphasis_open_underscore] = ACTIONS(763), - [sym__last_token_whitespace] = ACTIONS(1031), - }, - [237] = { - [aux_sym__ignore_matching_tokens] = STATE(175), - [anon_sym_BANG] = ACTIONS(1033), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_POUND] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1033), - [anon_sym_PERCENT] = ACTIONS(1033), - [anon_sym_AMP] = ACTIONS(1035), - [anon_sym_SQUOTE] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1033), - [anon_sym_RPAREN] = ACTIONS(1033), - [anon_sym_STAR] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_COMMA] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_DOT] = ACTIONS(1033), - [anon_sym_SLASH] = ACTIONS(1033), - [anon_sym_COLON] = ACTIONS(1033), - [anon_sym_SEMI] = ACTIONS(1033), - [anon_sym_LT] = ACTIONS(1035), - [anon_sym_EQ] = ACTIONS(1033), - [anon_sym_GT] = ACTIONS(1033), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_AT] = ACTIONS(1033), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_BSLASH] = ACTIONS(1035), - [anon_sym_RBRACK] = ACTIONS(1033), - [anon_sym_CARET] = ACTIONS(1033), - [anon_sym__] = ACTIONS(1033), - [anon_sym_BQUOTE] = ACTIONS(1033), - [anon_sym_LBRACE] = ACTIONS(1033), - [anon_sym_PIPE] = ACTIONS(1033), - [anon_sym_RBRACE] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(1033), - [aux_sym__html_block_1_token1] = ACTIONS(1033), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1035), - [anon_sym_LT_QMARK] = ACTIONS(1035), - [aux_sym__html_block_4_token1] = ACTIONS(1035), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1033), - [aux_sym__html_block_6_token1] = ACTIONS(1035), - [aux_sym__html_block_6_token2] = ACTIONS(1033), - [sym__open_tag_html_block] = ACTIONS(1033), - [sym__open_tag_html_block_newline] = ACTIONS(1033), - [sym__closing_tag_html_block] = ACTIONS(1033), - [sym__closing_tag_html_block_newline] = ACTIONS(1033), - [sym_backslash_escape] = ACTIONS(1033), - [sym_entity_reference] = ACTIONS(1033), - [sym_numeric_character_reference] = ACTIONS(1033), - [sym_uri_autolink] = ACTIONS(1033), - [sym_email_autolink] = ACTIONS(1033), - [sym__whitespace_ge_2] = ACTIONS(1033), - [aux_sym__whitespace_token1] = ACTIONS(1035), - [sym__word_no_digit] = ACTIONS(1033), - [sym__digits] = ACTIONS(1033), - [aux_sym__newline_token1] = ACTIONS(1033), - [sym__block_close] = ACTIONS(1033), - [sym__block_continuation] = ACTIONS(1037), - [sym__block_quote_continuation] = ACTIONS(1037), - [sym__block_quote_start] = ACTIONS(1033), - [sym__indented_chunk_start] = ACTIONS(1033), - [sym_atx_h1_marker] = ACTIONS(1033), - [sym_atx_h2_marker] = ACTIONS(1033), - [sym_atx_h3_marker] = ACTIONS(1033), - [sym_atx_h4_marker] = ACTIONS(1033), - [sym_atx_h5_marker] = ACTIONS(1033), - [sym_atx_h6_marker] = ACTIONS(1033), - [sym__thematic_break] = ACTIONS(1033), - [sym__list_marker_minus] = ACTIONS(1033), - [sym__list_marker_plus] = ACTIONS(1033), - [sym__list_marker_star] = ACTIONS(1033), - [sym__list_marker_parenthesis] = ACTIONS(1033), - [sym__list_marker_dot] = ACTIONS(1033), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1033), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1033), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1033), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1033), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1033), - [sym__fenced_code_block_start_backtick] = ACTIONS(1033), - [sym__fenced_code_block_start_tilde] = ACTIONS(1033), - [sym__blank_line_start] = ACTIONS(1033), - [sym__code_span_start] = ACTIONS(1033), - [sym__emphasis_open_star] = ACTIONS(1033), - [sym__emphasis_open_underscore] = ACTIONS(1033), - [sym__last_token_whitespace] = ACTIONS(1037), - }, - [238] = { - [aux_sym__ignore_matching_tokens] = STATE(178), - [anon_sym_BANG] = ACTIONS(1039), - [anon_sym_DQUOTE] = ACTIONS(1039), - [anon_sym_POUND] = ACTIONS(1039), - [anon_sym_DOLLAR] = ACTIONS(1039), - [anon_sym_PERCENT] = ACTIONS(1039), - [anon_sym_AMP] = ACTIONS(1041), - [anon_sym_SQUOTE] = ACTIONS(1039), - [anon_sym_LPAREN] = ACTIONS(1039), - [anon_sym_RPAREN] = ACTIONS(1039), - [anon_sym_STAR] = ACTIONS(1039), - [anon_sym_PLUS] = ACTIONS(1039), - [anon_sym_COMMA] = ACTIONS(1039), - [anon_sym_DASH] = ACTIONS(1039), - [anon_sym_DOT] = ACTIONS(1039), - [anon_sym_SLASH] = ACTIONS(1039), - [anon_sym_COLON] = ACTIONS(1039), - [anon_sym_SEMI] = ACTIONS(1039), - [anon_sym_LT] = ACTIONS(1041), - [anon_sym_EQ] = ACTIONS(1039), - [anon_sym_GT] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1039), - [anon_sym_AT] = ACTIONS(1039), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_BSLASH] = ACTIONS(1041), - [anon_sym_RBRACK] = ACTIONS(1039), - [anon_sym_CARET] = ACTIONS(1039), - [anon_sym__] = ACTIONS(1039), - [anon_sym_BQUOTE] = ACTIONS(1039), - [anon_sym_LBRACE] = ACTIONS(1039), - [anon_sym_PIPE] = ACTIONS(1039), - [anon_sym_RBRACE] = ACTIONS(1039), - [anon_sym_TILDE] = ACTIONS(1039), - [aux_sym__html_block_1_token1] = ACTIONS(1039), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1041), - [anon_sym_LT_QMARK] = ACTIONS(1041), - [aux_sym__html_block_4_token1] = ACTIONS(1041), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1039), - [aux_sym__html_block_6_token1] = ACTIONS(1041), - [aux_sym__html_block_6_token2] = ACTIONS(1039), - [sym__open_tag_html_block] = ACTIONS(1039), - [sym__open_tag_html_block_newline] = ACTIONS(1039), - [sym__closing_tag_html_block] = ACTIONS(1039), - [sym__closing_tag_html_block_newline] = ACTIONS(1039), - [sym_backslash_escape] = ACTIONS(1039), - [sym_entity_reference] = ACTIONS(1039), - [sym_numeric_character_reference] = ACTIONS(1039), - [sym_uri_autolink] = ACTIONS(1039), - [sym_email_autolink] = ACTIONS(1039), - [sym__whitespace_ge_2] = ACTIONS(1039), - [aux_sym__whitespace_token1] = ACTIONS(1041), - [sym__word_no_digit] = ACTIONS(1039), - [sym__digits] = ACTIONS(1039), - [aux_sym__newline_token1] = ACTIONS(1039), - [sym__block_close] = ACTIONS(1039), - [sym__block_continuation] = ACTIONS(1043), - [sym__block_quote_continuation] = ACTIONS(1043), - [sym__block_quote_start] = ACTIONS(1039), - [sym__indented_chunk_start] = ACTIONS(1039), - [sym_atx_h1_marker] = ACTIONS(1039), - [sym_atx_h2_marker] = ACTIONS(1039), - [sym_atx_h3_marker] = ACTIONS(1039), - [sym_atx_h4_marker] = ACTIONS(1039), - [sym_atx_h5_marker] = ACTIONS(1039), - [sym_atx_h6_marker] = ACTIONS(1039), - [sym__thematic_break] = ACTIONS(1039), - [sym__list_marker_minus] = ACTIONS(1039), - [sym__list_marker_plus] = ACTIONS(1039), - [sym__list_marker_star] = ACTIONS(1039), - [sym__list_marker_parenthesis] = ACTIONS(1039), - [sym__list_marker_dot] = ACTIONS(1039), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1039), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1039), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1039), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1039), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1039), - [sym__fenced_code_block_start_backtick] = ACTIONS(1039), - [sym__fenced_code_block_start_tilde] = ACTIONS(1039), - [sym__blank_line_start] = ACTIONS(1039), - [sym__code_span_start] = ACTIONS(1039), - [sym__emphasis_open_star] = ACTIONS(1039), - [sym__emphasis_open_underscore] = ACTIONS(1039), - [sym__last_token_whitespace] = ACTIONS(1043), - }, - [239] = { - [aux_sym__ignore_matching_tokens] = STATE(202), - [ts_builtin_sym_end] = ACTIONS(751), - [anon_sym_BANG] = ACTIONS(751), - [anon_sym_DQUOTE] = ACTIONS(751), - [anon_sym_POUND] = ACTIONS(751), - [anon_sym_DOLLAR] = ACTIONS(751), - [anon_sym_PERCENT] = ACTIONS(751), - [anon_sym_AMP] = ACTIONS(753), - [anon_sym_SQUOTE] = ACTIONS(751), - [anon_sym_LPAREN] = ACTIONS(751), - [anon_sym_RPAREN] = ACTIONS(751), - [anon_sym_STAR] = ACTIONS(751), - [anon_sym_PLUS] = ACTIONS(751), - [anon_sym_COMMA] = ACTIONS(751), - [anon_sym_DASH] = ACTIONS(751), - [anon_sym_DOT] = ACTIONS(751), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_COLON] = ACTIONS(751), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_LT] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(751), - [anon_sym_QMARK] = ACTIONS(751), - [anon_sym_AT] = ACTIONS(751), - [anon_sym_LBRACK] = ACTIONS(751), - [anon_sym_BSLASH] = ACTIONS(753), - [anon_sym_RBRACK] = ACTIONS(751), - [anon_sym_CARET] = ACTIONS(751), - [anon_sym__] = ACTIONS(751), - [anon_sym_BQUOTE] = ACTIONS(751), - [anon_sym_LBRACE] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_RBRACE] = ACTIONS(751), - [anon_sym_TILDE] = ACTIONS(751), - [aux_sym__html_block_1_token1] = ACTIONS(751), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(753), - [anon_sym_LT_QMARK] = ACTIONS(753), - [aux_sym__html_block_4_token1] = ACTIONS(753), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(751), - [aux_sym__html_block_6_token1] = ACTIONS(753), - [aux_sym__html_block_6_token2] = ACTIONS(751), - [sym__open_tag_html_block] = ACTIONS(751), - [sym__open_tag_html_block_newline] = ACTIONS(751), - [sym__closing_tag_html_block] = ACTIONS(751), - [sym__closing_tag_html_block_newline] = ACTIONS(751), - [sym_backslash_escape] = ACTIONS(751), - [sym_entity_reference] = ACTIONS(751), - [sym_numeric_character_reference] = ACTIONS(751), - [sym_uri_autolink] = ACTIONS(751), - [sym_email_autolink] = ACTIONS(751), - [sym__whitespace_ge_2] = ACTIONS(751), - [aux_sym__whitespace_token1] = ACTIONS(753), - [sym__word_no_digit] = ACTIONS(751), - [sym__digits] = ACTIONS(751), - [aux_sym__newline_token1] = ACTIONS(751), - [sym__block_continuation] = ACTIONS(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(751), - [sym__indented_chunk_start] = ACTIONS(751), - [sym_atx_h1_marker] = ACTIONS(751), - [sym_atx_h2_marker] = ACTIONS(751), - [sym_atx_h3_marker] = ACTIONS(751), - [sym_atx_h4_marker] = ACTIONS(751), - [sym_atx_h5_marker] = ACTIONS(751), - [sym_atx_h6_marker] = ACTIONS(751), - [sym__thematic_break] = ACTIONS(751), - [sym__list_marker_minus] = ACTIONS(751), - [sym__list_marker_plus] = ACTIONS(751), - [sym__list_marker_star] = ACTIONS(751), - [sym__list_marker_parenthesis] = ACTIONS(751), - [sym__list_marker_dot] = ACTIONS(751), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(751), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(751), - [sym__list_marker_star_dont_interrupt] = ACTIONS(751), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(751), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(751), - [sym__fenced_code_block_start_backtick] = ACTIONS(751), - [sym__fenced_code_block_start_tilde] = ACTIONS(751), - [sym__blank_line_start] = ACTIONS(751), - [sym__code_span_start] = ACTIONS(751), - [sym__emphasis_open_star] = ACTIONS(751), - [sym__emphasis_open_underscore] = ACTIONS(751), - [sym__last_token_whitespace] = ACTIONS(111), - }, - [240] = { - [aux_sym__ignore_matching_tokens] = STATE(256), - [ts_builtin_sym_end] = ACTIONS(751), - [anon_sym_BANG] = ACTIONS(751), - [anon_sym_DQUOTE] = ACTIONS(751), - [anon_sym_POUND] = ACTIONS(751), - [anon_sym_DOLLAR] = ACTIONS(751), - [anon_sym_PERCENT] = ACTIONS(751), - [anon_sym_AMP] = ACTIONS(753), - [anon_sym_SQUOTE] = ACTIONS(751), - [anon_sym_LPAREN] = ACTIONS(751), - [anon_sym_RPAREN] = ACTIONS(751), - [anon_sym_STAR] = ACTIONS(751), - [anon_sym_PLUS] = ACTIONS(751), - [anon_sym_COMMA] = ACTIONS(751), - [anon_sym_DASH] = ACTIONS(751), - [anon_sym_DOT] = ACTIONS(751), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_COLON] = ACTIONS(751), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_LT] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(751), - [anon_sym_QMARK] = ACTIONS(751), - [anon_sym_AT] = ACTIONS(751), - [anon_sym_LBRACK] = ACTIONS(751), - [anon_sym_BSLASH] = ACTIONS(753), - [anon_sym_RBRACK] = ACTIONS(751), - [anon_sym_CARET] = ACTIONS(751), - [anon_sym__] = ACTIONS(751), - [anon_sym_BQUOTE] = ACTIONS(751), - [anon_sym_LBRACE] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_RBRACE] = ACTIONS(751), - [anon_sym_TILDE] = ACTIONS(751), - [aux_sym__html_block_1_token1] = ACTIONS(751), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(753), - [anon_sym_LT_QMARK] = ACTIONS(753), - [aux_sym__html_block_4_token1] = ACTIONS(753), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(751), - [aux_sym__html_block_6_token1] = ACTIONS(753), - [aux_sym__html_block_6_token2] = ACTIONS(751), - [sym__open_tag_html_block] = ACTIONS(751), - [sym__open_tag_html_block_newline] = ACTIONS(751), - [sym__closing_tag_html_block] = ACTIONS(751), - [sym__closing_tag_html_block_newline] = ACTIONS(751), - [sym_backslash_escape] = ACTIONS(751), - [sym_entity_reference] = ACTIONS(751), - [sym_numeric_character_reference] = ACTIONS(751), - [sym_uri_autolink] = ACTIONS(751), - [sym_email_autolink] = ACTIONS(751), - [sym__whitespace_ge_2] = ACTIONS(751), - [aux_sym__whitespace_token1] = ACTIONS(753), - [sym__word_no_digit] = ACTIONS(751), - [sym__digits] = ACTIONS(751), - [aux_sym__newline_token1] = ACTIONS(751), - [sym__block_continuation] = ACTIONS(1045), - [sym__block_quote_continuation] = ACTIONS(1045), - [sym__block_quote_start] = ACTIONS(751), - [sym__indented_chunk_start] = ACTIONS(751), - [sym_atx_h1_marker] = ACTIONS(751), - [sym_atx_h2_marker] = ACTIONS(751), - [sym_atx_h3_marker] = ACTIONS(751), - [sym_atx_h4_marker] = ACTIONS(751), - [sym_atx_h5_marker] = ACTIONS(751), - [sym_atx_h6_marker] = ACTIONS(751), - [sym__thematic_break] = ACTIONS(751), - [sym__list_marker_minus] = ACTIONS(751), - [sym__list_marker_plus] = ACTIONS(751), - [sym__list_marker_star] = ACTIONS(751), - [sym__list_marker_parenthesis] = ACTIONS(751), - [sym__list_marker_dot] = ACTIONS(751), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(751), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(751), - [sym__list_marker_star_dont_interrupt] = ACTIONS(751), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(751), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(751), - [sym__fenced_code_block_start_backtick] = ACTIONS(751), - [sym__fenced_code_block_start_tilde] = ACTIONS(751), - [sym__blank_line_start] = ACTIONS(751), - [sym__code_span_start] = ACTIONS(751), - [sym__emphasis_open_star] = ACTIONS(751), - [sym__emphasis_open_underscore] = ACTIONS(751), - [sym__last_token_whitespace] = ACTIONS(1045), - }, - [241] = { - [aux_sym__ignore_matching_tokens] = STATE(183), - [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), - [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(1047), - [sym_numeric_character_reference] = ACTIONS(1047), - [sym_uri_autolink] = ACTIONS(1047), - [sym_email_autolink] = 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_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__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__emphasis_open_star] = ACTIONS(1047), - [sym__emphasis_open_underscore] = ACTIONS(1047), - [sym__last_token_whitespace] = ACTIONS(1051), - }, - [242] = { - [aux_sym__ignore_matching_tokens] = STATE(186), - [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), - [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(1053), - [sym_numeric_character_reference] = ACTIONS(1053), - [sym_uri_autolink] = ACTIONS(1053), - [sym_email_autolink] = 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_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__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__emphasis_open_star] = ACTIONS(1053), - [sym__emphasis_open_underscore] = ACTIONS(1053), - [sym__last_token_whitespace] = ACTIONS(1057), - }, - [243] = { - [aux_sym__ignore_matching_tokens] = STATE(188), - [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), - [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(1059), - [sym_numeric_character_reference] = ACTIONS(1059), - [sym_uri_autolink] = ACTIONS(1059), - [sym_email_autolink] = 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_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__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__emphasis_open_star] = ACTIONS(1059), - [sym__emphasis_open_underscore] = ACTIONS(1059), - [sym__last_token_whitespace] = ACTIONS(1063), - }, - [244] = { - [aux_sym__ignore_matching_tokens] = STATE(116), - [ts_builtin_sym_end] = ACTIONS(1033), - [anon_sym_BANG] = ACTIONS(1033), - [anon_sym_DQUOTE] = ACTIONS(1033), - [anon_sym_POUND] = ACTIONS(1033), - [anon_sym_DOLLAR] = ACTIONS(1033), - [anon_sym_PERCENT] = ACTIONS(1033), - [anon_sym_AMP] = ACTIONS(1035), - [anon_sym_SQUOTE] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(1033), - [anon_sym_RPAREN] = ACTIONS(1033), - [anon_sym_STAR] = ACTIONS(1033), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_COMMA] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_DOT] = ACTIONS(1033), - [anon_sym_SLASH] = ACTIONS(1033), - [anon_sym_COLON] = ACTIONS(1033), - [anon_sym_SEMI] = ACTIONS(1033), - [anon_sym_LT] = ACTIONS(1035), - [anon_sym_EQ] = ACTIONS(1033), - [anon_sym_GT] = ACTIONS(1033), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_AT] = ACTIONS(1033), - [anon_sym_LBRACK] = ACTIONS(1033), - [anon_sym_BSLASH] = ACTIONS(1035), - [anon_sym_RBRACK] = ACTIONS(1033), - [anon_sym_CARET] = ACTIONS(1033), - [anon_sym__] = ACTIONS(1033), - [anon_sym_BQUOTE] = ACTIONS(1033), - [anon_sym_LBRACE] = ACTIONS(1033), - [anon_sym_PIPE] = ACTIONS(1033), - [anon_sym_RBRACE] = ACTIONS(1033), - [anon_sym_TILDE] = ACTIONS(1033), - [aux_sym__html_block_1_token1] = ACTIONS(1033), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1035), - [anon_sym_LT_QMARK] = ACTIONS(1035), - [aux_sym__html_block_4_token1] = ACTIONS(1035), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1033), - [aux_sym__html_block_6_token1] = ACTIONS(1035), - [aux_sym__html_block_6_token2] = ACTIONS(1033), - [sym__open_tag_html_block] = ACTIONS(1033), - [sym__open_tag_html_block_newline] = ACTIONS(1033), - [sym__closing_tag_html_block] = ACTIONS(1033), - [sym__closing_tag_html_block_newline] = ACTIONS(1033), - [sym_backslash_escape] = ACTIONS(1033), - [sym_entity_reference] = ACTIONS(1033), - [sym_numeric_character_reference] = ACTIONS(1033), - [sym_uri_autolink] = ACTIONS(1033), - [sym_email_autolink] = ACTIONS(1033), - [sym__whitespace_ge_2] = ACTIONS(1033), - [aux_sym__whitespace_token1] = ACTIONS(1035), - [sym__word_no_digit] = ACTIONS(1033), - [sym__digits] = ACTIONS(1033), - [aux_sym__newline_token1] = ACTIONS(1033), - [sym__block_continuation] = ACTIONS(1065), - [sym__block_quote_continuation] = ACTIONS(1065), - [sym__block_quote_start] = ACTIONS(1033), - [sym__indented_chunk_start] = ACTIONS(1033), - [sym_atx_h1_marker] = ACTIONS(1033), - [sym_atx_h2_marker] = ACTIONS(1033), - [sym_atx_h3_marker] = ACTIONS(1033), - [sym_atx_h4_marker] = ACTIONS(1033), - [sym_atx_h5_marker] = ACTIONS(1033), - [sym_atx_h6_marker] = ACTIONS(1033), - [sym__thematic_break] = ACTIONS(1033), - [sym__list_marker_minus] = ACTIONS(1033), - [sym__list_marker_plus] = ACTIONS(1033), - [sym__list_marker_star] = ACTIONS(1033), - [sym__list_marker_parenthesis] = ACTIONS(1033), - [sym__list_marker_dot] = ACTIONS(1033), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1033), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1033), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1033), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1033), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1033), - [sym__fenced_code_block_start_backtick] = ACTIONS(1033), - [sym__fenced_code_block_start_tilde] = ACTIONS(1033), - [sym__blank_line_start] = ACTIONS(1033), - [sym__code_span_start] = ACTIONS(1033), - [sym__emphasis_open_star] = ACTIONS(1033), - [sym__emphasis_open_underscore] = ACTIONS(1033), - [sym__last_token_whitespace] = ACTIONS(1065), - }, - [245] = { - [aux_sym__ignore_matching_tokens] = STATE(119), - [ts_builtin_sym_end] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(1039), - [anon_sym_DQUOTE] = ACTIONS(1039), - [anon_sym_POUND] = ACTIONS(1039), - [anon_sym_DOLLAR] = ACTIONS(1039), - [anon_sym_PERCENT] = ACTIONS(1039), - [anon_sym_AMP] = ACTIONS(1041), - [anon_sym_SQUOTE] = ACTIONS(1039), - [anon_sym_LPAREN] = ACTIONS(1039), - [anon_sym_RPAREN] = ACTIONS(1039), - [anon_sym_STAR] = ACTIONS(1039), - [anon_sym_PLUS] = ACTIONS(1039), - [anon_sym_COMMA] = ACTIONS(1039), - [anon_sym_DASH] = ACTIONS(1039), - [anon_sym_DOT] = ACTIONS(1039), - [anon_sym_SLASH] = ACTIONS(1039), - [anon_sym_COLON] = ACTIONS(1039), - [anon_sym_SEMI] = ACTIONS(1039), - [anon_sym_LT] = ACTIONS(1041), - [anon_sym_EQ] = ACTIONS(1039), - [anon_sym_GT] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1039), - [anon_sym_AT] = ACTIONS(1039), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_BSLASH] = ACTIONS(1041), - [anon_sym_RBRACK] = ACTIONS(1039), - [anon_sym_CARET] = ACTIONS(1039), - [anon_sym__] = ACTIONS(1039), - [anon_sym_BQUOTE] = ACTIONS(1039), - [anon_sym_LBRACE] = ACTIONS(1039), - [anon_sym_PIPE] = ACTIONS(1039), - [anon_sym_RBRACE] = ACTIONS(1039), - [anon_sym_TILDE] = ACTIONS(1039), - [aux_sym__html_block_1_token1] = ACTIONS(1039), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1041), - [anon_sym_LT_QMARK] = ACTIONS(1041), - [aux_sym__html_block_4_token1] = ACTIONS(1041), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1039), - [aux_sym__html_block_6_token1] = ACTIONS(1041), - [aux_sym__html_block_6_token2] = ACTIONS(1039), - [sym__open_tag_html_block] = ACTIONS(1039), - [sym__open_tag_html_block_newline] = ACTIONS(1039), - [sym__closing_tag_html_block] = ACTIONS(1039), - [sym__closing_tag_html_block_newline] = ACTIONS(1039), - [sym_backslash_escape] = ACTIONS(1039), - [sym_entity_reference] = ACTIONS(1039), - [sym_numeric_character_reference] = ACTIONS(1039), - [sym_uri_autolink] = ACTIONS(1039), - [sym_email_autolink] = ACTIONS(1039), - [sym__whitespace_ge_2] = ACTIONS(1039), - [aux_sym__whitespace_token1] = ACTIONS(1041), - [sym__word_no_digit] = ACTIONS(1039), - [sym__digits] = ACTIONS(1039), - [aux_sym__newline_token1] = ACTIONS(1039), - [sym__block_continuation] = ACTIONS(1067), - [sym__block_quote_continuation] = ACTIONS(1067), - [sym__block_quote_start] = ACTIONS(1039), - [sym__indented_chunk_start] = ACTIONS(1039), - [sym_atx_h1_marker] = ACTIONS(1039), - [sym_atx_h2_marker] = ACTIONS(1039), - [sym_atx_h3_marker] = ACTIONS(1039), - [sym_atx_h4_marker] = ACTIONS(1039), - [sym_atx_h5_marker] = ACTIONS(1039), - [sym_atx_h6_marker] = ACTIONS(1039), - [sym__thematic_break] = ACTIONS(1039), - [sym__list_marker_minus] = ACTIONS(1039), - [sym__list_marker_plus] = ACTIONS(1039), - [sym__list_marker_star] = ACTIONS(1039), - [sym__list_marker_parenthesis] = ACTIONS(1039), - [sym__list_marker_dot] = ACTIONS(1039), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1039), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1039), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1039), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1039), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1039), - [sym__fenced_code_block_start_backtick] = ACTIONS(1039), - [sym__fenced_code_block_start_tilde] = ACTIONS(1039), - [sym__blank_line_start] = ACTIONS(1039), - [sym__code_span_start] = ACTIONS(1039), - [sym__emphasis_open_star] = ACTIONS(1039), - [sym__emphasis_open_underscore] = ACTIONS(1039), - [sym__last_token_whitespace] = ACTIONS(1067), - }, - [246] = { - [aux_sym__ignore_matching_tokens] = STATE(190), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_DQUOTE] = ACTIONS(1069), - [anon_sym_POUND] = ACTIONS(1069), - [anon_sym_DOLLAR] = ACTIONS(1069), - [anon_sym_PERCENT] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1071), - [anon_sym_SQUOTE] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(1069), - [anon_sym_RPAREN] = ACTIONS(1069), - [anon_sym_STAR] = ACTIONS(1069), - [anon_sym_PLUS] = ACTIONS(1069), - [anon_sym_COMMA] = ACTIONS(1069), - [anon_sym_DASH] = ACTIONS(1069), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_SLASH] = ACTIONS(1069), - [anon_sym_COLON] = ACTIONS(1069), - [anon_sym_SEMI] = ACTIONS(1069), - [anon_sym_LT] = ACTIONS(1071), - [anon_sym_EQ] = ACTIONS(1069), - [anon_sym_GT] = ACTIONS(1069), - [anon_sym_QMARK] = ACTIONS(1069), - [anon_sym_AT] = ACTIONS(1069), - [anon_sym_LBRACK] = ACTIONS(1069), - [anon_sym_BSLASH] = ACTIONS(1071), - [anon_sym_RBRACK] = ACTIONS(1069), - [anon_sym_CARET] = ACTIONS(1069), - [anon_sym__] = ACTIONS(1069), - [anon_sym_BQUOTE] = ACTIONS(1069), - [anon_sym_LBRACE] = ACTIONS(1069), - [anon_sym_PIPE] = ACTIONS(1069), - [anon_sym_RBRACE] = ACTIONS(1069), - [anon_sym_TILDE] = ACTIONS(1069), - [aux_sym__html_block_1_token1] = ACTIONS(1069), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1071), - [anon_sym_LT_QMARK] = ACTIONS(1071), - [aux_sym__html_block_4_token1] = ACTIONS(1071), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1069), - [aux_sym__html_block_6_token1] = ACTIONS(1071), - [aux_sym__html_block_6_token2] = ACTIONS(1069), - [sym__open_tag_html_block] = ACTIONS(1069), - [sym__open_tag_html_block_newline] = ACTIONS(1069), - [sym__closing_tag_html_block] = ACTIONS(1069), - [sym__closing_tag_html_block_newline] = ACTIONS(1069), - [sym_backslash_escape] = ACTIONS(1069), - [sym_entity_reference] = ACTIONS(1069), - [sym_numeric_character_reference] = ACTIONS(1069), - [sym_uri_autolink] = ACTIONS(1069), - [sym_email_autolink] = ACTIONS(1069), - [sym__whitespace_ge_2] = ACTIONS(1069), - [aux_sym__whitespace_token1] = ACTIONS(1071), - [sym__word_no_digit] = ACTIONS(1069), - [sym__digits] = ACTIONS(1069), - [aux_sym__newline_token1] = ACTIONS(1069), - [sym__block_close] = ACTIONS(1069), - [sym__block_continuation] = ACTIONS(1073), - [sym__block_quote_continuation] = ACTIONS(1073), - [sym__block_quote_start] = ACTIONS(1069), - [sym__indented_chunk_start] = ACTIONS(1069), - [sym_atx_h1_marker] = ACTIONS(1069), - [sym_atx_h2_marker] = ACTIONS(1069), - [sym_atx_h3_marker] = ACTIONS(1069), - [sym_atx_h4_marker] = ACTIONS(1069), - [sym_atx_h5_marker] = ACTIONS(1069), - [sym_atx_h6_marker] = ACTIONS(1069), - [sym__thematic_break] = ACTIONS(1069), - [sym__list_marker_minus] = ACTIONS(1069), - [sym__list_marker_plus] = ACTIONS(1069), - [sym__list_marker_star] = ACTIONS(1069), - [sym__list_marker_parenthesis] = ACTIONS(1069), - [sym__list_marker_dot] = ACTIONS(1069), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1069), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1069), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1069), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1069), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1069), - [sym__fenced_code_block_start_backtick] = ACTIONS(1069), - [sym__fenced_code_block_start_tilde] = ACTIONS(1069), - [sym__blank_line_start] = ACTIONS(1069), - [sym__code_span_start] = ACTIONS(1069), - [sym__emphasis_open_star] = ACTIONS(1069), - [sym__emphasis_open_underscore] = ACTIONS(1069), - [sym__last_token_whitespace] = ACTIONS(1073), - }, - [247] = { - [aux_sym__ignore_matching_tokens] = STATE(192), - [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), - [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(1075), - [sym_numeric_character_reference] = ACTIONS(1075), - [sym_uri_autolink] = ACTIONS(1075), - [sym_email_autolink] = 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_continuation] = ACTIONS(1079), - [sym__block_quote_continuation] = ACTIONS(1079), - [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__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(1075), - [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(1075), - [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), - [sym__last_token_whitespace] = ACTIONS(1079), - }, - [248] = { - [aux_sym__ignore_matching_tokens] = STATE(194), - [anon_sym_BANG] = ACTIONS(1081), - [anon_sym_DQUOTE] = ACTIONS(1081), - [anon_sym_POUND] = ACTIONS(1081), - [anon_sym_DOLLAR] = ACTIONS(1081), - [anon_sym_PERCENT] = ACTIONS(1081), - [anon_sym_AMP] = ACTIONS(1083), - [anon_sym_SQUOTE] = ACTIONS(1081), - [anon_sym_LPAREN] = ACTIONS(1081), - [anon_sym_RPAREN] = ACTIONS(1081), - [anon_sym_STAR] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1081), - [anon_sym_COMMA] = ACTIONS(1081), - [anon_sym_DASH] = ACTIONS(1081), - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_SLASH] = ACTIONS(1081), - [anon_sym_COLON] = ACTIONS(1081), - [anon_sym_SEMI] = ACTIONS(1081), - [anon_sym_LT] = ACTIONS(1083), - [anon_sym_EQ] = ACTIONS(1081), - [anon_sym_GT] = ACTIONS(1081), - [anon_sym_QMARK] = ACTIONS(1081), - [anon_sym_AT] = ACTIONS(1081), - [anon_sym_LBRACK] = ACTIONS(1081), - [anon_sym_BSLASH] = ACTIONS(1083), - [anon_sym_RBRACK] = ACTIONS(1081), - [anon_sym_CARET] = ACTIONS(1081), - [anon_sym__] = ACTIONS(1081), - [anon_sym_BQUOTE] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1081), - [anon_sym_PIPE] = ACTIONS(1081), - [anon_sym_RBRACE] = ACTIONS(1081), - [anon_sym_TILDE] = ACTIONS(1081), - [aux_sym__html_block_1_token1] = ACTIONS(1081), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1083), - [anon_sym_LT_QMARK] = ACTIONS(1083), - [aux_sym__html_block_4_token1] = ACTIONS(1083), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1081), - [aux_sym__html_block_6_token1] = ACTIONS(1083), - [aux_sym__html_block_6_token2] = ACTIONS(1081), - [sym__open_tag_html_block] = ACTIONS(1081), - [sym__open_tag_html_block_newline] = ACTIONS(1081), - [sym__closing_tag_html_block] = ACTIONS(1081), - [sym__closing_tag_html_block_newline] = ACTIONS(1081), - [sym_backslash_escape] = ACTIONS(1081), - [sym_entity_reference] = ACTIONS(1081), - [sym_numeric_character_reference] = ACTIONS(1081), - [sym_uri_autolink] = ACTIONS(1081), - [sym_email_autolink] = ACTIONS(1081), - [sym__whitespace_ge_2] = ACTIONS(1081), - [aux_sym__whitespace_token1] = ACTIONS(1083), - [sym__word_no_digit] = ACTIONS(1081), - [sym__digits] = ACTIONS(1081), - [aux_sym__newline_token1] = ACTIONS(1081), - [sym__block_close] = ACTIONS(1081), - [sym__block_continuation] = ACTIONS(1085), - [sym__block_quote_continuation] = ACTIONS(1085), - [sym__block_quote_start] = ACTIONS(1081), - [sym__indented_chunk_start] = ACTIONS(1081), - [sym_atx_h1_marker] = ACTIONS(1081), - [sym_atx_h2_marker] = ACTIONS(1081), - [sym_atx_h3_marker] = ACTIONS(1081), - [sym_atx_h4_marker] = ACTIONS(1081), - [sym_atx_h5_marker] = ACTIONS(1081), - [sym_atx_h6_marker] = ACTIONS(1081), - [sym__thematic_break] = ACTIONS(1081), - [sym__list_marker_minus] = ACTIONS(1081), - [sym__list_marker_plus] = ACTIONS(1081), - [sym__list_marker_star] = ACTIONS(1081), - [sym__list_marker_parenthesis] = ACTIONS(1081), - [sym__list_marker_dot] = ACTIONS(1081), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1081), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1081), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1081), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1081), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1081), - [sym__fenced_code_block_start_backtick] = ACTIONS(1081), - [sym__fenced_code_block_start_tilde] = ACTIONS(1081), - [sym__blank_line_start] = ACTIONS(1081), - [sym__code_span_start] = ACTIONS(1081), - [sym__emphasis_open_star] = ACTIONS(1081), - [sym__emphasis_open_underscore] = ACTIONS(1081), - [sym__last_token_whitespace] = ACTIONS(1085), - }, - [249] = { - [aux_sym__ignore_matching_tokens] = STATE(202), - [ts_builtin_sym_end] = 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), - [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(695), - [sym_numeric_character_reference] = ACTIONS(695), - [sym_uri_autolink] = ACTIONS(695), - [sym_email_autolink] = 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(111), - [sym__block_quote_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__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__emphasis_open_star] = ACTIONS(695), - [sym__emphasis_open_underscore] = ACTIONS(695), - [sym__last_token_whitespace] = ACTIONS(111), - }, - [250] = { - [aux_sym__ignore_matching_tokens] = STATE(197), - [anon_sym_BANG] = ACTIONS(1087), - [anon_sym_DQUOTE] = ACTIONS(1087), - [anon_sym_POUND] = ACTIONS(1087), - [anon_sym_DOLLAR] = ACTIONS(1087), - [anon_sym_PERCENT] = ACTIONS(1087), - [anon_sym_AMP] = ACTIONS(1089), - [anon_sym_SQUOTE] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_RPAREN] = ACTIONS(1087), - [anon_sym_STAR] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_COMMA] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(1087), - [anon_sym_COLON] = ACTIONS(1087), - [anon_sym_SEMI] = ACTIONS(1087), - [anon_sym_LT] = ACTIONS(1089), - [anon_sym_EQ] = ACTIONS(1087), - [anon_sym_GT] = ACTIONS(1087), - [anon_sym_QMARK] = ACTIONS(1087), - [anon_sym_AT] = ACTIONS(1087), - [anon_sym_LBRACK] = ACTIONS(1087), - [anon_sym_BSLASH] = ACTIONS(1089), - [anon_sym_RBRACK] = ACTIONS(1087), - [anon_sym_CARET] = ACTIONS(1087), - [anon_sym__] = ACTIONS(1087), - [anon_sym_BQUOTE] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1087), - [anon_sym_PIPE] = ACTIONS(1087), - [anon_sym_RBRACE] = ACTIONS(1087), - [anon_sym_TILDE] = ACTIONS(1087), - [aux_sym__html_block_1_token1] = ACTIONS(1087), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1089), - [anon_sym_LT_QMARK] = ACTIONS(1089), - [aux_sym__html_block_4_token1] = ACTIONS(1089), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1087), - [aux_sym__html_block_6_token1] = ACTIONS(1089), - [aux_sym__html_block_6_token2] = ACTIONS(1087), - [sym__open_tag_html_block] = ACTIONS(1087), - [sym__open_tag_html_block_newline] = ACTIONS(1087), - [sym__closing_tag_html_block] = ACTIONS(1087), - [sym__closing_tag_html_block_newline] = ACTIONS(1087), - [sym_backslash_escape] = ACTIONS(1087), - [sym_entity_reference] = ACTIONS(1087), - [sym_numeric_character_reference] = ACTIONS(1087), - [sym_uri_autolink] = ACTIONS(1087), - [sym_email_autolink] = ACTIONS(1087), - [sym__whitespace_ge_2] = ACTIONS(1087), - [aux_sym__whitespace_token1] = ACTIONS(1089), - [sym__word_no_digit] = ACTIONS(1087), - [sym__digits] = ACTIONS(1087), - [aux_sym__newline_token1] = ACTIONS(1087), - [sym__block_close] = ACTIONS(1087), - [sym__block_continuation] = ACTIONS(1091), - [sym__block_quote_continuation] = ACTIONS(1091), - [sym__block_quote_start] = ACTIONS(1087), - [sym__indented_chunk_start] = ACTIONS(1087), - [sym_atx_h1_marker] = ACTIONS(1087), - [sym_atx_h2_marker] = ACTIONS(1087), - [sym_atx_h3_marker] = ACTIONS(1087), - [sym_atx_h4_marker] = ACTIONS(1087), - [sym_atx_h5_marker] = ACTIONS(1087), - [sym_atx_h6_marker] = ACTIONS(1087), - [sym__thematic_break] = ACTIONS(1087), - [sym__list_marker_minus] = ACTIONS(1087), - [sym__list_marker_plus] = ACTIONS(1087), - [sym__list_marker_star] = ACTIONS(1087), - [sym__list_marker_parenthesis] = ACTIONS(1087), - [sym__list_marker_dot] = ACTIONS(1087), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1087), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1087), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1087), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1087), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1087), - [sym__fenced_code_block_start_backtick] = ACTIONS(1087), - [sym__fenced_code_block_start_tilde] = ACTIONS(1087), - [sym__blank_line_start] = ACTIONS(1087), - [sym__code_span_start] = ACTIONS(1087), - [sym__emphasis_open_star] = ACTIONS(1087), - [sym__emphasis_open_underscore] = ACTIONS(1087), - [sym__last_token_whitespace] = ACTIONS(1091), - }, - [251] = { - [aux_sym__ignore_matching_tokens] = STATE(201), - [anon_sym_BANG] = ACTIONS(1093), - [anon_sym_DQUOTE] = ACTIONS(1093), - [anon_sym_POUND] = ACTIONS(1093), - [anon_sym_DOLLAR] = ACTIONS(1093), - [anon_sym_PERCENT] = ACTIONS(1093), - [anon_sym_AMP] = ACTIONS(1095), - [anon_sym_SQUOTE] = ACTIONS(1093), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_RPAREN] = ACTIONS(1093), - [anon_sym_STAR] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(1093), - [anon_sym_COMMA] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_SLASH] = ACTIONS(1093), - [anon_sym_COLON] = ACTIONS(1093), - [anon_sym_SEMI] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1093), - [anon_sym_GT] = ACTIONS(1093), - [anon_sym_QMARK] = ACTIONS(1093), - [anon_sym_AT] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(1093), - [anon_sym_BSLASH] = ACTIONS(1095), - [anon_sym_RBRACK] = ACTIONS(1093), - [anon_sym_CARET] = ACTIONS(1093), - [anon_sym__] = ACTIONS(1093), - [anon_sym_BQUOTE] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1093), - [anon_sym_PIPE] = ACTIONS(1093), - [anon_sym_RBRACE] = ACTIONS(1093), - [anon_sym_TILDE] = ACTIONS(1093), - [aux_sym__html_block_1_token1] = ACTIONS(1093), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1095), - [anon_sym_LT_QMARK] = ACTIONS(1095), - [aux_sym__html_block_4_token1] = ACTIONS(1095), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1093), - [aux_sym__html_block_6_token1] = ACTIONS(1095), - [aux_sym__html_block_6_token2] = ACTIONS(1093), - [sym__open_tag_html_block] = ACTIONS(1093), - [sym__open_tag_html_block_newline] = ACTIONS(1093), - [sym__closing_tag_html_block] = ACTIONS(1093), - [sym__closing_tag_html_block_newline] = ACTIONS(1093), - [sym_backslash_escape] = ACTIONS(1093), - [sym_entity_reference] = ACTIONS(1093), - [sym_numeric_character_reference] = ACTIONS(1093), - [sym_uri_autolink] = ACTIONS(1093), - [sym_email_autolink] = ACTIONS(1093), - [sym__whitespace_ge_2] = ACTIONS(1093), - [aux_sym__whitespace_token1] = ACTIONS(1095), - [sym__word_no_digit] = ACTIONS(1093), - [sym__digits] = ACTIONS(1093), - [aux_sym__newline_token1] = ACTIONS(1093), - [sym__block_close] = ACTIONS(1093), - [sym__block_continuation] = ACTIONS(1097), - [sym__block_quote_continuation] = ACTIONS(1097), - [sym__block_quote_start] = ACTIONS(1093), - [sym__indented_chunk_start] = ACTIONS(1093), - [sym_atx_h1_marker] = ACTIONS(1093), - [sym_atx_h2_marker] = ACTIONS(1093), - [sym_atx_h3_marker] = ACTIONS(1093), - [sym_atx_h4_marker] = ACTIONS(1093), - [sym_atx_h5_marker] = ACTIONS(1093), - [sym_atx_h6_marker] = ACTIONS(1093), - [sym__thematic_break] = ACTIONS(1093), - [sym__list_marker_minus] = ACTIONS(1093), - [sym__list_marker_plus] = ACTIONS(1093), - [sym__list_marker_star] = ACTIONS(1093), - [sym__list_marker_parenthesis] = ACTIONS(1093), - [sym__list_marker_dot] = ACTIONS(1093), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1093), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1093), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1093), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1093), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1093), - [sym__fenced_code_block_start_backtick] = ACTIONS(1093), - [sym__fenced_code_block_start_tilde] = ACTIONS(1093), - [sym__blank_line_start] = ACTIONS(1093), - [sym__code_span_start] = ACTIONS(1093), - [sym__emphasis_open_star] = ACTIONS(1093), - [sym__emphasis_open_underscore] = ACTIONS(1093), - [sym__last_token_whitespace] = ACTIONS(1097), - }, - [252] = { - [aux_sym__ignore_matching_tokens] = STATE(205), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_DQUOTE] = ACTIONS(1099), - [anon_sym_POUND] = ACTIONS(1099), - [anon_sym_DOLLAR] = ACTIONS(1099), - [anon_sym_PERCENT] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1101), - [anon_sym_SQUOTE] = ACTIONS(1099), - [anon_sym_LPAREN] = ACTIONS(1099), - [anon_sym_RPAREN] = ACTIONS(1099), - [anon_sym_STAR] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1099), - [anon_sym_COMMA] = ACTIONS(1099), - [anon_sym_DASH] = ACTIONS(1099), - [anon_sym_DOT] = ACTIONS(1099), - [anon_sym_SLASH] = ACTIONS(1099), - [anon_sym_COLON] = ACTIONS(1099), - [anon_sym_SEMI] = ACTIONS(1099), - [anon_sym_LT] = ACTIONS(1101), - [anon_sym_EQ] = ACTIONS(1099), - [anon_sym_GT] = ACTIONS(1099), - [anon_sym_QMARK] = ACTIONS(1099), - [anon_sym_AT] = ACTIONS(1099), - [anon_sym_LBRACK] = ACTIONS(1099), - [anon_sym_BSLASH] = ACTIONS(1101), - [anon_sym_RBRACK] = ACTIONS(1099), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym__] = ACTIONS(1099), - [anon_sym_BQUOTE] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_PIPE] = ACTIONS(1099), - [anon_sym_RBRACE] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [aux_sym__html_block_1_token1] = ACTIONS(1099), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1101), - [anon_sym_LT_QMARK] = ACTIONS(1101), - [aux_sym__html_block_4_token1] = ACTIONS(1101), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1099), - [aux_sym__html_block_6_token1] = ACTIONS(1101), - [aux_sym__html_block_6_token2] = ACTIONS(1099), - [sym__open_tag_html_block] = ACTIONS(1099), - [sym__open_tag_html_block_newline] = ACTIONS(1099), - [sym__closing_tag_html_block] = ACTIONS(1099), - [sym__closing_tag_html_block_newline] = ACTIONS(1099), - [sym_backslash_escape] = ACTIONS(1099), - [sym_entity_reference] = ACTIONS(1099), - [sym_numeric_character_reference] = ACTIONS(1099), - [sym_uri_autolink] = ACTIONS(1099), - [sym_email_autolink] = ACTIONS(1099), - [sym__whitespace_ge_2] = ACTIONS(1099), - [aux_sym__whitespace_token1] = ACTIONS(1101), - [sym__word_no_digit] = ACTIONS(1099), - [sym__digits] = ACTIONS(1099), - [aux_sym__newline_token1] = ACTIONS(1099), - [sym__block_close] = ACTIONS(1099), - [sym__block_continuation] = ACTIONS(1103), - [sym__block_quote_continuation] = ACTIONS(1103), - [sym__block_quote_start] = ACTIONS(1099), - [sym__indented_chunk_start] = ACTIONS(1099), - [sym_atx_h1_marker] = ACTIONS(1099), - [sym_atx_h2_marker] = ACTIONS(1099), - [sym_atx_h3_marker] = ACTIONS(1099), - [sym_atx_h4_marker] = ACTIONS(1099), - [sym_atx_h5_marker] = ACTIONS(1099), - [sym_atx_h6_marker] = ACTIONS(1099), - [sym__thematic_break] = ACTIONS(1099), - [sym__list_marker_minus] = ACTIONS(1099), - [sym__list_marker_plus] = ACTIONS(1099), - [sym__list_marker_star] = ACTIONS(1099), - [sym__list_marker_parenthesis] = ACTIONS(1099), - [sym__list_marker_dot] = ACTIONS(1099), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1099), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1099), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1099), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1099), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1099), - [sym__fenced_code_block_start_backtick] = ACTIONS(1099), - [sym__fenced_code_block_start_tilde] = ACTIONS(1099), - [sym__blank_line_start] = ACTIONS(1099), - [sym__code_span_start] = ACTIONS(1099), - [sym__emphasis_open_star] = ACTIONS(1099), - [sym__emphasis_open_underscore] = ACTIONS(1099), - [sym__last_token_whitespace] = ACTIONS(1103), - }, - [253] = { - [aux_sym__ignore_matching_tokens] = STATE(215), - [anon_sym_BANG] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(1105), - [anon_sym_POUND] = ACTIONS(1105), - [anon_sym_DOLLAR] = ACTIONS(1105), - [anon_sym_PERCENT] = ACTIONS(1105), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_SQUOTE] = ACTIONS(1105), - [anon_sym_LPAREN] = ACTIONS(1105), - [anon_sym_RPAREN] = ACTIONS(1105), - [anon_sym_STAR] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_COMMA] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1105), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(1105), - [anon_sym_COLON] = ACTIONS(1105), - [anon_sym_SEMI] = ACTIONS(1105), - [anon_sym_LT] = ACTIONS(1107), - [anon_sym_EQ] = ACTIONS(1105), - [anon_sym_GT] = ACTIONS(1105), - [anon_sym_QMARK] = ACTIONS(1105), - [anon_sym_AT] = ACTIONS(1105), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_BSLASH] = ACTIONS(1107), - [anon_sym_RBRACK] = ACTIONS(1105), - [anon_sym_CARET] = ACTIONS(1105), - [anon_sym__] = ACTIONS(1105), - [anon_sym_BQUOTE] = ACTIONS(1105), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_PIPE] = ACTIONS(1105), - [anon_sym_RBRACE] = ACTIONS(1105), - [anon_sym_TILDE] = ACTIONS(1105), - [aux_sym__html_block_1_token1] = ACTIONS(1105), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1107), - [anon_sym_LT_QMARK] = ACTIONS(1107), - [aux_sym__html_block_4_token1] = ACTIONS(1107), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1105), - [aux_sym__html_block_6_token1] = ACTIONS(1107), - [aux_sym__html_block_6_token2] = ACTIONS(1105), - [sym__open_tag_html_block] = ACTIONS(1105), - [sym__open_tag_html_block_newline] = ACTIONS(1105), - [sym__closing_tag_html_block] = ACTIONS(1105), - [sym__closing_tag_html_block_newline] = ACTIONS(1105), - [sym_backslash_escape] = ACTIONS(1105), - [sym_entity_reference] = ACTIONS(1105), - [sym_numeric_character_reference] = ACTIONS(1105), - [sym_uri_autolink] = ACTIONS(1105), - [sym_email_autolink] = ACTIONS(1105), - [sym__whitespace_ge_2] = ACTIONS(1105), - [aux_sym__whitespace_token1] = ACTIONS(1107), - [sym__word_no_digit] = ACTIONS(1105), - [sym__digits] = ACTIONS(1105), - [aux_sym__newline_token1] = ACTIONS(1105), - [sym__block_close] = ACTIONS(1105), - [sym__block_continuation] = ACTIONS(1109), - [sym__block_quote_continuation] = ACTIONS(1109), - [sym__block_quote_start] = ACTIONS(1105), - [sym__indented_chunk_start] = ACTIONS(1105), - [sym_atx_h1_marker] = ACTIONS(1105), - [sym_atx_h2_marker] = ACTIONS(1105), - [sym_atx_h3_marker] = ACTIONS(1105), - [sym_atx_h4_marker] = ACTIONS(1105), - [sym_atx_h5_marker] = ACTIONS(1105), - [sym_atx_h6_marker] = ACTIONS(1105), - [sym__thematic_break] = ACTIONS(1105), - [sym__list_marker_minus] = ACTIONS(1105), - [sym__list_marker_plus] = ACTIONS(1105), - [sym__list_marker_star] = ACTIONS(1105), - [sym__list_marker_parenthesis] = ACTIONS(1105), - [sym__list_marker_dot] = ACTIONS(1105), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1105), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1105), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1105), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1105), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1105), - [sym__fenced_code_block_start_backtick] = ACTIONS(1105), - [sym__fenced_code_block_start_tilde] = ACTIONS(1105), - [sym__blank_line_start] = ACTIONS(1105), - [sym__code_span_start] = ACTIONS(1105), - [sym__emphasis_open_star] = ACTIONS(1105), - [sym__emphasis_open_underscore] = ACTIONS(1105), - [sym__last_token_whitespace] = ACTIONS(1109), - }, - [254] = { - [sym__soft_line_break] = STATE(254), - [sym__link_text] = STATE(2135), - [sym__link_text_non_empty] = STATE(707), - [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(708), - [sym__image_shortcut_link] = STATE(708), - [sym__image_full_reference_link] = STATE(708), - [sym__image_collapsed_reference_link] = STATE(708), - [sym__image_description] = STATE(2137), - [sym__image_description_non_empty] = STATE(709), - [sym_html_tag] = STATE(254), - [sym__open_tag] = STATE(710), - [sym__closing_tag] = STATE(710), - [sym__html_comment] = STATE(710), - [sym__processing_instruction] = STATE(710), - [sym__declaration] = STATE(710), - [sym__cdata_section] = STATE(710), - [sym_hard_line_break] = STATE(254), - [sym__whitespace] = STATE(254), - [sym__word] = STATE(254), - [sym__newline] = STATE(2120), - [sym__inline_element_no_star] = STATE(254), - [aux_sym__inline_no_star] = STATE(254), - [sym__text_inline_no_star] = STATE(254), - [sym__emphasis_star] = STATE(777), - [sym__strong_emphasis_star] = STATE(254), - [sym__emphasis_underscore] = STATE(777), - [sym__strong_emphasis_underscore] = STATE(254), - [sym__code_span] = STATE(254), - [anon_sym_BANG] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(1114), - [anon_sym_POUND] = ACTIONS(1114), - [anon_sym_DOLLAR] = ACTIONS(1114), - [anon_sym_PERCENT] = ACTIONS(1114), - [anon_sym_AMP] = ACTIONS(1117), - [anon_sym_SQUOTE] = ACTIONS(1114), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_RPAREN] = ACTIONS(1114), - [anon_sym_STAR] = ACTIONS(1114), - [anon_sym_PLUS] = ACTIONS(1114), - [anon_sym_COMMA] = ACTIONS(1114), - [anon_sym_DASH] = ACTIONS(1114), - [anon_sym_DOT] = ACTIONS(1114), - [anon_sym_SLASH] = ACTIONS(1114), - [anon_sym_COLON] = ACTIONS(1114), - [anon_sym_SEMI] = ACTIONS(1114), - [anon_sym_LT] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1114), - [anon_sym_GT] = ACTIONS(1114), - [anon_sym_QMARK] = ACTIONS(1114), - [anon_sym_AT] = ACTIONS(1114), - [anon_sym_LBRACK] = ACTIONS(1123), - [anon_sym_BSLASH] = ACTIONS(1126), - [anon_sym_RBRACK] = ACTIONS(1114), - [anon_sym_CARET] = ACTIONS(1114), - [anon_sym__] = ACTIONS(1114), - [anon_sym_BQUOTE] = ACTIONS(1114), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_PIPE] = ACTIONS(1114), - [anon_sym_RBRACE] = ACTIONS(1114), - [anon_sym_TILDE] = ACTIONS(1114), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1129), - [anon_sym_LT_QMARK] = ACTIONS(1132), - [aux_sym__html_block_4_token1] = ACTIONS(1135), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1138), - [sym_backslash_escape] = ACTIONS(1141), - [sym_entity_reference] = ACTIONS(1141), - [sym_numeric_character_reference] = ACTIONS(1141), - [sym_uri_autolink] = ACTIONS(1141), - [sym_email_autolink] = ACTIONS(1141), - [sym__whitespace_ge_2] = ACTIONS(1144), - [aux_sym__whitespace_token1] = ACTIONS(1147), - [sym__word_no_digit] = ACTIONS(1141), - [sym__digits] = ACTIONS(1141), - [aux_sym__newline_token1] = ACTIONS(1150), - [sym__code_span_start] = ACTIONS(1153), - [sym__emphasis_open_star] = ACTIONS(1156), - [sym__emphasis_open_underscore] = ACTIONS(1159), - [sym__emphasis_close_star] = ACTIONS(1162), - }, - [255] = { - [aux_sym__ignore_matching_tokens] = STATE(121), - [ts_builtin_sym_end] = 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), - [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(1047), - [sym_numeric_character_reference] = ACTIONS(1047), - [sym_uri_autolink] = ACTIONS(1047), - [sym_email_autolink] = 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(1164), - [sym__block_quote_continuation] = ACTIONS(1164), - [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__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__emphasis_open_star] = ACTIONS(1047), - [sym__emphasis_open_underscore] = ACTIONS(1047), - [sym__last_token_whitespace] = ACTIONS(1164), - }, - [256] = { - [aux_sym__ignore_matching_tokens] = STATE(202), - [ts_builtin_sym_end] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(691), - [anon_sym_POUND] = ACTIONS(691), - [anon_sym_DOLLAR] = ACTIONS(691), - [anon_sym_PERCENT] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(693), - [anon_sym_SQUOTE] = ACTIONS(691), - [anon_sym_LPAREN] = ACTIONS(691), - [anon_sym_RPAREN] = ACTIONS(691), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_COMMA] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(691), - [anon_sym_COLON] = ACTIONS(691), - [anon_sym_SEMI] = ACTIONS(691), - [anon_sym_LT] = ACTIONS(693), - [anon_sym_EQ] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(691), - [anon_sym_QMARK] = ACTIONS(691), - [anon_sym_AT] = ACTIONS(691), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_BSLASH] = ACTIONS(693), - [anon_sym_RBRACK] = ACTIONS(691), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym__] = ACTIONS(691), - [anon_sym_BQUOTE] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(691), - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_RBRACE] = ACTIONS(691), - [anon_sym_TILDE] = ACTIONS(691), - [aux_sym__html_block_1_token1] = ACTIONS(691), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(693), - [anon_sym_LT_QMARK] = ACTIONS(693), - [aux_sym__html_block_4_token1] = ACTIONS(693), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(691), - [aux_sym__html_block_6_token1] = ACTIONS(693), - [aux_sym__html_block_6_token2] = ACTIONS(691), - [sym__open_tag_html_block] = ACTIONS(691), - [sym__open_tag_html_block_newline] = ACTIONS(691), - [sym__closing_tag_html_block] = ACTIONS(691), - [sym__closing_tag_html_block_newline] = ACTIONS(691), - [sym_backslash_escape] = ACTIONS(691), - [sym_entity_reference] = ACTIONS(691), - [sym_numeric_character_reference] = ACTIONS(691), - [sym_uri_autolink] = ACTIONS(691), - [sym_email_autolink] = ACTIONS(691), - [sym__whitespace_ge_2] = ACTIONS(691), - [aux_sym__whitespace_token1] = ACTIONS(693), - [sym__word_no_digit] = ACTIONS(691), - [sym__digits] = ACTIONS(691), - [aux_sym__newline_token1] = ACTIONS(691), - [sym__block_continuation] = ACTIONS(111), - [sym__block_quote_continuation] = ACTIONS(111), - [sym__block_quote_start] = ACTIONS(691), - [sym__indented_chunk_start] = ACTIONS(691), - [sym_atx_h1_marker] = ACTIONS(691), - [sym_atx_h2_marker] = ACTIONS(691), - [sym_atx_h3_marker] = ACTIONS(691), - [sym_atx_h4_marker] = ACTIONS(691), - [sym_atx_h5_marker] = ACTIONS(691), - [sym_atx_h6_marker] = ACTIONS(691), - [sym__thematic_break] = ACTIONS(691), - [sym__list_marker_minus] = ACTIONS(691), - [sym__list_marker_plus] = ACTIONS(691), - [sym__list_marker_star] = ACTIONS(691), - [sym__list_marker_parenthesis] = ACTIONS(691), - [sym__list_marker_dot] = ACTIONS(691), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(691), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(691), - [sym__list_marker_star_dont_interrupt] = ACTIONS(691), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(691), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(691), - [sym__fenced_code_block_start_backtick] = ACTIONS(691), - [sym__fenced_code_block_start_tilde] = ACTIONS(691), - [sym__blank_line_start] = ACTIONS(691), - [sym__code_span_start] = ACTIONS(691), - [sym__emphasis_open_star] = ACTIONS(691), - [sym__emphasis_open_underscore] = ACTIONS(691), - [sym__last_token_whitespace] = ACTIONS(111), - }, - [257] = { - [aux_sym__ignore_matching_tokens] = STATE(221), - [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), - [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(990), - [sym_numeric_character_reference] = ACTIONS(990), - [sym_uri_autolink] = ACTIONS(990), - [sym_email_autolink] = 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(1166), - [sym__block_quote_continuation] = ACTIONS(1166), - [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__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__emphasis_open_star] = ACTIONS(990), - [sym__emphasis_open_underscore] = ACTIONS(990), - [sym__last_token_whitespace] = ACTIONS(1166), - }, - [258] = { - [sym__soft_line_break] = STATE(258), - [sym__link_text] = STATE(2133), - [sym__link_text_non_empty] = STATE(795), - [sym_shortcut_link] = STATE(258), - [sym_full_reference_link] = STATE(258), - [sym_collapsed_reference_link] = STATE(258), - [sym_inline_link] = STATE(258), - [sym_image] = STATE(258), - [sym__image_inline_link] = STATE(801), - [sym__image_shortcut_link] = STATE(801), - [sym__image_full_reference_link] = STATE(801), - [sym__image_collapsed_reference_link] = STATE(801), - [sym__image_description] = STATE(2122), - [sym__image_description_non_empty] = STATE(802), - [sym_html_tag] = STATE(258), - [sym__open_tag] = STATE(683), - [sym__closing_tag] = STATE(683), - [sym__html_comment] = STATE(683), - [sym__processing_instruction] = STATE(683), - [sym__declaration] = STATE(683), - [sym__cdata_section] = STATE(683), - [sym_hard_line_break] = STATE(258), - [sym__whitespace] = STATE(258), - [sym__word] = STATE(258), - [sym__newline] = STATE(2123), - [sym__inline_element_no_underscore] = STATE(258), - [aux_sym__inline_no_underscore] = STATE(258), - [sym__text_inline_no_underscore] = STATE(258), - [sym__emphasis_star] = STATE(761), - [sym__strong_emphasis_star] = STATE(258), - [sym__emphasis_underscore] = STATE(761), - [sym__strong_emphasis_underscore] = STATE(258), - [sym__code_span] = STATE(258), - [anon_sym_BANG] = ACTIONS(1168), - [anon_sym_DQUOTE] = ACTIONS(1171), - [anon_sym_POUND] = ACTIONS(1171), - [anon_sym_DOLLAR] = ACTIONS(1171), - [anon_sym_PERCENT] = ACTIONS(1171), - [anon_sym_AMP] = ACTIONS(1174), - [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(1177), - [anon_sym_EQ] = ACTIONS(1171), - [anon_sym_GT] = ACTIONS(1171), - [anon_sym_QMARK] = ACTIONS(1171), - [anon_sym_AT] = ACTIONS(1171), - [anon_sym_LBRACK] = ACTIONS(1180), - [anon_sym_BSLASH] = ACTIONS(1183), - [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(1186), - [anon_sym_LT_QMARK] = ACTIONS(1189), - [aux_sym__html_block_4_token1] = ACTIONS(1192), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1195), - [sym_backslash_escape] = ACTIONS(1198), - [sym_entity_reference] = ACTIONS(1198), - [sym_numeric_character_reference] = ACTIONS(1198), - [sym_uri_autolink] = ACTIONS(1198), - [sym_email_autolink] = ACTIONS(1198), - [sym__whitespace_ge_2] = ACTIONS(1201), - [aux_sym__whitespace_token1] = ACTIONS(1204), - [sym__word_no_digit] = ACTIONS(1198), - [sym__digits] = ACTIONS(1198), - [aux_sym__newline_token1] = ACTIONS(1207), - [sym__code_span_start] = ACTIONS(1210), - [sym__emphasis_open_star] = ACTIONS(1213), - [sym__emphasis_open_underscore] = ACTIONS(1216), - [sym__emphasis_close_underscore] = ACTIONS(1219), - }, - [259] = { - [aux_sym__ignore_matching_tokens] = STATE(275), - [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), - [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(990), - [sym_numeric_character_reference] = ACTIONS(990), - [sym_uri_autolink] = ACTIONS(990), - [sym_email_autolink] = 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(125), - [sym__block_quote_continuation] = ACTIONS(125), - [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__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__emphasis_open_star] = ACTIONS(990), - [sym__emphasis_open_underscore] = ACTIONS(990), - [sym__last_token_whitespace] = ACTIONS(125), - }, - [260] = { - [aux_sym__ignore_matching_tokens] = STATE(226), - [anon_sym_BANG] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(984), - [anon_sym_POUND] = ACTIONS(984), - [anon_sym_DOLLAR] = ACTIONS(984), - [anon_sym_PERCENT] = ACTIONS(984), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SQUOTE] = ACTIONS(984), - [anon_sym_LPAREN] = ACTIONS(984), - [anon_sym_RPAREN] = ACTIONS(984), - [anon_sym_STAR] = ACTIONS(984), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_COMMA] = ACTIONS(984), - [anon_sym_DASH] = ACTIONS(984), - [anon_sym_DOT] = ACTIONS(984), - [anon_sym_SLASH] = ACTIONS(984), - [anon_sym_COLON] = ACTIONS(984), - [anon_sym_SEMI] = ACTIONS(984), - [anon_sym_LT] = ACTIONS(986), - [anon_sym_EQ] = ACTIONS(984), - [anon_sym_GT] = ACTIONS(984), - [anon_sym_QMARK] = ACTIONS(984), - [anon_sym_AT] = ACTIONS(984), - [anon_sym_LBRACK] = ACTIONS(984), - [anon_sym_BSLASH] = ACTIONS(986), - [anon_sym_RBRACK] = ACTIONS(984), - [anon_sym_CARET] = ACTIONS(984), - [anon_sym__] = ACTIONS(984), - [anon_sym_BQUOTE] = ACTIONS(984), - [anon_sym_LBRACE] = ACTIONS(984), - [anon_sym_PIPE] = ACTIONS(984), - [anon_sym_RBRACE] = ACTIONS(984), - [anon_sym_TILDE] = ACTIONS(984), - [aux_sym__html_block_1_token1] = ACTIONS(984), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(986), - [anon_sym_LT_QMARK] = ACTIONS(986), - [aux_sym__html_block_4_token1] = ACTIONS(986), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(984), - [aux_sym__html_block_6_token1] = ACTIONS(986), - [aux_sym__html_block_6_token2] = ACTIONS(984), - [sym__open_tag_html_block] = ACTIONS(984), - [sym__open_tag_html_block_newline] = ACTIONS(984), - [sym__closing_tag_html_block] = ACTIONS(984), - [sym__closing_tag_html_block_newline] = ACTIONS(984), - [sym_backslash_escape] = ACTIONS(984), - [sym_entity_reference] = ACTIONS(984), - [sym_numeric_character_reference] = ACTIONS(984), - [sym_uri_autolink] = ACTIONS(984), - [sym_email_autolink] = ACTIONS(984), - [sym__whitespace_ge_2] = ACTIONS(984), - [aux_sym__whitespace_token1] = ACTIONS(986), - [sym__word_no_digit] = ACTIONS(984), - [sym__digits] = ACTIONS(984), - [aux_sym__newline_token1] = ACTIONS(984), - [sym__block_close] = ACTIONS(984), - [sym__block_continuation] = ACTIONS(1221), - [sym__block_quote_continuation] = ACTIONS(1221), - [sym__block_quote_start] = ACTIONS(984), - [sym__indented_chunk_start] = ACTIONS(984), - [sym_atx_h1_marker] = ACTIONS(984), - [sym_atx_h2_marker] = ACTIONS(984), - [sym_atx_h3_marker] = ACTIONS(984), - [sym_atx_h4_marker] = ACTIONS(984), - [sym_atx_h5_marker] = ACTIONS(984), - [sym_atx_h6_marker] = ACTIONS(984), - [sym__thematic_break] = ACTIONS(984), - [sym__list_marker_minus] = ACTIONS(984), - [sym__list_marker_plus] = ACTIONS(984), - [sym__list_marker_star] = ACTIONS(984), - [sym__list_marker_parenthesis] = ACTIONS(984), - [sym__list_marker_dot] = ACTIONS(984), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(984), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(984), - [sym__list_marker_star_dont_interrupt] = ACTIONS(984), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(984), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(984), - [sym__fenced_code_block_start_backtick] = ACTIONS(984), - [sym__fenced_code_block_start_tilde] = ACTIONS(984), - [sym__blank_line_start] = ACTIONS(984), - [sym__code_span_start] = ACTIONS(984), - [sym__emphasis_open_star] = ACTIONS(984), - [sym__emphasis_open_underscore] = ACTIONS(984), - [sym__last_token_whitespace] = ACTIONS(1221), - }, - [261] = { - [aux_sym__ignore_matching_tokens] = STATE(124), - [ts_builtin_sym_end] = 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), - [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(1053), - [sym_numeric_character_reference] = ACTIONS(1053), - [sym_uri_autolink] = ACTIONS(1053), - [sym_email_autolink] = 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(1223), - [sym__block_quote_continuation] = ACTIONS(1223), - [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__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__emphasis_open_star] = ACTIONS(1053), - [sym__emphasis_open_underscore] = ACTIONS(1053), - [sym__last_token_whitespace] = ACTIONS(1223), - }, - [262] = { - [aux_sym__ignore_matching_tokens] = STATE(130), - [ts_builtin_sym_end] = 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), - [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(1059), - [sym_numeric_character_reference] = ACTIONS(1059), - [sym_uri_autolink] = ACTIONS(1059), - [sym_email_autolink] = 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(1225), - [sym__block_quote_continuation] = ACTIONS(1225), - [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__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__emphasis_open_star] = ACTIONS(1059), - [sym__emphasis_open_underscore] = ACTIONS(1059), - [sym__last_token_whitespace] = ACTIONS(1225), - }, - [263] = { - [aux_sym__ignore_matching_tokens] = STATE(275), - [anon_sym_BANG] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(984), - [anon_sym_POUND] = ACTIONS(984), - [anon_sym_DOLLAR] = ACTIONS(984), - [anon_sym_PERCENT] = ACTIONS(984), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SQUOTE] = ACTIONS(984), - [anon_sym_LPAREN] = ACTIONS(984), - [anon_sym_RPAREN] = ACTIONS(984), - [anon_sym_STAR] = ACTIONS(984), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_COMMA] = ACTIONS(984), - [anon_sym_DASH] = ACTIONS(984), - [anon_sym_DOT] = ACTIONS(984), - [anon_sym_SLASH] = ACTIONS(984), - [anon_sym_COLON] = ACTIONS(984), - [anon_sym_SEMI] = ACTIONS(984), - [anon_sym_LT] = ACTIONS(986), - [anon_sym_EQ] = ACTIONS(984), - [anon_sym_GT] = ACTIONS(984), - [anon_sym_QMARK] = ACTIONS(984), - [anon_sym_AT] = ACTIONS(984), - [anon_sym_LBRACK] = ACTIONS(984), - [anon_sym_BSLASH] = ACTIONS(986), - [anon_sym_RBRACK] = ACTIONS(984), - [anon_sym_CARET] = ACTIONS(984), - [anon_sym__] = ACTIONS(984), - [anon_sym_BQUOTE] = ACTIONS(984), - [anon_sym_LBRACE] = ACTIONS(984), - [anon_sym_PIPE] = ACTIONS(984), - [anon_sym_RBRACE] = ACTIONS(984), - [anon_sym_TILDE] = ACTIONS(984), - [aux_sym__html_block_1_token1] = ACTIONS(984), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(986), - [anon_sym_LT_QMARK] = ACTIONS(986), - [aux_sym__html_block_4_token1] = ACTIONS(986), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(984), - [aux_sym__html_block_6_token1] = ACTIONS(986), - [aux_sym__html_block_6_token2] = ACTIONS(984), - [sym__open_tag_html_block] = ACTIONS(984), - [sym__open_tag_html_block_newline] = ACTIONS(984), - [sym__closing_tag_html_block] = ACTIONS(984), - [sym__closing_tag_html_block_newline] = ACTIONS(984), - [sym_backslash_escape] = ACTIONS(984), - [sym_entity_reference] = ACTIONS(984), - [sym_numeric_character_reference] = ACTIONS(984), - [sym_uri_autolink] = ACTIONS(984), - [sym_email_autolink] = ACTIONS(984), - [sym__whitespace_ge_2] = ACTIONS(984), - [aux_sym__whitespace_token1] = ACTIONS(986), - [sym__word_no_digit] = ACTIONS(984), - [sym__digits] = ACTIONS(984), - [aux_sym__newline_token1] = ACTIONS(984), - [sym__block_close] = ACTIONS(984), - [sym__block_continuation] = ACTIONS(125), - [sym__block_quote_continuation] = ACTIONS(125), - [sym__block_quote_start] = ACTIONS(984), - [sym__indented_chunk_start] = ACTIONS(984), - [sym_atx_h1_marker] = ACTIONS(984), - [sym_atx_h2_marker] = ACTIONS(984), - [sym_atx_h3_marker] = ACTIONS(984), - [sym_atx_h4_marker] = ACTIONS(984), - [sym_atx_h5_marker] = ACTIONS(984), - [sym_atx_h6_marker] = ACTIONS(984), - [sym__thematic_break] = ACTIONS(984), - [sym__list_marker_minus] = ACTIONS(984), - [sym__list_marker_plus] = ACTIONS(984), - [sym__list_marker_star] = ACTIONS(984), - [sym__list_marker_parenthesis] = ACTIONS(984), - [sym__list_marker_dot] = ACTIONS(984), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(984), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(984), - [sym__list_marker_star_dont_interrupt] = ACTIONS(984), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(984), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(984), - [sym__fenced_code_block_start_backtick] = ACTIONS(984), - [sym__fenced_code_block_start_tilde] = ACTIONS(984), - [sym__blank_line_start] = ACTIONS(984), - [sym__code_span_start] = ACTIONS(984), - [sym__emphasis_open_star] = ACTIONS(984), - [sym__emphasis_open_underscore] = ACTIONS(984), - [sym__last_token_whitespace] = ACTIONS(125), - }, - [264] = { - [aux_sym__ignore_matching_tokens] = STATE(275), - [anon_sym_BANG] = ACTIONS(407), - [anon_sym_DQUOTE] = ACTIONS(407), - [anon_sym_POUND] = ACTIONS(407), - [anon_sym_DOLLAR] = ACTIONS(407), - [anon_sym_PERCENT] = ACTIONS(407), - [anon_sym_AMP] = ACTIONS(409), - [anon_sym_SQUOTE] = ACTIONS(407), - [anon_sym_LPAREN] = ACTIONS(407), - [anon_sym_RPAREN] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(407), - [anon_sym_PLUS] = ACTIONS(407), - [anon_sym_COMMA] = ACTIONS(407), - [anon_sym_DASH] = ACTIONS(407), - [anon_sym_DOT] = ACTIONS(407), - [anon_sym_SLASH] = ACTIONS(407), - [anon_sym_COLON] = ACTIONS(407), - [anon_sym_SEMI] = ACTIONS(407), - [anon_sym_LT] = ACTIONS(409), - [anon_sym_EQ] = ACTIONS(407), - [anon_sym_GT] = ACTIONS(407), - [anon_sym_QMARK] = ACTIONS(407), - [anon_sym_AT] = ACTIONS(407), - [anon_sym_LBRACK] = ACTIONS(407), - [anon_sym_BSLASH] = ACTIONS(409), - [anon_sym_RBRACK] = ACTIONS(407), - [anon_sym_CARET] = ACTIONS(407), - [anon_sym__] = ACTIONS(407), - [anon_sym_BQUOTE] = ACTIONS(407), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_PIPE] = ACTIONS(407), - [anon_sym_RBRACE] = ACTIONS(407), - [anon_sym_TILDE] = ACTIONS(407), - [aux_sym__html_block_1_token1] = ACTIONS(407), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(409), - [anon_sym_LT_QMARK] = ACTIONS(409), - [aux_sym__html_block_4_token1] = ACTIONS(409), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(407), - [aux_sym__html_block_6_token1] = ACTIONS(409), - [aux_sym__html_block_6_token2] = ACTIONS(407), - [sym__open_tag_html_block] = ACTIONS(407), - [sym__open_tag_html_block_newline] = ACTIONS(407), - [sym__closing_tag_html_block] = ACTIONS(407), - [sym__closing_tag_html_block_newline] = ACTIONS(407), - [sym_backslash_escape] = ACTIONS(407), - [sym_entity_reference] = ACTIONS(407), - [sym_numeric_character_reference] = ACTIONS(407), - [sym_uri_autolink] = ACTIONS(407), - [sym_email_autolink] = ACTIONS(407), - [sym__whitespace_ge_2] = ACTIONS(407), - [aux_sym__whitespace_token1] = ACTIONS(409), - [sym__word_no_digit] = ACTIONS(407), - [sym__digits] = ACTIONS(407), - [aux_sym__newline_token1] = ACTIONS(407), - [sym__block_close] = ACTIONS(407), - [sym__block_continuation] = ACTIONS(125), - [sym__block_quote_continuation] = ACTIONS(125), - [sym__block_quote_start] = ACTIONS(407), - [sym__indented_chunk_start] = ACTIONS(407), - [sym_atx_h1_marker] = ACTIONS(407), - [sym_atx_h2_marker] = ACTIONS(407), - [sym_atx_h3_marker] = ACTIONS(407), - [sym_atx_h4_marker] = ACTIONS(407), - [sym_atx_h5_marker] = ACTIONS(407), - [sym_atx_h6_marker] = ACTIONS(407), - [sym__thematic_break] = ACTIONS(407), - [sym__list_marker_minus] = ACTIONS(407), - [sym__list_marker_plus] = ACTIONS(407), - [sym__list_marker_star] = ACTIONS(407), - [sym__list_marker_parenthesis] = ACTIONS(407), - [sym__list_marker_dot] = ACTIONS(407), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(407), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(407), - [sym__list_marker_star_dont_interrupt] = ACTIONS(407), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(407), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(407), - [sym__fenced_code_block_start_backtick] = ACTIONS(407), - [sym__fenced_code_block_start_tilde] = ACTIONS(407), - [sym__blank_line_start] = ACTIONS(407), - [sym__code_span_start] = ACTIONS(407), - [sym__emphasis_open_star] = ACTIONS(407), - [sym__emphasis_open_underscore] = ACTIONS(407), - [sym__last_token_whitespace] = ACTIONS(125), + [sym__block_continuation] = ACTIONS(113), + [sym__block_quote_continuation] = ACTIONS(113), + [sym__block_quote_start] = ACTIONS(870), + [sym__indented_chunk_start] = ACTIONS(870), + [sym_atx_h1_marker] = ACTIONS(870), + [sym_atx_h2_marker] = ACTIONS(870), + [sym_atx_h3_marker] = ACTIONS(870), + [sym_atx_h4_marker] = ACTIONS(870), + [sym_atx_h5_marker] = ACTIONS(870), + [sym_atx_h6_marker] = ACTIONS(870), + [sym__thematic_break] = ACTIONS(870), + [sym__list_marker_minus] = ACTIONS(870), + [sym__list_marker_plus] = ACTIONS(870), + [sym__list_marker_star] = ACTIONS(870), + [sym__list_marker_parenthesis] = ACTIONS(870), + [sym__list_marker_dot] = ACTIONS(870), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(870), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(870), + [sym__list_marker_star_dont_interrupt] = ACTIONS(870), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(870), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(870), + [sym__fenced_code_block_start_backtick] = ACTIONS(870), + [sym__fenced_code_block_start_tilde] = ACTIONS(870), + [sym__blank_line_start] = ACTIONS(870), + [sym__code_span_start] = ACTIONS(870), + [sym__emphasis_open_star] = ACTIONS(870), + [sym__emphasis_open_underscore] = ACTIONS(870), + [sym__last_token_whitespace] = ACTIONS(113), }, [265] = { - [aux_sym__ignore_matching_tokens] = STATE(275), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_DQUOTE] = ACTIONS(389), - [anon_sym_POUND] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(389), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_RPAREN] = ACTIONS(389), - [anon_sym_STAR] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_COMMA] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_DOT] = ACTIONS(389), - [anon_sym_SLASH] = ACTIONS(389), - [anon_sym_COLON] = ACTIONS(389), - [anon_sym_SEMI] = ACTIONS(389), - [anon_sym_LT] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(389), - [anon_sym_GT] = ACTIONS(389), - [anon_sym_QMARK] = ACTIONS(389), - [anon_sym_AT] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_BSLASH] = ACTIONS(391), - [anon_sym_RBRACK] = ACTIONS(389), - [anon_sym_CARET] = ACTIONS(389), - [anon_sym__] = ACTIONS(389), - [anon_sym_BQUOTE] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(389), - [anon_sym_RBRACE] = ACTIONS(389), - [anon_sym_TILDE] = ACTIONS(389), - [aux_sym__html_block_1_token1] = ACTIONS(389), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(391), - [anon_sym_LT_QMARK] = ACTIONS(391), - [aux_sym__html_block_4_token1] = ACTIONS(391), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(389), - [aux_sym__html_block_6_token1] = ACTIONS(391), - [aux_sym__html_block_6_token2] = ACTIONS(389), - [sym__open_tag_html_block] = ACTIONS(389), - [sym__open_tag_html_block_newline] = ACTIONS(389), - [sym__closing_tag_html_block] = ACTIONS(389), - [sym__closing_tag_html_block_newline] = ACTIONS(389), - [sym_backslash_escape] = ACTIONS(389), - [sym_entity_reference] = ACTIONS(389), - [sym_numeric_character_reference] = ACTIONS(389), - [sym_uri_autolink] = ACTIONS(389), - [sym_email_autolink] = ACTIONS(389), - [sym__whitespace_ge_2] = ACTIONS(389), - [aux_sym__whitespace_token1] = ACTIONS(391), - [sym__word_no_digit] = ACTIONS(389), - [sym__digits] = ACTIONS(389), - [aux_sym__newline_token1] = ACTIONS(389), - [sym__block_close] = ACTIONS(389), - [sym__block_continuation] = ACTIONS(125), - [sym__block_quote_continuation] = ACTIONS(125), - [sym__block_quote_start] = ACTIONS(389), - [sym__indented_chunk_start] = ACTIONS(389), - [sym_atx_h1_marker] = ACTIONS(389), - [sym_atx_h2_marker] = ACTIONS(389), - [sym_atx_h3_marker] = ACTIONS(389), - [sym_atx_h4_marker] = ACTIONS(389), - [sym_atx_h5_marker] = ACTIONS(389), - [sym_atx_h6_marker] = ACTIONS(389), - [sym__thematic_break] = ACTIONS(389), - [sym__list_marker_minus] = ACTIONS(389), - [sym__list_marker_plus] = ACTIONS(389), - [sym__list_marker_star] = ACTIONS(389), - [sym__list_marker_parenthesis] = ACTIONS(389), - [sym__list_marker_dot] = ACTIONS(389), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(389), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(389), - [sym__list_marker_star_dont_interrupt] = ACTIONS(389), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(389), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(389), - [sym__fenced_code_block_start_backtick] = ACTIONS(389), - [sym__fenced_code_block_start_tilde] = ACTIONS(389), - [sym__blank_line_start] = ACTIONS(389), - [sym__code_span_start] = ACTIONS(389), - [sym__emphasis_open_star] = ACTIONS(389), - [sym__emphasis_open_underscore] = ACTIONS(389), - [sym__last_token_whitespace] = ACTIONS(125), + [aux_sym__ignore_matching_tokens] = STATE(235), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_DQUOTE] = ACTIONS(709), + [anon_sym_POUND] = ACTIONS(709), + [anon_sym_DOLLAR] = ACTIONS(709), + [anon_sym_PERCENT] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(709), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_RPAREN] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_COMMA] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_DOT] = ACTIONS(709), + [anon_sym_SLASH] = ACTIONS(709), + [anon_sym_COLON] = ACTIONS(709), + [anon_sym_SEMI] = ACTIONS(709), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_EQ] = ACTIONS(709), + [anon_sym_GT] = ACTIONS(709), + [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_AT] = ACTIONS(709), + [anon_sym_LBRACK] = ACTIONS(709), + [anon_sym_BSLASH] = ACTIONS(711), + [anon_sym_RBRACK] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym__] = ACTIONS(709), + [anon_sym_BQUOTE] = ACTIONS(709), + [anon_sym_LBRACE] = ACTIONS(709), + [anon_sym_PIPE] = ACTIONS(709), + [anon_sym_RBRACE] = ACTIONS(709), + [anon_sym_TILDE] = ACTIONS(709), + [aux_sym__html_block_1_token1] = ACTIONS(709), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(711), + [anon_sym_LT_QMARK] = ACTIONS(711), + [aux_sym__html_block_4_token1] = ACTIONS(711), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(709), + [aux_sym__html_block_6_token1] = ACTIONS(711), + [aux_sym__html_block_6_token2] = ACTIONS(709), + [sym__open_tag_html_block] = ACTIONS(709), + [sym__open_tag_html_block_newline] = ACTIONS(709), + [sym__closing_tag_html_block] = ACTIONS(709), + [sym__closing_tag_html_block_newline] = ACTIONS(709), + [sym_backslash_escape] = ACTIONS(709), + [sym_entity_reference] = ACTIONS(709), + [sym_numeric_character_reference] = ACTIONS(709), + [sym_uri_autolink] = ACTIONS(709), + [sym_email_autolink] = ACTIONS(709), + [sym__whitespace_ge_2] = ACTIONS(709), + [aux_sym__whitespace_token1] = ACTIONS(711), + [sym__word_no_digit] = ACTIONS(709), + [sym__digits] = ACTIONS(709), + [aux_sym__newline_token1] = ACTIONS(709), + [sym__block_close] = ACTIONS(709), + [sym__block_continuation] = ACTIONS(1237), + [sym__block_quote_continuation] = ACTIONS(1237), + [sym__block_quote_start] = ACTIONS(709), + [sym__indented_chunk_start] = ACTIONS(709), + [sym_atx_h1_marker] = ACTIONS(709), + [sym_atx_h2_marker] = ACTIONS(709), + [sym_atx_h3_marker] = ACTIONS(709), + [sym_atx_h4_marker] = ACTIONS(709), + [sym_atx_h5_marker] = ACTIONS(709), + [sym_atx_h6_marker] = ACTIONS(709), + [sym__thematic_break] = ACTIONS(709), + [sym__list_marker_minus] = ACTIONS(709), + [sym__list_marker_plus] = ACTIONS(709), + [sym__list_marker_star] = ACTIONS(709), + [sym__list_marker_parenthesis] = ACTIONS(709), + [sym__list_marker_dot] = ACTIONS(709), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(709), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(709), + [sym__list_marker_star_dont_interrupt] = ACTIONS(709), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(709), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(709), + [sym__fenced_code_block_start_backtick] = ACTIONS(709), + [sym__fenced_code_block_start_tilde] = ACTIONS(709), + [sym__blank_line_start] = ACTIONS(709), + [sym__code_span_start] = ACTIONS(709), + [sym__emphasis_open_star] = ACTIONS(709), + [sym__emphasis_open_underscore] = ACTIONS(709), + [sym__last_token_whitespace] = ACTIONS(1237), }, [266] = { - [aux_sym__ignore_matching_tokens] = STATE(135), - [ts_builtin_sym_end] = ACTIONS(1069), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_DQUOTE] = ACTIONS(1069), - [anon_sym_POUND] = ACTIONS(1069), - [anon_sym_DOLLAR] = ACTIONS(1069), - [anon_sym_PERCENT] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1071), - [anon_sym_SQUOTE] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(1069), - [anon_sym_RPAREN] = ACTIONS(1069), - [anon_sym_STAR] = ACTIONS(1069), - [anon_sym_PLUS] = ACTIONS(1069), - [anon_sym_COMMA] = ACTIONS(1069), - [anon_sym_DASH] = ACTIONS(1069), - [anon_sym_DOT] = ACTIONS(1069), - [anon_sym_SLASH] = ACTIONS(1069), - [anon_sym_COLON] = ACTIONS(1069), - [anon_sym_SEMI] = ACTIONS(1069), - [anon_sym_LT] = ACTIONS(1071), - [anon_sym_EQ] = ACTIONS(1069), - [anon_sym_GT] = ACTIONS(1069), - [anon_sym_QMARK] = ACTIONS(1069), - [anon_sym_AT] = ACTIONS(1069), - [anon_sym_LBRACK] = ACTIONS(1069), - [anon_sym_BSLASH] = ACTIONS(1071), - [anon_sym_RBRACK] = ACTIONS(1069), - [anon_sym_CARET] = ACTIONS(1069), - [anon_sym__] = ACTIONS(1069), - [anon_sym_BQUOTE] = ACTIONS(1069), - [anon_sym_LBRACE] = ACTIONS(1069), - [anon_sym_PIPE] = ACTIONS(1069), - [anon_sym_RBRACE] = ACTIONS(1069), - [anon_sym_TILDE] = ACTIONS(1069), - [aux_sym__html_block_1_token1] = ACTIONS(1069), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1071), - [anon_sym_LT_QMARK] = ACTIONS(1071), - [aux_sym__html_block_4_token1] = ACTIONS(1071), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1069), - [aux_sym__html_block_6_token1] = ACTIONS(1071), - [aux_sym__html_block_6_token2] = ACTIONS(1069), - [sym__open_tag_html_block] = ACTIONS(1069), - [sym__open_tag_html_block_newline] = ACTIONS(1069), - [sym__closing_tag_html_block] = ACTIONS(1069), - [sym__closing_tag_html_block_newline] = ACTIONS(1069), - [sym_backslash_escape] = ACTIONS(1069), - [sym_entity_reference] = ACTIONS(1069), - [sym_numeric_character_reference] = ACTIONS(1069), - [sym_uri_autolink] = ACTIONS(1069), - [sym_email_autolink] = ACTIONS(1069), - [sym__whitespace_ge_2] = ACTIONS(1069), - [aux_sym__whitespace_token1] = ACTIONS(1071), - [sym__word_no_digit] = ACTIONS(1069), - [sym__digits] = ACTIONS(1069), - [aux_sym__newline_token1] = ACTIONS(1069), - [sym__block_continuation] = ACTIONS(1227), - [sym__block_quote_continuation] = ACTIONS(1227), - [sym__block_quote_start] = ACTIONS(1069), - [sym__indented_chunk_start] = ACTIONS(1069), - [sym_atx_h1_marker] = ACTIONS(1069), - [sym_atx_h2_marker] = ACTIONS(1069), - [sym_atx_h3_marker] = ACTIONS(1069), - [sym_atx_h4_marker] = ACTIONS(1069), - [sym_atx_h5_marker] = ACTIONS(1069), - [sym_atx_h6_marker] = ACTIONS(1069), - [sym__thematic_break] = ACTIONS(1069), - [sym__list_marker_minus] = ACTIONS(1069), - [sym__list_marker_plus] = ACTIONS(1069), - [sym__list_marker_star] = ACTIONS(1069), - [sym__list_marker_parenthesis] = ACTIONS(1069), - [sym__list_marker_dot] = ACTIONS(1069), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1069), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1069), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1069), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1069), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1069), - [sym__fenced_code_block_start_backtick] = ACTIONS(1069), - [sym__fenced_code_block_start_tilde] = ACTIONS(1069), - [sym__blank_line_start] = ACTIONS(1069), - [sym__code_span_start] = ACTIONS(1069), - [sym__emphasis_open_star] = ACTIONS(1069), - [sym__emphasis_open_underscore] = ACTIONS(1069), - [sym__last_token_whitespace] = ACTIONS(1227), + [aux_sym__ignore_matching_tokens] = STATE(160), + [anon_sym_BANG] = ACTIONS(637), + [anon_sym_DQUOTE] = ACTIONS(637), + [anon_sym_POUND] = ACTIONS(637), + [anon_sym_DOLLAR] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(639), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_RPAREN] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_COMMA] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_DOT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(637), + [anon_sym_COLON] = ACTIONS(637), + [anon_sym_SEMI] = ACTIONS(637), + [anon_sym_LT] = ACTIONS(639), + [anon_sym_EQ] = ACTIONS(637), + [anon_sym_GT] = ACTIONS(637), + [anon_sym_QMARK] = ACTIONS(637), + [anon_sym_AT] = ACTIONS(637), + [anon_sym_LBRACK] = ACTIONS(637), + [anon_sym_BSLASH] = ACTIONS(639), + [anon_sym_RBRACK] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym__] = ACTIONS(637), + [anon_sym_BQUOTE] = ACTIONS(637), + [anon_sym_LBRACE] = ACTIONS(637), + [anon_sym_PIPE] = ACTIONS(637), + [anon_sym_RBRACE] = ACTIONS(637), + [anon_sym_TILDE] = ACTIONS(637), + [aux_sym__html_block_1_token1] = ACTIONS(637), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(639), + [anon_sym_LT_QMARK] = ACTIONS(639), + [aux_sym__html_block_4_token1] = ACTIONS(639), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(637), + [aux_sym__html_block_6_token1] = ACTIONS(639), + [aux_sym__html_block_6_token2] = ACTIONS(637), + [sym__open_tag_html_block] = ACTIONS(637), + [sym__open_tag_html_block_newline] = ACTIONS(637), + [sym__closing_tag_html_block] = ACTIONS(637), + [sym__closing_tag_html_block_newline] = ACTIONS(637), + [sym_backslash_escape] = ACTIONS(637), + [sym_entity_reference] = ACTIONS(637), + [sym_numeric_character_reference] = ACTIONS(637), + [sym_uri_autolink] = ACTIONS(637), + [sym_email_autolink] = ACTIONS(637), + [sym__whitespace_ge_2] = ACTIONS(637), + [aux_sym__whitespace_token1] = ACTIONS(639), + [sym__word_no_digit] = ACTIONS(637), + [sym__digits] = ACTIONS(637), + [aux_sym__newline_token1] = ACTIONS(637), + [sym__block_close] = ACTIONS(637), + [sym__block_continuation] = ACTIONS(113), + [sym__block_quote_continuation] = ACTIONS(113), + [sym__block_quote_start] = ACTIONS(637), + [sym__indented_chunk_start] = ACTIONS(637), + [sym_atx_h1_marker] = ACTIONS(637), + [sym_atx_h2_marker] = ACTIONS(637), + [sym_atx_h3_marker] = ACTIONS(637), + [sym_atx_h4_marker] = ACTIONS(637), + [sym_atx_h5_marker] = ACTIONS(637), + [sym_atx_h6_marker] = ACTIONS(637), + [sym__thematic_break] = ACTIONS(637), + [sym__list_marker_minus] = ACTIONS(637), + [sym__list_marker_plus] = ACTIONS(637), + [sym__list_marker_star] = ACTIONS(637), + [sym__list_marker_parenthesis] = ACTIONS(637), + [sym__list_marker_dot] = ACTIONS(637), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(637), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(637), + [sym__list_marker_star_dont_interrupt] = ACTIONS(637), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(637), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(637), + [sym__fenced_code_block_start_backtick] = ACTIONS(637), + [sym__fenced_code_block_start_tilde] = ACTIONS(637), + [sym__blank_line_start] = ACTIONS(637), + [sym__code_span_start] = ACTIONS(637), + [sym__emphasis_open_star] = ACTIONS(637), + [sym__emphasis_open_underscore] = ACTIONS(637), + [sym__last_token_whitespace] = ACTIONS(113), }, [267] = { - [aux_sym__ignore_matching_tokens] = STATE(148), - [ts_builtin_sym_end] = 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), - [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(1075), - [sym_numeric_character_reference] = ACTIONS(1075), - [sym_uri_autolink] = ACTIONS(1075), - [sym_email_autolink] = 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_continuation] = ACTIONS(1229), - [sym__block_quote_continuation] = ACTIONS(1229), - [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__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(1075), - [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(1075), - [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), - [sym__last_token_whitespace] = ACTIONS(1229), + [aux_sym__ignore_matching_tokens] = STATE(160), + [anon_sym_BANG] = ACTIONS(864), + [anon_sym_DQUOTE] = ACTIONS(864), + [anon_sym_POUND] = ACTIONS(864), + [anon_sym_DOLLAR] = ACTIONS(864), + [anon_sym_PERCENT] = ACTIONS(864), + [anon_sym_AMP] = ACTIONS(866), + [anon_sym_SQUOTE] = ACTIONS(864), + [anon_sym_LPAREN] = ACTIONS(864), + [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(866), + [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(866), + [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), + [aux_sym__html_block_1_token1] = ACTIONS(864), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(866), + [anon_sym_LT_QMARK] = ACTIONS(866), + [aux_sym__html_block_4_token1] = ACTIONS(866), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(864), + [aux_sym__html_block_6_token1] = ACTIONS(866), + [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_entity_reference] = ACTIONS(864), + [sym_numeric_character_reference] = ACTIONS(864), + [sym_uri_autolink] = ACTIONS(864), + [sym_email_autolink] = ACTIONS(864), + [sym__whitespace_ge_2] = ACTIONS(864), + [aux_sym__whitespace_token1] = ACTIONS(866), + [sym__word_no_digit] = ACTIONS(864), + [sym__digits] = ACTIONS(864), + [aux_sym__newline_token1] = ACTIONS(864), + [sym__block_close] = ACTIONS(864), + [sym__block_continuation] = ACTIONS(113), + [sym__block_quote_continuation] = ACTIONS(113), + [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__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__last_token_whitespace] = ACTIONS(113), }, [268] = { - [aux_sym__ignore_matching_tokens] = STATE(161), - [ts_builtin_sym_end] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1081), - [anon_sym_DQUOTE] = ACTIONS(1081), - [anon_sym_POUND] = ACTIONS(1081), - [anon_sym_DOLLAR] = ACTIONS(1081), - [anon_sym_PERCENT] = ACTIONS(1081), - [anon_sym_AMP] = ACTIONS(1083), - [anon_sym_SQUOTE] = ACTIONS(1081), - [anon_sym_LPAREN] = ACTIONS(1081), - [anon_sym_RPAREN] = ACTIONS(1081), - [anon_sym_STAR] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1081), - [anon_sym_COMMA] = ACTIONS(1081), - [anon_sym_DASH] = ACTIONS(1081), - [anon_sym_DOT] = ACTIONS(1081), - [anon_sym_SLASH] = ACTIONS(1081), - [anon_sym_COLON] = ACTIONS(1081), - [anon_sym_SEMI] = ACTIONS(1081), - [anon_sym_LT] = ACTIONS(1083), - [anon_sym_EQ] = ACTIONS(1081), - [anon_sym_GT] = ACTIONS(1081), - [anon_sym_QMARK] = ACTIONS(1081), - [anon_sym_AT] = ACTIONS(1081), - [anon_sym_LBRACK] = ACTIONS(1081), - [anon_sym_BSLASH] = ACTIONS(1083), - [anon_sym_RBRACK] = ACTIONS(1081), - [anon_sym_CARET] = ACTIONS(1081), - [anon_sym__] = ACTIONS(1081), - [anon_sym_BQUOTE] = ACTIONS(1081), - [anon_sym_LBRACE] = ACTIONS(1081), - [anon_sym_PIPE] = ACTIONS(1081), - [anon_sym_RBRACE] = ACTIONS(1081), - [anon_sym_TILDE] = ACTIONS(1081), - [aux_sym__html_block_1_token1] = ACTIONS(1081), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1083), - [anon_sym_LT_QMARK] = ACTIONS(1083), - [aux_sym__html_block_4_token1] = ACTIONS(1083), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1081), - [aux_sym__html_block_6_token1] = ACTIONS(1083), - [aux_sym__html_block_6_token2] = ACTIONS(1081), - [sym__open_tag_html_block] = ACTIONS(1081), - [sym__open_tag_html_block_newline] = ACTIONS(1081), - [sym__closing_tag_html_block] = ACTIONS(1081), - [sym__closing_tag_html_block_newline] = ACTIONS(1081), - [sym_backslash_escape] = ACTIONS(1081), - [sym_entity_reference] = ACTIONS(1081), - [sym_numeric_character_reference] = ACTIONS(1081), - [sym_uri_autolink] = ACTIONS(1081), - [sym_email_autolink] = ACTIONS(1081), - [sym__whitespace_ge_2] = ACTIONS(1081), - [aux_sym__whitespace_token1] = ACTIONS(1083), - [sym__word_no_digit] = ACTIONS(1081), - [sym__digits] = ACTIONS(1081), - [aux_sym__newline_token1] = ACTIONS(1081), - [sym__block_continuation] = ACTIONS(1231), - [sym__block_quote_continuation] = ACTIONS(1231), - [sym__block_quote_start] = ACTIONS(1081), - [sym__indented_chunk_start] = ACTIONS(1081), - [sym_atx_h1_marker] = ACTIONS(1081), - [sym_atx_h2_marker] = ACTIONS(1081), - [sym_atx_h3_marker] = ACTIONS(1081), - [sym_atx_h4_marker] = ACTIONS(1081), - [sym_atx_h5_marker] = ACTIONS(1081), - [sym_atx_h6_marker] = ACTIONS(1081), - [sym__thematic_break] = ACTIONS(1081), - [sym__list_marker_minus] = ACTIONS(1081), - [sym__list_marker_plus] = ACTIONS(1081), - [sym__list_marker_star] = ACTIONS(1081), - [sym__list_marker_parenthesis] = ACTIONS(1081), - [sym__list_marker_dot] = ACTIONS(1081), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1081), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1081), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1081), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1081), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1081), - [sym__fenced_code_block_start_backtick] = ACTIONS(1081), - [sym__fenced_code_block_start_tilde] = ACTIONS(1081), - [sym__blank_line_start] = ACTIONS(1081), - [sym__code_span_start] = ACTIONS(1081), - [sym__emphasis_open_star] = ACTIONS(1081), - [sym__emphasis_open_underscore] = ACTIONS(1081), - [sym__last_token_whitespace] = ACTIONS(1231), + [aux_sym__ignore_matching_tokens] = STATE(201), + [ts_builtin_sym_end] = 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), + [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(1061), + [sym_numeric_character_reference] = ACTIONS(1061), + [sym_uri_autolink] = ACTIONS(1061), + [sym_email_autolink] = 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_continuation] = ACTIONS(109), + [sym__block_quote_continuation] = ACTIONS(109), + [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__thematic_break] = ACTIONS(1061), + [sym__list_marker_minus] = ACTIONS(1061), + [sym__list_marker_plus] = ACTIONS(1061), + [sym__list_marker_star] = ACTIONS(1061), + [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(1061), + [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), + [sym__last_token_whitespace] = ACTIONS(109), }, [269] = { - [aux_sym__ignore_matching_tokens] = STATE(174), - [ts_builtin_sym_end] = ACTIONS(1087), - [anon_sym_BANG] = ACTIONS(1087), - [anon_sym_DQUOTE] = ACTIONS(1087), - [anon_sym_POUND] = ACTIONS(1087), - [anon_sym_DOLLAR] = ACTIONS(1087), - [anon_sym_PERCENT] = ACTIONS(1087), - [anon_sym_AMP] = ACTIONS(1089), - [anon_sym_SQUOTE] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_RPAREN] = ACTIONS(1087), - [anon_sym_STAR] = ACTIONS(1087), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_COMMA] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(1087), - [anon_sym_COLON] = ACTIONS(1087), - [anon_sym_SEMI] = ACTIONS(1087), - [anon_sym_LT] = ACTIONS(1089), - [anon_sym_EQ] = ACTIONS(1087), - [anon_sym_GT] = ACTIONS(1087), - [anon_sym_QMARK] = ACTIONS(1087), - [anon_sym_AT] = ACTIONS(1087), - [anon_sym_LBRACK] = ACTIONS(1087), - [anon_sym_BSLASH] = ACTIONS(1089), - [anon_sym_RBRACK] = ACTIONS(1087), - [anon_sym_CARET] = ACTIONS(1087), - [anon_sym__] = ACTIONS(1087), - [anon_sym_BQUOTE] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1087), - [anon_sym_PIPE] = ACTIONS(1087), - [anon_sym_RBRACE] = ACTIONS(1087), - [anon_sym_TILDE] = ACTIONS(1087), - [aux_sym__html_block_1_token1] = ACTIONS(1087), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1089), - [anon_sym_LT_QMARK] = ACTIONS(1089), - [aux_sym__html_block_4_token1] = ACTIONS(1089), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1087), - [aux_sym__html_block_6_token1] = ACTIONS(1089), - [aux_sym__html_block_6_token2] = ACTIONS(1087), - [sym__open_tag_html_block] = ACTIONS(1087), - [sym__open_tag_html_block_newline] = ACTIONS(1087), - [sym__closing_tag_html_block] = ACTIONS(1087), - [sym__closing_tag_html_block_newline] = ACTIONS(1087), - [sym_backslash_escape] = ACTIONS(1087), - [sym_entity_reference] = ACTIONS(1087), - [sym_numeric_character_reference] = ACTIONS(1087), - [sym_uri_autolink] = ACTIONS(1087), - [sym_email_autolink] = ACTIONS(1087), - [sym__whitespace_ge_2] = ACTIONS(1087), - [aux_sym__whitespace_token1] = ACTIONS(1089), - [sym__word_no_digit] = ACTIONS(1087), - [sym__digits] = ACTIONS(1087), - [aux_sym__newline_token1] = ACTIONS(1087), - [sym__block_continuation] = ACTIONS(1233), - [sym__block_quote_continuation] = ACTIONS(1233), - [sym__block_quote_start] = ACTIONS(1087), - [sym__indented_chunk_start] = ACTIONS(1087), - [sym_atx_h1_marker] = ACTIONS(1087), - [sym_atx_h2_marker] = ACTIONS(1087), - [sym_atx_h3_marker] = ACTIONS(1087), - [sym_atx_h4_marker] = ACTIONS(1087), - [sym_atx_h5_marker] = ACTIONS(1087), - [sym_atx_h6_marker] = ACTIONS(1087), - [sym__thematic_break] = ACTIONS(1087), - [sym__list_marker_minus] = ACTIONS(1087), - [sym__list_marker_plus] = ACTIONS(1087), - [sym__list_marker_star] = ACTIONS(1087), - [sym__list_marker_parenthesis] = ACTIONS(1087), - [sym__list_marker_dot] = ACTIONS(1087), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1087), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1087), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1087), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1087), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1087), - [sym__fenced_code_block_start_backtick] = ACTIONS(1087), - [sym__fenced_code_block_start_tilde] = ACTIONS(1087), - [sym__blank_line_start] = ACTIONS(1087), - [sym__code_span_start] = ACTIONS(1087), - [sym__emphasis_open_star] = ACTIONS(1087), - [sym__emphasis_open_underscore] = ACTIONS(1087), - [sym__last_token_whitespace] = ACTIONS(1233), - }, - [270] = { - [aux_sym__ignore_matching_tokens] = STATE(181), - [ts_builtin_sym_end] = ACTIONS(1093), - [anon_sym_BANG] = ACTIONS(1093), - [anon_sym_DQUOTE] = ACTIONS(1093), - [anon_sym_POUND] = ACTIONS(1093), - [anon_sym_DOLLAR] = ACTIONS(1093), - [anon_sym_PERCENT] = ACTIONS(1093), - [anon_sym_AMP] = ACTIONS(1095), - [anon_sym_SQUOTE] = ACTIONS(1093), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_RPAREN] = ACTIONS(1093), - [anon_sym_STAR] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(1093), - [anon_sym_COMMA] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_SLASH] = ACTIONS(1093), - [anon_sym_COLON] = ACTIONS(1093), - [anon_sym_SEMI] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1093), - [anon_sym_GT] = ACTIONS(1093), - [anon_sym_QMARK] = ACTIONS(1093), - [anon_sym_AT] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(1093), - [anon_sym_BSLASH] = ACTIONS(1095), - [anon_sym_RBRACK] = ACTIONS(1093), - [anon_sym_CARET] = ACTIONS(1093), - [anon_sym__] = ACTIONS(1093), - [anon_sym_BQUOTE] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1093), - [anon_sym_PIPE] = ACTIONS(1093), - [anon_sym_RBRACE] = ACTIONS(1093), - [anon_sym_TILDE] = ACTIONS(1093), - [aux_sym__html_block_1_token1] = ACTIONS(1093), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1095), - [anon_sym_LT_QMARK] = ACTIONS(1095), - [aux_sym__html_block_4_token1] = ACTIONS(1095), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1093), - [aux_sym__html_block_6_token1] = ACTIONS(1095), - [aux_sym__html_block_6_token2] = ACTIONS(1093), - [sym__open_tag_html_block] = ACTIONS(1093), - [sym__open_tag_html_block_newline] = ACTIONS(1093), - [sym__closing_tag_html_block] = ACTIONS(1093), - [sym__closing_tag_html_block_newline] = ACTIONS(1093), - [sym_backslash_escape] = ACTIONS(1093), - [sym_entity_reference] = ACTIONS(1093), - [sym_numeric_character_reference] = ACTIONS(1093), - [sym_uri_autolink] = ACTIONS(1093), - [sym_email_autolink] = ACTIONS(1093), - [sym__whitespace_ge_2] = ACTIONS(1093), - [aux_sym__whitespace_token1] = ACTIONS(1095), - [sym__word_no_digit] = ACTIONS(1093), - [sym__digits] = ACTIONS(1093), - [aux_sym__newline_token1] = ACTIONS(1093), - [sym__block_continuation] = ACTIONS(1235), - [sym__block_quote_continuation] = ACTIONS(1235), - [sym__block_quote_start] = ACTIONS(1093), - [sym__indented_chunk_start] = ACTIONS(1093), - [sym_atx_h1_marker] = ACTIONS(1093), - [sym_atx_h2_marker] = ACTIONS(1093), - [sym_atx_h3_marker] = ACTIONS(1093), - [sym_atx_h4_marker] = ACTIONS(1093), - [sym_atx_h5_marker] = ACTIONS(1093), - [sym_atx_h6_marker] = ACTIONS(1093), - [sym__thematic_break] = ACTIONS(1093), - [sym__list_marker_minus] = ACTIONS(1093), - [sym__list_marker_plus] = ACTIONS(1093), - [sym__list_marker_star] = ACTIONS(1093), - [sym__list_marker_parenthesis] = ACTIONS(1093), - [sym__list_marker_dot] = ACTIONS(1093), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1093), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1093), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1093), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1093), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1093), - [sym__fenced_code_block_start_backtick] = ACTIONS(1093), - [sym__fenced_code_block_start_tilde] = ACTIONS(1093), - [sym__blank_line_start] = ACTIONS(1093), - [sym__code_span_start] = ACTIONS(1093), - [sym__emphasis_open_star] = ACTIONS(1093), - [sym__emphasis_open_underscore] = ACTIONS(1093), - [sym__last_token_whitespace] = ACTIONS(1235), - }, - [271] = { - [aux_sym__ignore_matching_tokens] = STATE(263), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_DQUOTE] = ACTIONS(974), - [anon_sym_POUND] = ACTIONS(974), - [anon_sym_DOLLAR] = ACTIONS(974), - [anon_sym_PERCENT] = ACTIONS(974), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_SQUOTE] = ACTIONS(974), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(974), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_COMMA] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_DOT] = ACTIONS(974), - [anon_sym_SLASH] = ACTIONS(974), - [anon_sym_COLON] = ACTIONS(974), - [anon_sym_SEMI] = ACTIONS(974), - [anon_sym_LT] = ACTIONS(976), - [anon_sym_EQ] = ACTIONS(974), - [anon_sym_GT] = ACTIONS(974), - [anon_sym_QMARK] = ACTIONS(974), - [anon_sym_AT] = ACTIONS(974), - [anon_sym_LBRACK] = ACTIONS(974), - [anon_sym_BSLASH] = ACTIONS(976), - [anon_sym_RBRACK] = ACTIONS(974), - [anon_sym_CARET] = ACTIONS(974), - [anon_sym__] = ACTIONS(974), - [anon_sym_BQUOTE] = ACTIONS(974), - [anon_sym_LBRACE] = ACTIONS(974), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RBRACE] = ACTIONS(974), - [anon_sym_TILDE] = ACTIONS(974), - [aux_sym__html_block_1_token1] = ACTIONS(974), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(976), - [anon_sym_LT_QMARK] = ACTIONS(976), - [aux_sym__html_block_4_token1] = ACTIONS(976), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(974), - [aux_sym__html_block_6_token1] = ACTIONS(976), - [aux_sym__html_block_6_token2] = ACTIONS(974), - [sym__open_tag_html_block] = ACTIONS(974), - [sym__open_tag_html_block_newline] = ACTIONS(974), - [sym__closing_tag_html_block] = ACTIONS(974), - [sym__closing_tag_html_block_newline] = ACTIONS(974), - [sym_backslash_escape] = ACTIONS(974), - [sym_entity_reference] = ACTIONS(974), - [sym_numeric_character_reference] = ACTIONS(974), - [sym_uri_autolink] = ACTIONS(974), - [sym_email_autolink] = ACTIONS(974), - [sym__whitespace_ge_2] = ACTIONS(974), - [aux_sym__whitespace_token1] = ACTIONS(976), - [sym__word_no_digit] = ACTIONS(974), - [sym__digits] = ACTIONS(974), - [aux_sym__newline_token1] = ACTIONS(974), - [sym__block_close] = ACTIONS(974), - [sym__block_continuation] = ACTIONS(1237), - [sym__block_quote_continuation] = ACTIONS(1237), - [sym__block_quote_start] = ACTIONS(974), - [sym__indented_chunk_start] = ACTIONS(974), - [sym_atx_h1_marker] = ACTIONS(974), - [sym_atx_h2_marker] = ACTIONS(974), - [sym_atx_h3_marker] = ACTIONS(974), - [sym_atx_h4_marker] = ACTIONS(974), - [sym_atx_h5_marker] = ACTIONS(974), - [sym_atx_h6_marker] = ACTIONS(974), - [sym__thematic_break] = ACTIONS(974), - [sym__list_marker_minus] = ACTIONS(974), - [sym__list_marker_plus] = ACTIONS(974), - [sym__list_marker_star] = ACTIONS(974), - [sym__list_marker_parenthesis] = ACTIONS(974), - [sym__list_marker_dot] = ACTIONS(974), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(974), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(974), - [sym__list_marker_star_dont_interrupt] = ACTIONS(974), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(974), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(974), - [sym__fenced_code_block_start_backtick] = ACTIONS(974), - [sym__fenced_code_block_start_tilde] = ACTIONS(974), - [sym__blank_line_start] = ACTIONS(974), - [sym__code_span_start] = ACTIONS(974), - [sym__emphasis_open_star] = ACTIONS(974), - [sym__emphasis_open_underscore] = ACTIONS(974), - [sym__last_token_whitespace] = ACTIONS(1237), - }, - [272] = { [aux_sym__ignore_matching_tokens] = STATE(259), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_DQUOTE] = ACTIONS(1019), - [anon_sym_POUND] = ACTIONS(1019), - [anon_sym_DOLLAR] = ACTIONS(1019), - [anon_sym_PERCENT] = ACTIONS(1019), - [anon_sym_AMP] = ACTIONS(1021), - [anon_sym_SQUOTE] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1019), - [anon_sym_RPAREN] = ACTIONS(1019), - [anon_sym_STAR] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1019), - [anon_sym_COMMA] = ACTIONS(1019), - [anon_sym_DASH] = ACTIONS(1019), - [anon_sym_DOT] = ACTIONS(1019), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_COLON] = ACTIONS(1019), - [anon_sym_SEMI] = ACTIONS(1019), - [anon_sym_LT] = ACTIONS(1021), - [anon_sym_EQ] = ACTIONS(1019), - [anon_sym_GT] = ACTIONS(1019), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_AT] = ACTIONS(1019), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_BSLASH] = ACTIONS(1021), - [anon_sym_RBRACK] = ACTIONS(1019), - [anon_sym_CARET] = ACTIONS(1019), - [anon_sym__] = ACTIONS(1019), - [anon_sym_BQUOTE] = ACTIONS(1019), - [anon_sym_LBRACE] = ACTIONS(1019), - [anon_sym_PIPE] = ACTIONS(1019), - [anon_sym_RBRACE] = ACTIONS(1019), - [anon_sym_TILDE] = ACTIONS(1019), - [aux_sym__html_block_1_token1] = ACTIONS(1019), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1021), - [anon_sym_LT_QMARK] = ACTIONS(1021), - [aux_sym__html_block_4_token1] = ACTIONS(1021), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1019), - [aux_sym__html_block_6_token1] = ACTIONS(1021), - [aux_sym__html_block_6_token2] = ACTIONS(1019), - [sym__open_tag_html_block] = ACTIONS(1019), - [sym__open_tag_html_block_newline] = ACTIONS(1019), - [sym__closing_tag_html_block] = ACTIONS(1019), - [sym__closing_tag_html_block_newline] = ACTIONS(1019), - [sym_backslash_escape] = ACTIONS(1019), - [sym_entity_reference] = ACTIONS(1019), - [sym_numeric_character_reference] = ACTIONS(1019), - [sym_uri_autolink] = ACTIONS(1019), - [sym_email_autolink] = ACTIONS(1019), - [sym__whitespace_ge_2] = ACTIONS(1019), - [aux_sym__whitespace_token1] = ACTIONS(1021), - [sym__word_no_digit] = ACTIONS(1019), - [sym__digits] = ACTIONS(1019), - [aux_sym__newline_token1] = ACTIONS(1019), - [sym__block_close] = ACTIONS(1019), + [ts_builtin_sym_end] = 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), + [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(1061), + [sym_numeric_character_reference] = ACTIONS(1061), + [sym_uri_autolink] = ACTIONS(1061), + [sym_email_autolink] = 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_continuation] = ACTIONS(1239), [sym__block_quote_continuation] = ACTIONS(1239), - [sym__block_quote_start] = ACTIONS(1019), - [sym__indented_chunk_start] = ACTIONS(1019), - [sym_atx_h1_marker] = ACTIONS(1019), - [sym_atx_h2_marker] = ACTIONS(1019), - [sym_atx_h3_marker] = ACTIONS(1019), - [sym_atx_h4_marker] = ACTIONS(1019), - [sym_atx_h5_marker] = ACTIONS(1019), - [sym_atx_h6_marker] = ACTIONS(1019), - [sym__thematic_break] = ACTIONS(1019), - [sym__list_marker_minus] = ACTIONS(1019), - [sym__list_marker_plus] = ACTIONS(1019), - [sym__list_marker_star] = ACTIONS(1019), - [sym__list_marker_parenthesis] = ACTIONS(1019), - [sym__list_marker_dot] = ACTIONS(1019), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1019), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1019), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1019), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1019), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1019), - [sym__fenced_code_block_start_backtick] = ACTIONS(1019), - [sym__fenced_code_block_start_tilde] = ACTIONS(1019), - [sym__blank_line_start] = ACTIONS(1019), - [sym__code_span_start] = ACTIONS(1019), - [sym__emphasis_open_star] = ACTIONS(1019), - [sym__emphasis_open_underscore] = ACTIONS(1019), + [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__thematic_break] = ACTIONS(1061), + [sym__list_marker_minus] = ACTIONS(1061), + [sym__list_marker_plus] = ACTIONS(1061), + [sym__list_marker_star] = ACTIONS(1061), + [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(1061), + [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), [sym__last_token_whitespace] = ACTIONS(1239), }, - [273] = { - [aux_sym__ignore_matching_tokens] = STATE(184), - [ts_builtin_sym_end] = ACTIONS(1099), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_DQUOTE] = ACTIONS(1099), - [anon_sym_POUND] = ACTIONS(1099), - [anon_sym_DOLLAR] = ACTIONS(1099), - [anon_sym_PERCENT] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1101), - [anon_sym_SQUOTE] = ACTIONS(1099), - [anon_sym_LPAREN] = ACTIONS(1099), - [anon_sym_RPAREN] = ACTIONS(1099), - [anon_sym_STAR] = ACTIONS(1099), - [anon_sym_PLUS] = ACTIONS(1099), - [anon_sym_COMMA] = ACTIONS(1099), - [anon_sym_DASH] = ACTIONS(1099), - [anon_sym_DOT] = ACTIONS(1099), - [anon_sym_SLASH] = ACTIONS(1099), - [anon_sym_COLON] = ACTIONS(1099), - [anon_sym_SEMI] = ACTIONS(1099), - [anon_sym_LT] = ACTIONS(1101), - [anon_sym_EQ] = ACTIONS(1099), - [anon_sym_GT] = ACTIONS(1099), - [anon_sym_QMARK] = ACTIONS(1099), - [anon_sym_AT] = ACTIONS(1099), - [anon_sym_LBRACK] = ACTIONS(1099), - [anon_sym_BSLASH] = ACTIONS(1101), - [anon_sym_RBRACK] = ACTIONS(1099), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym__] = ACTIONS(1099), - [anon_sym_BQUOTE] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_PIPE] = ACTIONS(1099), - [anon_sym_RBRACE] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [aux_sym__html_block_1_token1] = ACTIONS(1099), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1101), - [anon_sym_LT_QMARK] = ACTIONS(1101), - [aux_sym__html_block_4_token1] = ACTIONS(1101), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1099), - [aux_sym__html_block_6_token1] = ACTIONS(1101), - [aux_sym__html_block_6_token2] = ACTIONS(1099), - [sym__open_tag_html_block] = ACTIONS(1099), - [sym__open_tag_html_block_newline] = ACTIONS(1099), - [sym__closing_tag_html_block] = ACTIONS(1099), - [sym__closing_tag_html_block_newline] = ACTIONS(1099), - [sym_backslash_escape] = ACTIONS(1099), - [sym_entity_reference] = ACTIONS(1099), - [sym_numeric_character_reference] = ACTIONS(1099), - [sym_uri_autolink] = ACTIONS(1099), - [sym_email_autolink] = ACTIONS(1099), - [sym__whitespace_ge_2] = ACTIONS(1099), - [aux_sym__whitespace_token1] = ACTIONS(1101), - [sym__word_no_digit] = ACTIONS(1099), - [sym__digits] = ACTIONS(1099), - [aux_sym__newline_token1] = ACTIONS(1099), + [270] = { + [aux_sym__ignore_matching_tokens] = STATE(201), + [ts_builtin_sym_end] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_DQUOTE] = ACTIONS(1055), + [anon_sym_POUND] = ACTIONS(1055), + [anon_sym_DOLLAR] = ACTIONS(1055), + [anon_sym_PERCENT] = ACTIONS(1055), + [anon_sym_AMP] = ACTIONS(1057), + [anon_sym_SQUOTE] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1055), + [anon_sym_RPAREN] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1055), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_COMMA] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_DOT] = ACTIONS(1055), + [anon_sym_SLASH] = ACTIONS(1055), + [anon_sym_COLON] = ACTIONS(1055), + [anon_sym_SEMI] = ACTIONS(1055), + [anon_sym_LT] = ACTIONS(1057), + [anon_sym_EQ] = ACTIONS(1055), + [anon_sym_GT] = ACTIONS(1055), + [anon_sym_QMARK] = ACTIONS(1055), + [anon_sym_AT] = ACTIONS(1055), + [anon_sym_LBRACK] = ACTIONS(1055), + [anon_sym_BSLASH] = ACTIONS(1057), + [anon_sym_RBRACK] = ACTIONS(1055), + [anon_sym_CARET] = ACTIONS(1055), + [anon_sym__] = ACTIONS(1055), + [anon_sym_BQUOTE] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(1055), + [anon_sym_PIPE] = ACTIONS(1055), + [anon_sym_RBRACE] = ACTIONS(1055), + [anon_sym_TILDE] = ACTIONS(1055), + [aux_sym__html_block_1_token1] = ACTIONS(1055), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1057), + [anon_sym_LT_QMARK] = ACTIONS(1057), + [aux_sym__html_block_4_token1] = ACTIONS(1057), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1055), + [aux_sym__html_block_6_token1] = ACTIONS(1057), + [aux_sym__html_block_6_token2] = ACTIONS(1055), + [sym__open_tag_html_block] = ACTIONS(1055), + [sym__open_tag_html_block_newline] = ACTIONS(1055), + [sym__closing_tag_html_block] = ACTIONS(1055), + [sym__closing_tag_html_block_newline] = ACTIONS(1055), + [sym_backslash_escape] = ACTIONS(1055), + [sym_entity_reference] = ACTIONS(1055), + [sym_numeric_character_reference] = ACTIONS(1055), + [sym_uri_autolink] = ACTIONS(1055), + [sym_email_autolink] = ACTIONS(1055), + [sym__whitespace_ge_2] = ACTIONS(1055), + [aux_sym__whitespace_token1] = ACTIONS(1057), + [sym__word_no_digit] = ACTIONS(1055), + [sym__digits] = ACTIONS(1055), + [aux_sym__newline_token1] = ACTIONS(1055), + [sym__block_continuation] = ACTIONS(109), + [sym__block_quote_continuation] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(1055), + [sym__indented_chunk_start] = ACTIONS(1055), + [sym_atx_h1_marker] = ACTIONS(1055), + [sym_atx_h2_marker] = ACTIONS(1055), + [sym_atx_h3_marker] = ACTIONS(1055), + [sym_atx_h4_marker] = ACTIONS(1055), + [sym_atx_h5_marker] = ACTIONS(1055), + [sym_atx_h6_marker] = ACTIONS(1055), + [sym__thematic_break] = ACTIONS(1055), + [sym__list_marker_minus] = ACTIONS(1055), + [sym__list_marker_plus] = ACTIONS(1055), + [sym__list_marker_star] = ACTIONS(1055), + [sym__list_marker_parenthesis] = ACTIONS(1055), + [sym__list_marker_dot] = ACTIONS(1055), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1055), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1055), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1055), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1055), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1055), + [sym__fenced_code_block_start_backtick] = ACTIONS(1055), + [sym__fenced_code_block_start_tilde] = ACTIONS(1055), + [sym__blank_line_start] = ACTIONS(1055), + [sym__code_span_start] = ACTIONS(1055), + [sym__emphasis_open_star] = ACTIONS(1055), + [sym__emphasis_open_underscore] = ACTIONS(1055), + [sym__last_token_whitespace] = ACTIONS(109), + }, + [271] = { + [aux_sym__ignore_matching_tokens] = STATE(234), + [anon_sym_BANG] = ACTIONS(637), + [anon_sym_DQUOTE] = ACTIONS(637), + [anon_sym_POUND] = ACTIONS(637), + [anon_sym_DOLLAR] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(639), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_RPAREN] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_COMMA] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_DOT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(637), + [anon_sym_COLON] = ACTIONS(637), + [anon_sym_SEMI] = ACTIONS(637), + [anon_sym_LT] = ACTIONS(639), + [anon_sym_EQ] = ACTIONS(637), + [anon_sym_GT] = ACTIONS(637), + [anon_sym_QMARK] = ACTIONS(637), + [anon_sym_AT] = ACTIONS(637), + [anon_sym_LBRACK] = ACTIONS(637), + [anon_sym_BSLASH] = ACTIONS(639), + [anon_sym_RBRACK] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym__] = ACTIONS(637), + [anon_sym_BQUOTE] = ACTIONS(637), + [anon_sym_LBRACE] = ACTIONS(637), + [anon_sym_PIPE] = ACTIONS(637), + [anon_sym_RBRACE] = ACTIONS(637), + [anon_sym_TILDE] = ACTIONS(637), + [aux_sym__html_block_1_token1] = ACTIONS(637), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(639), + [anon_sym_LT_QMARK] = ACTIONS(639), + [aux_sym__html_block_4_token1] = ACTIONS(639), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(637), + [aux_sym__html_block_6_token1] = ACTIONS(639), + [aux_sym__html_block_6_token2] = ACTIONS(637), + [sym__open_tag_html_block] = ACTIONS(637), + [sym__open_tag_html_block_newline] = ACTIONS(637), + [sym__closing_tag_html_block] = ACTIONS(637), + [sym__closing_tag_html_block_newline] = ACTIONS(637), + [sym_backslash_escape] = ACTIONS(637), + [sym_entity_reference] = ACTIONS(637), + [sym_numeric_character_reference] = ACTIONS(637), + [sym_uri_autolink] = ACTIONS(637), + [sym_email_autolink] = ACTIONS(637), + [sym__whitespace_ge_2] = ACTIONS(637), + [aux_sym__whitespace_token1] = ACTIONS(639), + [sym__word_no_digit] = ACTIONS(637), + [sym__digits] = ACTIONS(637), + [aux_sym__newline_token1] = ACTIONS(637), + [sym__block_close] = ACTIONS(637), [sym__block_continuation] = ACTIONS(1241), [sym__block_quote_continuation] = ACTIONS(1241), - [sym__block_quote_start] = ACTIONS(1099), - [sym__indented_chunk_start] = ACTIONS(1099), - [sym_atx_h1_marker] = ACTIONS(1099), - [sym_atx_h2_marker] = ACTIONS(1099), - [sym_atx_h3_marker] = ACTIONS(1099), - [sym_atx_h4_marker] = ACTIONS(1099), - [sym_atx_h5_marker] = ACTIONS(1099), - [sym_atx_h6_marker] = ACTIONS(1099), - [sym__thematic_break] = ACTIONS(1099), - [sym__list_marker_minus] = ACTIONS(1099), - [sym__list_marker_plus] = ACTIONS(1099), - [sym__list_marker_star] = ACTIONS(1099), - [sym__list_marker_parenthesis] = ACTIONS(1099), - [sym__list_marker_dot] = ACTIONS(1099), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1099), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1099), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1099), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1099), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1099), - [sym__fenced_code_block_start_backtick] = ACTIONS(1099), - [sym__fenced_code_block_start_tilde] = ACTIONS(1099), - [sym__blank_line_start] = ACTIONS(1099), - [sym__code_span_start] = ACTIONS(1099), - [sym__emphasis_open_star] = ACTIONS(1099), - [sym__emphasis_open_underscore] = ACTIONS(1099), + [sym__block_quote_start] = ACTIONS(637), + [sym__indented_chunk_start] = ACTIONS(637), + [sym_atx_h1_marker] = ACTIONS(637), + [sym_atx_h2_marker] = ACTIONS(637), + [sym_atx_h3_marker] = ACTIONS(637), + [sym_atx_h4_marker] = ACTIONS(637), + [sym_atx_h5_marker] = ACTIONS(637), + [sym_atx_h6_marker] = ACTIONS(637), + [sym__thematic_break] = ACTIONS(637), + [sym__list_marker_minus] = ACTIONS(637), + [sym__list_marker_plus] = ACTIONS(637), + [sym__list_marker_star] = ACTIONS(637), + [sym__list_marker_parenthesis] = ACTIONS(637), + [sym__list_marker_dot] = ACTIONS(637), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(637), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(637), + [sym__list_marker_star_dont_interrupt] = ACTIONS(637), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(637), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(637), + [sym__fenced_code_block_start_backtick] = ACTIONS(637), + [sym__fenced_code_block_start_tilde] = ACTIONS(637), + [sym__blank_line_start] = ACTIONS(637), + [sym__code_span_start] = ACTIONS(637), + [sym__emphasis_open_star] = ACTIONS(637), + [sym__emphasis_open_underscore] = ACTIONS(637), [sym__last_token_whitespace] = ACTIONS(1241), }, - [274] = { - [aux_sym__ignore_matching_tokens] = STATE(198), - [ts_builtin_sym_end] = ACTIONS(1105), - [anon_sym_BANG] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(1105), - [anon_sym_POUND] = ACTIONS(1105), - [anon_sym_DOLLAR] = ACTIONS(1105), - [anon_sym_PERCENT] = ACTIONS(1105), - [anon_sym_AMP] = ACTIONS(1107), - [anon_sym_SQUOTE] = ACTIONS(1105), - [anon_sym_LPAREN] = ACTIONS(1105), - [anon_sym_RPAREN] = ACTIONS(1105), - [anon_sym_STAR] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(1105), - [anon_sym_COMMA] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1105), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_SLASH] = ACTIONS(1105), - [anon_sym_COLON] = ACTIONS(1105), - [anon_sym_SEMI] = ACTIONS(1105), - [anon_sym_LT] = ACTIONS(1107), - [anon_sym_EQ] = ACTIONS(1105), - [anon_sym_GT] = ACTIONS(1105), - [anon_sym_QMARK] = ACTIONS(1105), - [anon_sym_AT] = ACTIONS(1105), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_BSLASH] = ACTIONS(1107), - [anon_sym_RBRACK] = ACTIONS(1105), - [anon_sym_CARET] = ACTIONS(1105), - [anon_sym__] = ACTIONS(1105), - [anon_sym_BQUOTE] = ACTIONS(1105), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_PIPE] = ACTIONS(1105), - [anon_sym_RBRACE] = ACTIONS(1105), - [anon_sym_TILDE] = ACTIONS(1105), - [aux_sym__html_block_1_token1] = ACTIONS(1105), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1107), - [anon_sym_LT_QMARK] = ACTIONS(1107), - [aux_sym__html_block_4_token1] = ACTIONS(1107), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1105), - [aux_sym__html_block_6_token1] = ACTIONS(1107), - [aux_sym__html_block_6_token2] = ACTIONS(1105), - [sym__open_tag_html_block] = ACTIONS(1105), - [sym__open_tag_html_block_newline] = ACTIONS(1105), - [sym__closing_tag_html_block] = ACTIONS(1105), - [sym__closing_tag_html_block_newline] = ACTIONS(1105), - [sym_backslash_escape] = ACTIONS(1105), - [sym_entity_reference] = ACTIONS(1105), - [sym_numeric_character_reference] = ACTIONS(1105), - [sym_uri_autolink] = ACTIONS(1105), - [sym_email_autolink] = ACTIONS(1105), - [sym__whitespace_ge_2] = ACTIONS(1105), - [aux_sym__whitespace_token1] = ACTIONS(1107), - [sym__word_no_digit] = ACTIONS(1105), - [sym__digits] = ACTIONS(1105), - [aux_sym__newline_token1] = ACTIONS(1105), + [272] = { + [aux_sym__ignore_matching_tokens] = STATE(256), + [ts_builtin_sym_end] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_DQUOTE] = ACTIONS(1055), + [anon_sym_POUND] = ACTIONS(1055), + [anon_sym_DOLLAR] = ACTIONS(1055), + [anon_sym_PERCENT] = ACTIONS(1055), + [anon_sym_AMP] = ACTIONS(1057), + [anon_sym_SQUOTE] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1055), + [anon_sym_RPAREN] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1055), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_COMMA] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_DOT] = ACTIONS(1055), + [anon_sym_SLASH] = ACTIONS(1055), + [anon_sym_COLON] = ACTIONS(1055), + [anon_sym_SEMI] = ACTIONS(1055), + [anon_sym_LT] = ACTIONS(1057), + [anon_sym_EQ] = ACTIONS(1055), + [anon_sym_GT] = ACTIONS(1055), + [anon_sym_QMARK] = ACTIONS(1055), + [anon_sym_AT] = ACTIONS(1055), + [anon_sym_LBRACK] = ACTIONS(1055), + [anon_sym_BSLASH] = ACTIONS(1057), + [anon_sym_RBRACK] = ACTIONS(1055), + [anon_sym_CARET] = ACTIONS(1055), + [anon_sym__] = ACTIONS(1055), + [anon_sym_BQUOTE] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(1055), + [anon_sym_PIPE] = ACTIONS(1055), + [anon_sym_RBRACE] = ACTIONS(1055), + [anon_sym_TILDE] = ACTIONS(1055), + [aux_sym__html_block_1_token1] = ACTIONS(1055), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1057), + [anon_sym_LT_QMARK] = ACTIONS(1057), + [aux_sym__html_block_4_token1] = ACTIONS(1057), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1055), + [aux_sym__html_block_6_token1] = ACTIONS(1057), + [aux_sym__html_block_6_token2] = ACTIONS(1055), + [sym__open_tag_html_block] = ACTIONS(1055), + [sym__open_tag_html_block_newline] = ACTIONS(1055), + [sym__closing_tag_html_block] = ACTIONS(1055), + [sym__closing_tag_html_block_newline] = ACTIONS(1055), + [sym_backslash_escape] = ACTIONS(1055), + [sym_entity_reference] = ACTIONS(1055), + [sym_numeric_character_reference] = ACTIONS(1055), + [sym_uri_autolink] = ACTIONS(1055), + [sym_email_autolink] = ACTIONS(1055), + [sym__whitespace_ge_2] = ACTIONS(1055), + [aux_sym__whitespace_token1] = ACTIONS(1057), + [sym__word_no_digit] = ACTIONS(1055), + [sym__digits] = ACTIONS(1055), + [aux_sym__newline_token1] = ACTIONS(1055), [sym__block_continuation] = ACTIONS(1243), [sym__block_quote_continuation] = ACTIONS(1243), - [sym__block_quote_start] = ACTIONS(1105), - [sym__indented_chunk_start] = ACTIONS(1105), - [sym_atx_h1_marker] = ACTIONS(1105), - [sym_atx_h2_marker] = ACTIONS(1105), - [sym_atx_h3_marker] = ACTIONS(1105), - [sym_atx_h4_marker] = ACTIONS(1105), - [sym_atx_h5_marker] = ACTIONS(1105), - [sym_atx_h6_marker] = ACTIONS(1105), - [sym__thematic_break] = ACTIONS(1105), - [sym__list_marker_minus] = ACTIONS(1105), - [sym__list_marker_plus] = ACTIONS(1105), - [sym__list_marker_star] = ACTIONS(1105), - [sym__list_marker_parenthesis] = ACTIONS(1105), - [sym__list_marker_dot] = ACTIONS(1105), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1105), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1105), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1105), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1105), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1105), - [sym__fenced_code_block_start_backtick] = ACTIONS(1105), - [sym__fenced_code_block_start_tilde] = ACTIONS(1105), - [sym__blank_line_start] = ACTIONS(1105), - [sym__code_span_start] = ACTIONS(1105), - [sym__emphasis_open_star] = ACTIONS(1105), - [sym__emphasis_open_underscore] = ACTIONS(1105), + [sym__block_quote_start] = ACTIONS(1055), + [sym__indented_chunk_start] = ACTIONS(1055), + [sym_atx_h1_marker] = ACTIONS(1055), + [sym_atx_h2_marker] = ACTIONS(1055), + [sym_atx_h3_marker] = ACTIONS(1055), + [sym_atx_h4_marker] = ACTIONS(1055), + [sym_atx_h5_marker] = ACTIONS(1055), + [sym_atx_h6_marker] = ACTIONS(1055), + [sym__thematic_break] = ACTIONS(1055), + [sym__list_marker_minus] = ACTIONS(1055), + [sym__list_marker_plus] = ACTIONS(1055), + [sym__list_marker_star] = ACTIONS(1055), + [sym__list_marker_parenthesis] = ACTIONS(1055), + [sym__list_marker_dot] = ACTIONS(1055), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1055), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1055), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1055), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1055), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1055), + [sym__fenced_code_block_start_backtick] = ACTIONS(1055), + [sym__fenced_code_block_start_tilde] = ACTIONS(1055), + [sym__blank_line_start] = ACTIONS(1055), + [sym__code_span_start] = ACTIONS(1055), + [sym__emphasis_open_star] = ACTIONS(1055), + [sym__emphasis_open_underscore] = ACTIONS(1055), [sym__last_token_whitespace] = ACTIONS(1243), }, - [275] = { - [aux_sym__ignore_matching_tokens] = STATE(275), - [anon_sym_BANG] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(397), - [anon_sym_POUND] = ACTIONS(397), - [anon_sym_DOLLAR] = ACTIONS(397), - [anon_sym_PERCENT] = ACTIONS(397), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(397), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_RPAREN] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_DOT] = ACTIONS(397), - [anon_sym_SLASH] = ACTIONS(397), - [anon_sym_COLON] = ACTIONS(397), - [anon_sym_SEMI] = ACTIONS(397), - [anon_sym_LT] = ACTIONS(399), - [anon_sym_EQ] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(397), - [anon_sym_QMARK] = ACTIONS(397), - [anon_sym_AT] = ACTIONS(397), - [anon_sym_LBRACK] = ACTIONS(397), - [anon_sym_BSLASH] = ACTIONS(399), - [anon_sym_RBRACK] = ACTIONS(397), - [anon_sym_CARET] = ACTIONS(397), - [anon_sym__] = ACTIONS(397), - [anon_sym_BQUOTE] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_PIPE] = ACTIONS(397), - [anon_sym_RBRACE] = ACTIONS(397), - [anon_sym_TILDE] = ACTIONS(397), - [aux_sym__html_block_1_token1] = ACTIONS(397), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(399), - [anon_sym_LT_QMARK] = ACTIONS(399), - [aux_sym__html_block_4_token1] = ACTIONS(399), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(397), - [aux_sym__html_block_6_token1] = ACTIONS(399), - [aux_sym__html_block_6_token2] = ACTIONS(397), - [sym__open_tag_html_block] = ACTIONS(397), - [sym__open_tag_html_block_newline] = ACTIONS(397), - [sym__closing_tag_html_block] = ACTIONS(397), - [sym__closing_tag_html_block_newline] = ACTIONS(397), - [sym_backslash_escape] = ACTIONS(397), - [sym_entity_reference] = ACTIONS(397), - [sym_numeric_character_reference] = ACTIONS(397), - [sym_uri_autolink] = ACTIONS(397), - [sym_email_autolink] = ACTIONS(397), - [sym__whitespace_ge_2] = ACTIONS(397), - [aux_sym__whitespace_token1] = ACTIONS(399), - [sym__word_no_digit] = ACTIONS(397), - [sym__digits] = ACTIONS(397), - [aux_sym__newline_token1] = ACTIONS(397), - [sym__block_close] = ACTIONS(397), - [sym__block_continuation] = ACTIONS(1245), - [sym__block_quote_continuation] = ACTIONS(1245), - [sym__block_quote_start] = ACTIONS(397), - [sym__indented_chunk_start] = ACTIONS(397), - [sym_atx_h1_marker] = ACTIONS(397), - [sym_atx_h2_marker] = ACTIONS(397), - [sym_atx_h3_marker] = ACTIONS(397), - [sym_atx_h4_marker] = ACTIONS(397), - [sym_atx_h5_marker] = ACTIONS(397), - [sym_atx_h6_marker] = ACTIONS(397), - [sym__thematic_break] = ACTIONS(397), - [sym__list_marker_minus] = ACTIONS(397), - [sym__list_marker_plus] = ACTIONS(397), - [sym__list_marker_star] = ACTIONS(397), - [sym__list_marker_parenthesis] = ACTIONS(397), - [sym__list_marker_dot] = ACTIONS(397), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(397), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(397), - [sym__list_marker_star_dont_interrupt] = ACTIONS(397), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(397), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(397), - [sym__fenced_code_block_start_backtick] = ACTIONS(397), - [sym__fenced_code_block_start_tilde] = ACTIONS(397), - [sym__blank_line_start] = ACTIONS(397), - [sym__code_span_start] = ACTIONS(397), - [sym__emphasis_open_star] = ACTIONS(397), - [sym__emphasis_open_underscore] = ACTIONS(397), - [sym__last_token_whitespace] = ACTIONS(1245), + [273] = { + [aux_sym__ignore_matching_tokens] = STATE(160), + [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), + [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(860), + [sym_numeric_character_reference] = ACTIONS(860), + [sym_uri_autolink] = ACTIONS(860), + [sym_email_autolink] = 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_continuation] = ACTIONS(113), + [sym__block_quote_continuation] = ACTIONS(113), + [sym__block_quote_start] = ACTIONS(860), + [sym__indented_chunk_start] = ACTIONS(860), + [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__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(860), + [sym__code_span_start] = ACTIONS(860), + [sym__emphasis_open_star] = ACTIONS(860), + [sym__emphasis_open_underscore] = ACTIONS(860), + [sym__last_token_whitespace] = ACTIONS(113), }, - [276] = { - [sym__indented_chunk] = STATE(276), - [sym__blank_line] = STATE(276), - [aux_sym_indented_code_block_repeat1] = STATE(276), - [ts_builtin_sym_end] = ACTIONS(1248), - [anon_sym_BANG] = ACTIONS(1248), - [anon_sym_DQUOTE] = ACTIONS(1248), - [anon_sym_POUND] = ACTIONS(1248), - [anon_sym_DOLLAR] = ACTIONS(1248), - [anon_sym_PERCENT] = ACTIONS(1248), - [anon_sym_AMP] = ACTIONS(1250), - [anon_sym_SQUOTE] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1248), - [anon_sym_RPAREN] = ACTIONS(1248), - [anon_sym_STAR] = ACTIONS(1248), - [anon_sym_PLUS] = ACTIONS(1248), - [anon_sym_COMMA] = ACTIONS(1248), - [anon_sym_DASH] = ACTIONS(1248), - [anon_sym_DOT] = ACTIONS(1248), - [anon_sym_SLASH] = ACTIONS(1248), - [anon_sym_COLON] = ACTIONS(1248), - [anon_sym_SEMI] = ACTIONS(1248), - [anon_sym_LT] = ACTIONS(1250), - [anon_sym_EQ] = ACTIONS(1248), - [anon_sym_GT] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(1248), - [anon_sym_AT] = ACTIONS(1248), - [anon_sym_LBRACK] = ACTIONS(1248), - [anon_sym_BSLASH] = ACTIONS(1250), - [anon_sym_RBRACK] = ACTIONS(1248), - [anon_sym_CARET] = ACTIONS(1248), - [anon_sym__] = ACTIONS(1248), - [anon_sym_BQUOTE] = ACTIONS(1248), - [anon_sym_LBRACE] = ACTIONS(1248), - [anon_sym_PIPE] = ACTIONS(1248), - [anon_sym_RBRACE] = ACTIONS(1248), - [anon_sym_TILDE] = ACTIONS(1248), - [aux_sym__html_block_1_token1] = ACTIONS(1248), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1250), - [anon_sym_LT_QMARK] = ACTIONS(1250), - [aux_sym__html_block_4_token1] = ACTIONS(1250), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1248), - [aux_sym__html_block_6_token1] = ACTIONS(1250), - [aux_sym__html_block_6_token2] = ACTIONS(1248), - [sym__open_tag_html_block] = ACTIONS(1248), - [sym__open_tag_html_block_newline] = ACTIONS(1248), - [sym__closing_tag_html_block] = ACTIONS(1248), - [sym__closing_tag_html_block_newline] = ACTIONS(1248), - [sym_backslash_escape] = ACTIONS(1248), - [sym_entity_reference] = ACTIONS(1248), - [sym_numeric_character_reference] = ACTIONS(1248), - [sym_uri_autolink] = ACTIONS(1248), - [sym_email_autolink] = ACTIONS(1248), - [sym__whitespace_ge_2] = ACTIONS(1248), - [aux_sym__whitespace_token1] = ACTIONS(1250), - [sym__word_no_digit] = ACTIONS(1248), - [sym__digits] = ACTIONS(1248), - [aux_sym__newline_token1] = ACTIONS(1248), - [sym__block_quote_start] = ACTIONS(1248), - [sym__indented_chunk_start] = ACTIONS(1252), - [sym_atx_h1_marker] = ACTIONS(1248), - [sym_atx_h2_marker] = ACTIONS(1248), - [sym_atx_h3_marker] = ACTIONS(1248), - [sym_atx_h4_marker] = ACTIONS(1248), - [sym_atx_h5_marker] = ACTIONS(1248), - [sym_atx_h6_marker] = ACTIONS(1248), - [sym__thematic_break] = ACTIONS(1248), - [sym__list_marker_minus] = ACTIONS(1248), - [sym__list_marker_plus] = ACTIONS(1248), - [sym__list_marker_star] = ACTIONS(1248), - [sym__list_marker_parenthesis] = ACTIONS(1248), - [sym__list_marker_dot] = ACTIONS(1248), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1248), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1248), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1248), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1248), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1248), - [sym__fenced_code_block_start_backtick] = ACTIONS(1248), - [sym__fenced_code_block_start_tilde] = ACTIONS(1248), - [sym__blank_line_start] = ACTIONS(1255), - [sym__code_span_start] = ACTIONS(1248), - [sym__emphasis_open_star] = ACTIONS(1248), - [sym__emphasis_open_underscore] = ACTIONS(1248), + [274] = { + [aux_sym__paragraph_end_newline_repeat1] = STATE(274), + [anon_sym_BANG] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(773), + [anon_sym_POUND] = ACTIONS(773), + [anon_sym_DOLLAR] = ACTIONS(773), + [anon_sym_PERCENT] = ACTIONS(773), + [anon_sym_AMP] = ACTIONS(775), + [anon_sym_SQUOTE] = ACTIONS(773), + [anon_sym_LPAREN] = ACTIONS(773), + [anon_sym_RPAREN] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(773), + [anon_sym_PLUS] = ACTIONS(773), + [anon_sym_COMMA] = ACTIONS(773), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_SLASH] = ACTIONS(773), + [anon_sym_COLON] = ACTIONS(773), + [anon_sym_SEMI] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_EQ] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(773), + [anon_sym_QMARK] = ACTIONS(773), + [anon_sym_AT] = ACTIONS(773), + [anon_sym_LBRACK] = ACTIONS(773), + [anon_sym_BSLASH] = ACTIONS(775), + [anon_sym_RBRACK] = ACTIONS(773), + [anon_sym_CARET] = ACTIONS(773), + [anon_sym__] = ACTIONS(773), + [anon_sym_BQUOTE] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(773), + [anon_sym_PIPE] = ACTIONS(773), + [anon_sym_RBRACE] = ACTIONS(773), + [anon_sym_TILDE] = ACTIONS(773), + [aux_sym__html_block_1_token1] = ACTIONS(773), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(775), + [anon_sym_LT_QMARK] = ACTIONS(775), + [aux_sym__html_block_4_token1] = ACTIONS(775), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(773), + [aux_sym__html_block_6_token1] = ACTIONS(775), + [aux_sym__html_block_6_token2] = ACTIONS(773), + [sym__open_tag_html_block] = ACTIONS(773), + [sym__open_tag_html_block_newline] = ACTIONS(773), + [sym__closing_tag_html_block] = ACTIONS(773), + [sym__closing_tag_html_block_newline] = ACTIONS(773), + [sym_backslash_escape] = ACTIONS(773), + [sym_entity_reference] = ACTIONS(773), + [sym_numeric_character_reference] = ACTIONS(773), + [sym_uri_autolink] = ACTIONS(773), + [sym_email_autolink] = ACTIONS(773), + [sym__whitespace_ge_2] = ACTIONS(773), + [aux_sym__whitespace_token1] = ACTIONS(775), + [sym__word_no_digit] = ACTIONS(773), + [sym__digits] = ACTIONS(773), + [aux_sym__newline_token1] = ACTIONS(773), + [sym__block_close] = ACTIONS(773), + [sym__block_quote_start] = ACTIONS(773), + [sym__indented_chunk_start] = ACTIONS(773), + [sym_atx_h1_marker] = ACTIONS(773), + [sym_atx_h2_marker] = ACTIONS(773), + [sym_atx_h3_marker] = ACTIONS(773), + [sym_atx_h4_marker] = ACTIONS(773), + [sym_atx_h5_marker] = ACTIONS(773), + [sym_atx_h6_marker] = ACTIONS(773), + [sym_setext_h1_underline] = ACTIONS(773), + [sym_setext_h2_underline] = ACTIONS(773), + [sym__thematic_break] = ACTIONS(773), + [sym__list_marker_minus] = ACTIONS(773), + [sym__list_marker_plus] = ACTIONS(773), + [sym__list_marker_star] = ACTIONS(773), + [sym__list_marker_parenthesis] = ACTIONS(773), + [sym__list_marker_dot] = ACTIONS(773), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(773), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(773), + [sym__list_marker_star_dont_interrupt] = ACTIONS(773), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(773), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(773), + [sym__fenced_code_block_start_backtick] = ACTIONS(773), + [sym__fenced_code_block_start_tilde] = ACTIONS(773), + [sym__blank_line_start] = ACTIONS(773), + [sym__split_token] = ACTIONS(1245), + [sym__code_span_start] = ACTIONS(773), + [sym__emphasis_open_star] = ACTIONS(773), + [sym__emphasis_open_underscore] = ACTIONS(773), }, - [277] = { - [sym_link_title] = STATE(2166), - [sym__whitespace] = STATE(2101), - [ts_builtin_sym_end] = ACTIONS(1258), - [anon_sym_BANG] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(1260), - [anon_sym_POUND] = ACTIONS(1258), - [anon_sym_DOLLAR] = ACTIONS(1258), - [anon_sym_PERCENT] = ACTIONS(1258), - [anon_sym_AMP] = ACTIONS(1263), - [anon_sym_SQUOTE] = ACTIONS(1265), - [anon_sym_LPAREN] = ACTIONS(1268), - [anon_sym_RPAREN] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1258), - [anon_sym_PLUS] = ACTIONS(1258), - [anon_sym_COMMA] = ACTIONS(1258), - [anon_sym_DASH] = ACTIONS(1258), - [anon_sym_DOT] = ACTIONS(1258), - [anon_sym_SLASH] = ACTIONS(1258), - [anon_sym_COLON] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(1258), - [anon_sym_LT] = ACTIONS(1263), - [anon_sym_EQ] = ACTIONS(1258), - [anon_sym_GT] = ACTIONS(1258), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_AT] = ACTIONS(1258), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_BSLASH] = ACTIONS(1263), - [anon_sym_RBRACK] = ACTIONS(1258), - [anon_sym_CARET] = ACTIONS(1258), - [anon_sym__] = ACTIONS(1258), - [anon_sym_BQUOTE] = ACTIONS(1258), - [anon_sym_LBRACE] = ACTIONS(1258), - [anon_sym_PIPE] = ACTIONS(1258), - [anon_sym_RBRACE] = ACTIONS(1258), - [anon_sym_TILDE] = ACTIONS(1258), - [aux_sym__html_block_1_token1] = ACTIONS(1258), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1263), - [anon_sym_LT_QMARK] = ACTIONS(1263), - [aux_sym__html_block_4_token1] = ACTIONS(1263), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1258), - [aux_sym__html_block_6_token1] = ACTIONS(1263), - [aux_sym__html_block_6_token2] = ACTIONS(1258), - [sym__open_tag_html_block] = ACTIONS(1258), - [sym__open_tag_html_block_newline] = ACTIONS(1258), - [sym__closing_tag_html_block] = ACTIONS(1258), - [sym__closing_tag_html_block_newline] = ACTIONS(1258), - [sym_backslash_escape] = ACTIONS(1258), - [sym_entity_reference] = ACTIONS(1258), - [sym_numeric_character_reference] = ACTIONS(1258), - [sym_uri_autolink] = ACTIONS(1258), - [sym_email_autolink] = ACTIONS(1258), - [sym__whitespace_ge_2] = ACTIONS(1271), - [aux_sym__whitespace_token1] = ACTIONS(1274), - [sym__word_no_digit] = ACTIONS(1258), - [sym__digits] = ACTIONS(1258), - [aux_sym__newline_token1] = ACTIONS(1258), - [sym__block_quote_start] = ACTIONS(1258), - [sym__indented_chunk_start] = ACTIONS(1258), - [sym_atx_h1_marker] = ACTIONS(1258), - [sym_atx_h2_marker] = ACTIONS(1258), - [sym_atx_h3_marker] = ACTIONS(1258), - [sym_atx_h4_marker] = ACTIONS(1258), - [sym_atx_h5_marker] = ACTIONS(1258), - [sym_atx_h6_marker] = ACTIONS(1258), - [sym__thematic_break] = ACTIONS(1258), - [sym__list_marker_minus] = ACTIONS(1258), - [sym__list_marker_plus] = ACTIONS(1258), - [sym__list_marker_star] = ACTIONS(1258), - [sym__list_marker_parenthesis] = ACTIONS(1258), - [sym__list_marker_dot] = ACTIONS(1258), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1258), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1258), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1258), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1258), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1258), - [sym__fenced_code_block_start_backtick] = ACTIONS(1258), - [sym__fenced_code_block_start_tilde] = ACTIONS(1258), - [sym__blank_line_start] = ACTIONS(1258), - [sym__no_indented_chunk] = ACTIONS(1277), - [sym__code_span_start] = ACTIONS(1258), - [sym__emphasis_open_star] = ACTIONS(1258), - [sym__emphasis_open_underscore] = ACTIONS(1258), + [275] = { + [aux_sym__ignore_matching_tokens] = STATE(160), + [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), + [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(780), + [sym_numeric_character_reference] = ACTIONS(780), + [sym_uri_autolink] = ACTIONS(780), + [sym_email_autolink] = 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_close] = ACTIONS(780), + [sym__block_continuation] = ACTIONS(113), + [sym__block_quote_continuation] = ACTIONS(113), + [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__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__emphasis_open_star] = ACTIONS(780), + [sym__emphasis_open_underscore] = ACTIONS(780), + [sym__last_token_whitespace] = ACTIONS(113), }, - [278] = { - [sym__soft_line_break] = STATE(899), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), - [sym__whitespace] = STATE(899), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(304), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), + [276] = { + [sym__soft_line_break] = STATE(825), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), + [sym__whitespace] = STATE(825), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(301), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -56454,9 +56293,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(7), [anon_sym_AT] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(971), [anon_sym_BSLASH] = ACTIONS(15), - [anon_sym_RBRACK] = ACTIONS(1279), + [anon_sym_RBRACK] = ACTIONS(1248), [anon_sym_CARET] = ACTIONS(7), [anon_sym__] = ACTIONS(7), [anon_sym_BQUOTE] = ACTIONS(7), @@ -56464,17 +56303,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), [anon_sym_TILDE] = ACTIONS(7), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(848), - [anon_sym_LT_QMARK] = ACTIONS(850), - [aux_sym__html_block_4_token1] = ACTIONS(852), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(854), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(973), + [anon_sym_LT_QMARK] = ACTIONS(975), + [aux_sym__html_block_4_token1] = ACTIONS(977), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(979), [sym_backslash_escape] = ACTIONS(35), [sym_entity_reference] = ACTIONS(35), [sym_numeric_character_reference] = ACTIONS(35), [sym_uri_autolink] = ACTIONS(35), [sym_email_autolink] = ACTIONS(35), - [sym__whitespace_ge_2] = ACTIONS(856), - [aux_sym__whitespace_token1] = ACTIONS(858), + [sym__whitespace_ge_2] = ACTIONS(981), + [aux_sym__whitespace_token1] = ACTIONS(983), [sym__word_no_digit] = ACTIONS(35), [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), @@ -56482,40 +56321,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, + [277] = { + [sym_list_marker_dot] = STATE(42), + [sym__list_item_dot] = STATE(277), + [aux_sym__list_dot_repeat1] = STATE(277), + [ts_builtin_sym_end] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1250), + [anon_sym_DQUOTE] = ACTIONS(1250), + [anon_sym_POUND] = ACTIONS(1250), + [anon_sym_DOLLAR] = ACTIONS(1250), + [anon_sym_PERCENT] = ACTIONS(1250), + [anon_sym_AMP] = ACTIONS(1252), + [anon_sym_SQUOTE] = ACTIONS(1250), + [anon_sym_LPAREN] = ACTIONS(1250), + [anon_sym_RPAREN] = ACTIONS(1250), + [anon_sym_STAR] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1250), + [anon_sym_COMMA] = ACTIONS(1250), + [anon_sym_DASH] = ACTIONS(1250), + [anon_sym_DOT] = ACTIONS(1250), + [anon_sym_SLASH] = ACTIONS(1250), + [anon_sym_COLON] = ACTIONS(1250), + [anon_sym_SEMI] = ACTIONS(1250), + [anon_sym_LT] = ACTIONS(1252), + [anon_sym_EQ] = ACTIONS(1250), + [anon_sym_GT] = ACTIONS(1250), + [anon_sym_QMARK] = ACTIONS(1250), + [anon_sym_AT] = ACTIONS(1250), + [anon_sym_LBRACK] = ACTIONS(1250), + [anon_sym_BSLASH] = ACTIONS(1252), + [anon_sym_RBRACK] = ACTIONS(1250), + [anon_sym_CARET] = ACTIONS(1250), + [anon_sym__] = ACTIONS(1250), + [anon_sym_BQUOTE] = ACTIONS(1250), + [anon_sym_LBRACE] = ACTIONS(1250), + [anon_sym_PIPE] = ACTIONS(1250), + [anon_sym_RBRACE] = ACTIONS(1250), + [anon_sym_TILDE] = ACTIONS(1250), + [aux_sym__html_block_1_token1] = ACTIONS(1250), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1252), + [anon_sym_LT_QMARK] = ACTIONS(1252), + [aux_sym__html_block_4_token1] = ACTIONS(1252), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1250), + [aux_sym__html_block_6_token1] = ACTIONS(1252), + [aux_sym__html_block_6_token2] = ACTIONS(1250), + [sym__open_tag_html_block] = ACTIONS(1250), + [sym__open_tag_html_block_newline] = ACTIONS(1250), + [sym__closing_tag_html_block] = ACTIONS(1250), + [sym__closing_tag_html_block_newline] = ACTIONS(1250), + [sym_backslash_escape] = ACTIONS(1250), + [sym_entity_reference] = ACTIONS(1250), + [sym_numeric_character_reference] = ACTIONS(1250), + [sym_uri_autolink] = ACTIONS(1250), + [sym_email_autolink] = ACTIONS(1250), + [sym__whitespace_ge_2] = ACTIONS(1250), + [aux_sym__whitespace_token1] = ACTIONS(1252), + [sym__word_no_digit] = ACTIONS(1250), + [sym__digits] = ACTIONS(1250), + [aux_sym__newline_token1] = ACTIONS(1250), + [sym__block_quote_start] = ACTIONS(1250), + [sym__indented_chunk_start] = ACTIONS(1250), + [sym_atx_h1_marker] = ACTIONS(1250), + [sym_atx_h2_marker] = ACTIONS(1250), + [sym_atx_h3_marker] = ACTIONS(1250), + [sym_atx_h4_marker] = ACTIONS(1250), + [sym_atx_h5_marker] = ACTIONS(1250), + [sym_atx_h6_marker] = ACTIONS(1250), + [sym__thematic_break] = ACTIONS(1250), + [sym__list_marker_minus] = ACTIONS(1250), + [sym__list_marker_plus] = ACTIONS(1250), + [sym__list_marker_star] = ACTIONS(1250), + [sym__list_marker_parenthesis] = ACTIONS(1250), + [sym__list_marker_dot] = ACTIONS(1254), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1250), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1250), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1250), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1250), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1254), + [sym__fenced_code_block_start_backtick] = ACTIONS(1250), + [sym__fenced_code_block_start_tilde] = ACTIONS(1250), + [sym__blank_line_start] = ACTIONS(1250), + [sym__code_span_start] = ACTIONS(1250), + [sym__emphasis_open_star] = ACTIONS(1250), + [sym__emphasis_open_underscore] = ACTIONS(1250), + }, + [278] = { + [sym_list_marker_star] = STATE(41), + [sym__list_item_star] = STATE(317), + [aux_sym__list_star_repeat1] = STATE(317), + [ts_builtin_sym_end] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1257), + [anon_sym_DQUOTE] = ACTIONS(1257), + [anon_sym_POUND] = ACTIONS(1257), + [anon_sym_DOLLAR] = ACTIONS(1257), + [anon_sym_PERCENT] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_SQUOTE] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1257), + [anon_sym_RPAREN] = ACTIONS(1257), + [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_COMMA] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_DOT] = ACTIONS(1257), + [anon_sym_SLASH] = ACTIONS(1257), + [anon_sym_COLON] = ACTIONS(1257), + [anon_sym_SEMI] = ACTIONS(1257), + [anon_sym_LT] = ACTIONS(1259), + [anon_sym_EQ] = ACTIONS(1257), + [anon_sym_GT] = ACTIONS(1257), + [anon_sym_QMARK] = ACTIONS(1257), + [anon_sym_AT] = ACTIONS(1257), + [anon_sym_LBRACK] = ACTIONS(1257), + [anon_sym_BSLASH] = ACTIONS(1259), + [anon_sym_RBRACK] = ACTIONS(1257), + [anon_sym_CARET] = ACTIONS(1257), + [anon_sym__] = ACTIONS(1257), + [anon_sym_BQUOTE] = ACTIONS(1257), + [anon_sym_LBRACE] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1257), + [anon_sym_RBRACE] = ACTIONS(1257), + [anon_sym_TILDE] = ACTIONS(1257), + [aux_sym__html_block_1_token1] = ACTIONS(1257), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1259), + [anon_sym_LT_QMARK] = ACTIONS(1259), + [aux_sym__html_block_4_token1] = ACTIONS(1259), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1257), + [aux_sym__html_block_6_token1] = ACTIONS(1259), + [aux_sym__html_block_6_token2] = ACTIONS(1257), + [sym__open_tag_html_block] = ACTIONS(1257), + [sym__open_tag_html_block_newline] = ACTIONS(1257), + [sym__closing_tag_html_block] = ACTIONS(1257), + [sym__closing_tag_html_block_newline] = ACTIONS(1257), + [sym_backslash_escape] = ACTIONS(1257), + [sym_entity_reference] = ACTIONS(1257), + [sym_numeric_character_reference] = ACTIONS(1257), + [sym_uri_autolink] = ACTIONS(1257), + [sym_email_autolink] = ACTIONS(1257), + [sym__whitespace_ge_2] = ACTIONS(1257), + [aux_sym__whitespace_token1] = ACTIONS(1259), + [sym__word_no_digit] = ACTIONS(1257), + [sym__digits] = ACTIONS(1257), + [aux_sym__newline_token1] = ACTIONS(1257), + [sym__block_quote_start] = ACTIONS(1257), + [sym__indented_chunk_start] = ACTIONS(1257), + [sym_atx_h1_marker] = ACTIONS(1257), + [sym_atx_h2_marker] = ACTIONS(1257), + [sym_atx_h3_marker] = ACTIONS(1257), + [sym_atx_h4_marker] = ACTIONS(1257), + [sym_atx_h5_marker] = ACTIONS(1257), + [sym_atx_h6_marker] = ACTIONS(1257), + [sym__thematic_break] = ACTIONS(1257), + [sym__list_marker_minus] = ACTIONS(1257), + [sym__list_marker_plus] = ACTIONS(1257), + [sym__list_marker_star] = ACTIONS(57), + [sym__list_marker_parenthesis] = ACTIONS(1257), + [sym__list_marker_dot] = ACTIONS(1257), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1257), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1257), + [sym__list_marker_star_dont_interrupt] = ACTIONS(57), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1257), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1257), + [sym__fenced_code_block_start_backtick] = ACTIONS(1257), + [sym__fenced_code_block_start_tilde] = ACTIONS(1257), + [sym__blank_line_start] = ACTIONS(1257), + [sym__code_span_start] = ACTIONS(1257), + [sym__emphasis_open_star] = ACTIONS(1257), + [sym__emphasis_open_underscore] = ACTIONS(1257), + }, [279] = { - [sym__soft_line_break] = STATE(899), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), - [sym__whitespace] = STATE(899), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(304), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), + [sym__soft_line_break] = STATE(825), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), + [sym__whitespace] = STATE(825), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(290), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -56538,9 +56545,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(7), [anon_sym_AT] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(971), [anon_sym_BSLASH] = ACTIONS(15), - [anon_sym_RBRACK] = ACTIONS(1281), + [anon_sym_RBRACK] = ACTIONS(1261), [anon_sym_CARET] = ACTIONS(7), [anon_sym__] = ACTIONS(7), [anon_sym_BQUOTE] = ACTIONS(7), @@ -56548,17 +56555,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), [anon_sym_TILDE] = ACTIONS(7), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(848), - [anon_sym_LT_QMARK] = ACTIONS(850), - [aux_sym__html_block_4_token1] = ACTIONS(852), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(854), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(973), + [anon_sym_LT_QMARK] = ACTIONS(975), + [aux_sym__html_block_4_token1] = ACTIONS(977), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(979), [sym_backslash_escape] = ACTIONS(35), [sym_entity_reference] = ACTIONS(35), [sym_numeric_character_reference] = ACTIONS(35), [sym_uri_autolink] = ACTIONS(35), [sym_email_autolink] = ACTIONS(35), - [sym__whitespace_ge_2] = ACTIONS(856), - [aux_sym__whitespace_token1] = ACTIONS(858), + [sym__whitespace_ge_2] = ACTIONS(981), + [aux_sym__whitespace_token1] = ACTIONS(983), [sym__word_no_digit] = ACTIONS(35), [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), @@ -56567,207 +56574,627 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_underscore] = ACTIONS(73), }, [280] = { - [sym__soft_line_break] = STATE(131), - [sym__link_text] = STATE(2133), - [sym__link_text_non_empty] = STATE(795), - [sym_shortcut_link] = STATE(131), - [sym_full_reference_link] = STATE(131), - [sym_collapsed_reference_link] = STATE(131), - [sym_inline_link] = STATE(131), - [sym_image] = STATE(131), - [sym__image_inline_link] = STATE(801), - [sym__image_shortcut_link] = STATE(801), - [sym__image_full_reference_link] = STATE(801), - [sym__image_collapsed_reference_link] = STATE(801), - [sym__image_description] = STATE(2122), - [sym__image_description_non_empty] = STATE(802), - [sym_html_tag] = STATE(131), - [sym__open_tag] = STATE(683), - [sym__closing_tag] = STATE(683), - [sym__html_comment] = STATE(683), - [sym__processing_instruction] = STATE(683), - [sym__declaration] = STATE(683), - [sym__cdata_section] = STATE(683), - [sym_hard_line_break] = STATE(131), - [sym__whitespace] = STATE(131), - [sym__word] = STATE(131), - [sym__newline] = STATE(2123), - [sym__inline_element_no_underscore] = STATE(131), - [aux_sym__inline_no_underscore] = STATE(131), - [sym__text_inline_no_underscore] = STATE(131), - [sym__emphasis_star] = STATE(761), - [sym__strong_emphasis_star] = STATE(131), - [sym__emphasis_underscore] = STATE(755), - [sym__strong_emphasis_underscore] = STATE(131), - [sym__code_span] = STATE(131), - [anon_sym_BANG] = ACTIONS(711), - [anon_sym_DQUOTE] = ACTIONS(713), - [anon_sym_POUND] = ACTIONS(713), - [anon_sym_DOLLAR] = ACTIONS(713), - [anon_sym_PERCENT] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(713), - [anon_sym_LPAREN] = ACTIONS(713), - [anon_sym_RPAREN] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(713), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_COMMA] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_DOT] = ACTIONS(713), - [anon_sym_SLASH] = ACTIONS(713), - [anon_sym_COLON] = ACTIONS(713), - [anon_sym_SEMI] = ACTIONS(713), - [anon_sym_LT] = ACTIONS(717), - [anon_sym_EQ] = ACTIONS(713), - [anon_sym_GT] = ACTIONS(713), - [anon_sym_QMARK] = ACTIONS(713), - [anon_sym_AT] = ACTIONS(713), - [anon_sym_LBRACK] = ACTIONS(719), - [anon_sym_BSLASH] = ACTIONS(721), - [anon_sym_RBRACK] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym__] = ACTIONS(713), - [anon_sym_BQUOTE] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(713), - [anon_sym_PIPE] = ACTIONS(713), - [anon_sym_RBRACE] = ACTIONS(713), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(723), - [anon_sym_LT_QMARK] = ACTIONS(725), - [aux_sym__html_block_4_token1] = ACTIONS(727), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(729), - [sym_backslash_escape] = ACTIONS(1283), - [sym_entity_reference] = ACTIONS(1283), - [sym_numeric_character_reference] = ACTIONS(1283), - [sym_uri_autolink] = ACTIONS(1283), - [sym_email_autolink] = ACTIONS(1283), - [sym__whitespace_ge_2] = ACTIONS(733), - [aux_sym__whitespace_token1] = ACTIONS(735), - [sym__word_no_digit] = ACTIONS(1283), - [sym__digits] = ACTIONS(1283), - [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(737), - [sym__emphasis_open_star] = ACTIONS(739), - [sym__emphasis_open_underscore] = ACTIONS(741), + [sym_list_marker_minus] = STATE(40), + [sym__list_item_minus] = STATE(311), + [aux_sym__list_minus_repeat1] = STATE(311), + [ts_builtin_sym_end] = ACTIONS(1263), + [anon_sym_BANG] = ACTIONS(1263), + [anon_sym_DQUOTE] = ACTIONS(1263), + [anon_sym_POUND] = ACTIONS(1263), + [anon_sym_DOLLAR] = ACTIONS(1263), + [anon_sym_PERCENT] = ACTIONS(1263), + [anon_sym_AMP] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_RPAREN] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1263), + [anon_sym_COMMA] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_DOT] = ACTIONS(1263), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_COLON] = ACTIONS(1263), + [anon_sym_SEMI] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1265), + [anon_sym_EQ] = ACTIONS(1263), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_QMARK] = ACTIONS(1263), + [anon_sym_AT] = ACTIONS(1263), + [anon_sym_LBRACK] = ACTIONS(1263), + [anon_sym_BSLASH] = ACTIONS(1265), + [anon_sym_RBRACK] = ACTIONS(1263), + [anon_sym_CARET] = ACTIONS(1263), + [anon_sym__] = ACTIONS(1263), + [anon_sym_BQUOTE] = ACTIONS(1263), + [anon_sym_LBRACE] = ACTIONS(1263), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_RBRACE] = ACTIONS(1263), + [anon_sym_TILDE] = ACTIONS(1263), + [aux_sym__html_block_1_token1] = ACTIONS(1263), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1265), + [anon_sym_LT_QMARK] = ACTIONS(1265), + [aux_sym__html_block_4_token1] = ACTIONS(1265), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1263), + [aux_sym__html_block_6_token1] = ACTIONS(1265), + [aux_sym__html_block_6_token2] = ACTIONS(1263), + [sym__open_tag_html_block] = ACTIONS(1263), + [sym__open_tag_html_block_newline] = ACTIONS(1263), + [sym__closing_tag_html_block] = ACTIONS(1263), + [sym__closing_tag_html_block_newline] = ACTIONS(1263), + [sym_backslash_escape] = ACTIONS(1263), + [sym_entity_reference] = ACTIONS(1263), + [sym_numeric_character_reference] = ACTIONS(1263), + [sym_uri_autolink] = ACTIONS(1263), + [sym_email_autolink] = ACTIONS(1263), + [sym__whitespace_ge_2] = ACTIONS(1263), + [aux_sym__whitespace_token1] = ACTIONS(1265), + [sym__word_no_digit] = ACTIONS(1263), + [sym__digits] = ACTIONS(1263), + [aux_sym__newline_token1] = ACTIONS(1263), + [sym__block_quote_start] = ACTIONS(1263), + [sym__indented_chunk_start] = ACTIONS(1263), + [sym_atx_h1_marker] = ACTIONS(1263), + [sym_atx_h2_marker] = ACTIONS(1263), + [sym_atx_h3_marker] = ACTIONS(1263), + [sym_atx_h4_marker] = ACTIONS(1263), + [sym_atx_h5_marker] = ACTIONS(1263), + [sym_atx_h6_marker] = ACTIONS(1263), + [sym__thematic_break] = ACTIONS(1263), + [sym__list_marker_minus] = ACTIONS(53), + [sym__list_marker_plus] = ACTIONS(1263), + [sym__list_marker_star] = ACTIONS(1263), + [sym__list_marker_parenthesis] = ACTIONS(1263), + [sym__list_marker_dot] = ACTIONS(1263), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(53), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1263), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1263), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1263), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1263), + [sym__fenced_code_block_start_backtick] = ACTIONS(1263), + [sym__fenced_code_block_start_tilde] = ACTIONS(1263), + [sym__blank_line_start] = ACTIONS(1263), + [sym__code_span_start] = ACTIONS(1263), + [sym__emphasis_open_star] = ACTIONS(1263), + [sym__emphasis_open_underscore] = ACTIONS(1263), }, [281] = { - [sym_link_title] = STATE(2298), - [sym__whitespace] = STATE(2100), - [anon_sym_BANG] = ACTIONS(1285), - [anon_sym_DQUOTE] = ACTIONS(1287), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1292), - [anon_sym_LPAREN] = ACTIONS(1295), - [anon_sym_RPAREN] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1285), - [anon_sym_DOT] = ACTIONS(1285), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_LT] = ACTIONS(1290), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_AT] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1285), - [anon_sym_BSLASH] = ACTIONS(1290), - [anon_sym_RBRACK] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1285), - [anon_sym__] = ACTIONS(1285), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1285), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_RBRACE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [aux_sym__html_block_1_token1] = ACTIONS(1285), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1290), - [anon_sym_LT_QMARK] = ACTIONS(1290), - [aux_sym__html_block_4_token1] = ACTIONS(1290), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1285), - [aux_sym__html_block_6_token1] = ACTIONS(1290), - [aux_sym__html_block_6_token2] = ACTIONS(1285), - [sym__open_tag_html_block] = ACTIONS(1285), - [sym__open_tag_html_block_newline] = ACTIONS(1285), - [sym__closing_tag_html_block] = ACTIONS(1285), - [sym__closing_tag_html_block_newline] = ACTIONS(1285), - [sym_backslash_escape] = ACTIONS(1285), - [sym_entity_reference] = ACTIONS(1285), - [sym_numeric_character_reference] = ACTIONS(1285), - [sym_uri_autolink] = ACTIONS(1285), - [sym_email_autolink] = ACTIONS(1285), - [sym__whitespace_ge_2] = ACTIONS(1298), - [aux_sym__whitespace_token1] = ACTIONS(1301), - [sym__word_no_digit] = ACTIONS(1285), - [sym__digits] = ACTIONS(1285), - [aux_sym__newline_token1] = ACTIONS(1285), - [sym__block_close] = ACTIONS(1285), - [sym__block_quote_start] = ACTIONS(1285), - [sym__indented_chunk_start] = ACTIONS(1285), - [sym_atx_h1_marker] = ACTIONS(1285), - [sym_atx_h2_marker] = ACTIONS(1285), - [sym_atx_h3_marker] = ACTIONS(1285), - [sym_atx_h4_marker] = ACTIONS(1285), - [sym_atx_h5_marker] = ACTIONS(1285), - [sym_atx_h6_marker] = ACTIONS(1285), - [sym__thematic_break] = ACTIONS(1285), - [sym__list_marker_minus] = ACTIONS(1285), - [sym__list_marker_plus] = ACTIONS(1285), - [sym__list_marker_star] = ACTIONS(1285), - [sym__list_marker_parenthesis] = ACTIONS(1285), - [sym__list_marker_dot] = ACTIONS(1285), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1285), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1285), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1285), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1285), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1285), - [sym__fenced_code_block_start_backtick] = ACTIONS(1285), - [sym__fenced_code_block_start_tilde] = ACTIONS(1285), - [sym__blank_line_start] = ACTIONS(1285), - [sym__no_indented_chunk] = ACTIONS(1304), - [sym__code_span_start] = ACTIONS(1285), - [sym__emphasis_open_star] = ACTIONS(1285), - [sym__emphasis_open_underscore] = ACTIONS(1285), + [sym__soft_line_break] = STATE(192), + [sym__link_text] = STATE(2124), + [sym__link_text_non_empty] = STATE(712), + [sym_shortcut_link] = STATE(192), + [sym_full_reference_link] = STATE(192), + [sym_collapsed_reference_link] = STATE(192), + [sym_inline_link] = STATE(192), + [sym_image] = STATE(192), + [sym__image_inline_link] = STATE(713), + [sym__image_shortcut_link] = STATE(713), + [sym__image_full_reference_link] = STATE(713), + [sym__image_collapsed_reference_link] = STATE(713), + [sym__image_description] = STATE(2120), + [sym__image_description_non_empty] = STATE(714), + [sym_html_tag] = STATE(192), + [sym__open_tag] = STATE(715), + [sym__closing_tag] = STATE(715), + [sym__html_comment] = STATE(715), + [sym__processing_instruction] = STATE(715), + [sym__declaration] = STATE(715), + [sym__cdata_section] = STATE(715), + [sym_hard_line_break] = STATE(192), + [sym__whitespace] = STATE(192), + [sym__word] = STATE(192), + [sym__newline] = STATE(2144), + [sym__inline_element_no_star] = STATE(192), + [aux_sym__inline_no_star] = STATE(192), + [sym__text_inline_no_star] = STATE(192), + [sym__emphasis_star] = STATE(788), + [sym__strong_emphasis_star] = STATE(192), + [sym__emphasis_underscore] = STATE(811), + [sym__strong_emphasis_underscore] = STATE(192), + [sym__code_span] = STATE(192), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_DQUOTE] = ACTIONS(599), + [anon_sym_POUND] = ACTIONS(599), + [anon_sym_DOLLAR] = ACTIONS(599), + [anon_sym_PERCENT] = ACTIONS(599), + [anon_sym_AMP] = ACTIONS(601), + [anon_sym_SQUOTE] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_RPAREN] = ACTIONS(599), + [anon_sym_STAR] = ACTIONS(599), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_COMMA] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_DOT] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(599), + [anon_sym_COLON] = ACTIONS(599), + [anon_sym_SEMI] = ACTIONS(599), + [anon_sym_LT] = ACTIONS(603), + [anon_sym_EQ] = ACTIONS(599), + [anon_sym_GT] = ACTIONS(599), + [anon_sym_QMARK] = ACTIONS(599), + [anon_sym_AT] = ACTIONS(599), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_BSLASH] = ACTIONS(607), + [anon_sym_RBRACK] = ACTIONS(599), + [anon_sym_CARET] = ACTIONS(599), + [anon_sym__] = ACTIONS(599), + [anon_sym_BQUOTE] = ACTIONS(599), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_PIPE] = ACTIONS(599), + [anon_sym_RBRACE] = ACTIONS(599), + [anon_sym_TILDE] = ACTIONS(599), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(609), + [anon_sym_LT_QMARK] = ACTIONS(611), + [aux_sym__html_block_4_token1] = ACTIONS(613), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(615), + [sym_backslash_escape] = ACTIONS(1267), + [sym_entity_reference] = ACTIONS(1267), + [sym_numeric_character_reference] = ACTIONS(1267), + [sym_uri_autolink] = ACTIONS(1267), + [sym_email_autolink] = ACTIONS(1267), + [sym__whitespace_ge_2] = ACTIONS(619), + [aux_sym__whitespace_token1] = ACTIONS(621), + [sym__word_no_digit] = ACTIONS(1267), + [sym__digits] = ACTIONS(1267), + [aux_sym__newline_token1] = ACTIONS(41), + [sym__code_span_start] = ACTIONS(623), + [sym__emphasis_open_star] = ACTIONS(625), + [sym__emphasis_open_underscore] = ACTIONS(627), }, [282] = { - [sym__soft_line_break] = STATE(899), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), - [sym__whitespace] = STATE(899), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(327), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), + [sym__soft_line_break] = STATE(263), + [sym__link_text] = STATE(2126), + [sym__link_text_non_empty] = STATE(716), + [sym_shortcut_link] = STATE(263), + [sym_full_reference_link] = STATE(263), + [sym_collapsed_reference_link] = STATE(263), + [sym_inline_link] = STATE(263), + [sym_image] = STATE(263), + [sym__image_inline_link] = STATE(663), + [sym__image_shortcut_link] = STATE(663), + [sym__image_full_reference_link] = STATE(663), + [sym__image_collapsed_reference_link] = STATE(663), + [sym__image_description] = STATE(2134), + [sym__image_description_non_empty] = STATE(705), + [sym_html_tag] = STATE(263), + [sym__open_tag] = STATE(702), + [sym__closing_tag] = STATE(702), + [sym__html_comment] = STATE(702), + [sym__processing_instruction] = STATE(702), + [sym__declaration] = STATE(702), + [sym__cdata_section] = STATE(702), + [sym_hard_line_break] = STATE(263), + [sym__whitespace] = STATE(263), + [sym__word] = STATE(263), + [sym__newline] = STATE(2143), + [sym__inline_element_no_underscore] = STATE(263), + [aux_sym__inline_no_underscore] = STATE(263), + [sym__text_inline_no_underscore] = STATE(263), + [sym__emphasis_star] = STATE(800), + [sym__strong_emphasis_star] = STATE(263), + [sym__emphasis_underscore] = STATE(677), + [sym__strong_emphasis_underscore] = STATE(263), + [sym__code_span] = STATE(263), + [anon_sym_BANG] = ACTIONS(559), + [anon_sym_DQUOTE] = ACTIONS(561), + [anon_sym_POUND] = ACTIONS(561), + [anon_sym_DOLLAR] = ACTIONS(561), + [anon_sym_PERCENT] = ACTIONS(561), + [anon_sym_AMP] = ACTIONS(563), + [anon_sym_SQUOTE] = ACTIONS(561), + [anon_sym_LPAREN] = ACTIONS(561), + [anon_sym_RPAREN] = ACTIONS(561), + [anon_sym_STAR] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_COMMA] = ACTIONS(561), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_DOT] = ACTIONS(561), + [anon_sym_SLASH] = ACTIONS(561), + [anon_sym_COLON] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(561), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_EQ] = ACTIONS(561), + [anon_sym_GT] = ACTIONS(561), + [anon_sym_QMARK] = ACTIONS(561), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_BSLASH] = ACTIONS(569), + [anon_sym_RBRACK] = ACTIONS(561), + [anon_sym_CARET] = ACTIONS(561), + [anon_sym__] = ACTIONS(561), + [anon_sym_BQUOTE] = ACTIONS(561), + [anon_sym_LBRACE] = ACTIONS(561), + [anon_sym_PIPE] = ACTIONS(561), + [anon_sym_RBRACE] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(571), + [anon_sym_LT_QMARK] = ACTIONS(573), + [aux_sym__html_block_4_token1] = ACTIONS(575), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(577), + [sym_backslash_escape] = ACTIONS(1269), + [sym_entity_reference] = ACTIONS(1269), + [sym_numeric_character_reference] = ACTIONS(1269), + [sym_uri_autolink] = ACTIONS(1269), + [sym_email_autolink] = ACTIONS(1269), + [sym__whitespace_ge_2] = ACTIONS(581), + [aux_sym__whitespace_token1] = ACTIONS(583), + [sym__word_no_digit] = ACTIONS(1269), + [sym__digits] = ACTIONS(1269), + [aux_sym__newline_token1] = ACTIONS(41), + [sym__code_span_start] = ACTIONS(585), + [sym__emphasis_open_star] = ACTIONS(587), + [sym__emphasis_open_underscore] = ACTIONS(589), + }, + [283] = { + [sym_list_marker_parenthesis] = STATE(43), + [sym__list_item_parenthesis] = STATE(318), + [aux_sym__list_parenthesis_repeat1] = STATE(318), + [ts_builtin_sym_end] = ACTIONS(1271), + [anon_sym_BANG] = ACTIONS(1271), + [anon_sym_DQUOTE] = ACTIONS(1271), + [anon_sym_POUND] = ACTIONS(1271), + [anon_sym_DOLLAR] = ACTIONS(1271), + [anon_sym_PERCENT] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(1273), + [anon_sym_SQUOTE] = ACTIONS(1271), + [anon_sym_LPAREN] = ACTIONS(1271), + [anon_sym_RPAREN] = ACTIONS(1271), + [anon_sym_STAR] = ACTIONS(1271), + [anon_sym_PLUS] = ACTIONS(1271), + [anon_sym_COMMA] = ACTIONS(1271), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_DOT] = ACTIONS(1271), + [anon_sym_SLASH] = ACTIONS(1271), + [anon_sym_COLON] = ACTIONS(1271), + [anon_sym_SEMI] = ACTIONS(1271), + [anon_sym_LT] = ACTIONS(1273), + [anon_sym_EQ] = ACTIONS(1271), + [anon_sym_GT] = ACTIONS(1271), + [anon_sym_QMARK] = ACTIONS(1271), + [anon_sym_AT] = ACTIONS(1271), + [anon_sym_LBRACK] = ACTIONS(1271), + [anon_sym_BSLASH] = ACTIONS(1273), + [anon_sym_RBRACK] = ACTIONS(1271), + [anon_sym_CARET] = ACTIONS(1271), + [anon_sym__] = ACTIONS(1271), + [anon_sym_BQUOTE] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_PIPE] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(1271), + [anon_sym_TILDE] = ACTIONS(1271), + [aux_sym__html_block_1_token1] = ACTIONS(1271), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1273), + [anon_sym_LT_QMARK] = ACTIONS(1273), + [aux_sym__html_block_4_token1] = ACTIONS(1273), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1271), + [aux_sym__html_block_6_token1] = ACTIONS(1273), + [aux_sym__html_block_6_token2] = ACTIONS(1271), + [sym__open_tag_html_block] = ACTIONS(1271), + [sym__open_tag_html_block_newline] = ACTIONS(1271), + [sym__closing_tag_html_block] = ACTIONS(1271), + [sym__closing_tag_html_block_newline] = ACTIONS(1271), + [sym_backslash_escape] = ACTIONS(1271), + [sym_entity_reference] = ACTIONS(1271), + [sym_numeric_character_reference] = ACTIONS(1271), + [sym_uri_autolink] = ACTIONS(1271), + [sym_email_autolink] = ACTIONS(1271), + [sym__whitespace_ge_2] = ACTIONS(1271), + [aux_sym__whitespace_token1] = ACTIONS(1273), + [sym__word_no_digit] = ACTIONS(1271), + [sym__digits] = ACTIONS(1271), + [aux_sym__newline_token1] = ACTIONS(1271), + [sym__block_quote_start] = ACTIONS(1271), + [sym__indented_chunk_start] = ACTIONS(1271), + [sym_atx_h1_marker] = ACTIONS(1271), + [sym_atx_h2_marker] = ACTIONS(1271), + [sym_atx_h3_marker] = ACTIONS(1271), + [sym_atx_h4_marker] = ACTIONS(1271), + [sym_atx_h5_marker] = ACTIONS(1271), + [sym_atx_h6_marker] = ACTIONS(1271), + [sym__thematic_break] = ACTIONS(1271), + [sym__list_marker_minus] = ACTIONS(1271), + [sym__list_marker_plus] = ACTIONS(1271), + [sym__list_marker_star] = ACTIONS(1271), + [sym__list_marker_parenthesis] = ACTIONS(59), + [sym__list_marker_dot] = ACTIONS(1271), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1271), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1271), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1271), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1271), + [sym__fenced_code_block_start_backtick] = ACTIONS(1271), + [sym__fenced_code_block_start_tilde] = ACTIONS(1271), + [sym__blank_line_start] = ACTIONS(1271), + [sym__code_span_start] = ACTIONS(1271), + [sym__emphasis_open_star] = ACTIONS(1271), + [sym__emphasis_open_underscore] = ACTIONS(1271), + }, + [284] = { + [sym_link_title] = STATE(2185), + [sym__whitespace] = STATE(2069), + [ts_builtin_sym_end] = ACTIONS(1275), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_DQUOTE] = ACTIONS(1277), + [anon_sym_POUND] = ACTIONS(1275), + [anon_sym_DOLLAR] = ACTIONS(1275), + [anon_sym_PERCENT] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(1280), + [anon_sym_SQUOTE] = ACTIONS(1282), + [anon_sym_LPAREN] = ACTIONS(1285), + [anon_sym_RPAREN] = ACTIONS(1275), + [anon_sym_STAR] = ACTIONS(1275), + [anon_sym_PLUS] = ACTIONS(1275), + [anon_sym_COMMA] = ACTIONS(1275), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_DOT] = ACTIONS(1275), + [anon_sym_SLASH] = ACTIONS(1275), + [anon_sym_COLON] = ACTIONS(1275), + [anon_sym_SEMI] = ACTIONS(1275), + [anon_sym_LT] = ACTIONS(1280), + [anon_sym_EQ] = ACTIONS(1275), + [anon_sym_GT] = ACTIONS(1275), + [anon_sym_QMARK] = ACTIONS(1275), + [anon_sym_AT] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(1275), + [anon_sym_BSLASH] = ACTIONS(1280), + [anon_sym_RBRACK] = ACTIONS(1275), + [anon_sym_CARET] = ACTIONS(1275), + [anon_sym__] = ACTIONS(1275), + [anon_sym_BQUOTE] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(1275), + [anon_sym_PIPE] = ACTIONS(1275), + [anon_sym_RBRACE] = ACTIONS(1275), + [anon_sym_TILDE] = ACTIONS(1275), + [aux_sym__html_block_1_token1] = ACTIONS(1275), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1280), + [anon_sym_LT_QMARK] = ACTIONS(1280), + [aux_sym__html_block_4_token1] = ACTIONS(1280), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1275), + [aux_sym__html_block_6_token1] = ACTIONS(1280), + [aux_sym__html_block_6_token2] = ACTIONS(1275), + [sym__open_tag_html_block] = ACTIONS(1275), + [sym__open_tag_html_block_newline] = ACTIONS(1275), + [sym__closing_tag_html_block] = ACTIONS(1275), + [sym__closing_tag_html_block_newline] = ACTIONS(1275), + [sym_backslash_escape] = ACTIONS(1275), + [sym_entity_reference] = ACTIONS(1275), + [sym_numeric_character_reference] = ACTIONS(1275), + [sym_uri_autolink] = ACTIONS(1275), + [sym_email_autolink] = ACTIONS(1275), + [sym__whitespace_ge_2] = ACTIONS(1288), + [aux_sym__whitespace_token1] = ACTIONS(1291), + [sym__word_no_digit] = ACTIONS(1275), + [sym__digits] = ACTIONS(1275), + [aux_sym__newline_token1] = ACTIONS(1275), + [sym__block_quote_start] = ACTIONS(1275), + [sym__indented_chunk_start] = ACTIONS(1275), + [sym_atx_h1_marker] = ACTIONS(1275), + [sym_atx_h2_marker] = ACTIONS(1275), + [sym_atx_h3_marker] = ACTIONS(1275), + [sym_atx_h4_marker] = ACTIONS(1275), + [sym_atx_h5_marker] = ACTIONS(1275), + [sym_atx_h6_marker] = ACTIONS(1275), + [sym__thematic_break] = ACTIONS(1275), + [sym__list_marker_minus] = ACTIONS(1275), + [sym__list_marker_plus] = ACTIONS(1275), + [sym__list_marker_star] = ACTIONS(1275), + [sym__list_marker_parenthesis] = ACTIONS(1275), + [sym__list_marker_dot] = ACTIONS(1275), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1275), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1275), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1275), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1275), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1275), + [sym__fenced_code_block_start_backtick] = ACTIONS(1275), + [sym__fenced_code_block_start_tilde] = ACTIONS(1275), + [sym__blank_line_start] = ACTIONS(1275), + [sym__no_indented_chunk] = ACTIONS(1294), + [sym__code_span_start] = ACTIONS(1275), + [sym__emphasis_open_star] = ACTIONS(1275), + [sym__emphasis_open_underscore] = ACTIONS(1275), + }, + [285] = { + [sym__indented_chunk] = STATE(314), + [sym__blank_line] = STATE(314), + [aux_sym_indented_code_block_repeat1] = STATE(314), + [anon_sym_BANG] = ACTIONS(1296), + [anon_sym_DQUOTE] = ACTIONS(1296), + [anon_sym_POUND] = ACTIONS(1296), + [anon_sym_DOLLAR] = ACTIONS(1296), + [anon_sym_PERCENT] = ACTIONS(1296), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1296), + [anon_sym_LPAREN] = ACTIONS(1296), + [anon_sym_RPAREN] = ACTIONS(1296), + [anon_sym_STAR] = ACTIONS(1296), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_COMMA] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_DOT] = ACTIONS(1296), + [anon_sym_SLASH] = ACTIONS(1296), + [anon_sym_COLON] = ACTIONS(1296), + [anon_sym_SEMI] = ACTIONS(1296), + [anon_sym_LT] = ACTIONS(1298), + [anon_sym_EQ] = ACTIONS(1296), + [anon_sym_GT] = ACTIONS(1296), + [anon_sym_QMARK] = ACTIONS(1296), + [anon_sym_AT] = ACTIONS(1296), + [anon_sym_LBRACK] = ACTIONS(1296), + [anon_sym_BSLASH] = ACTIONS(1298), + [anon_sym_RBRACK] = ACTIONS(1296), + [anon_sym_CARET] = ACTIONS(1296), + [anon_sym__] = ACTIONS(1296), + [anon_sym_BQUOTE] = ACTIONS(1296), + [anon_sym_LBRACE] = ACTIONS(1296), + [anon_sym_PIPE] = ACTIONS(1296), + [anon_sym_RBRACE] = ACTIONS(1296), + [anon_sym_TILDE] = ACTIONS(1296), + [aux_sym__html_block_1_token1] = ACTIONS(1296), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1298), + [anon_sym_LT_QMARK] = ACTIONS(1298), + [aux_sym__html_block_4_token1] = ACTIONS(1298), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1296), + [aux_sym__html_block_6_token1] = ACTIONS(1298), + [aux_sym__html_block_6_token2] = ACTIONS(1296), + [sym__open_tag_html_block] = ACTIONS(1296), + [sym__open_tag_html_block_newline] = ACTIONS(1296), + [sym__closing_tag_html_block] = ACTIONS(1296), + [sym__closing_tag_html_block_newline] = ACTIONS(1296), + [sym_backslash_escape] = ACTIONS(1296), + [sym_entity_reference] = ACTIONS(1296), + [sym_numeric_character_reference] = ACTIONS(1296), + [sym_uri_autolink] = ACTIONS(1296), + [sym_email_autolink] = ACTIONS(1296), + [sym__whitespace_ge_2] = ACTIONS(1296), + [aux_sym__whitespace_token1] = ACTIONS(1298), + [sym__word_no_digit] = ACTIONS(1296), + [sym__digits] = ACTIONS(1296), + [aux_sym__newline_token1] = ACTIONS(1296), + [sym__block_close] = ACTIONS(1296), + [sym__block_quote_start] = ACTIONS(1296), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(1296), + [sym_atx_h2_marker] = ACTIONS(1296), + [sym_atx_h3_marker] = ACTIONS(1296), + [sym_atx_h4_marker] = ACTIONS(1296), + [sym_atx_h5_marker] = ACTIONS(1296), + [sym_atx_h6_marker] = ACTIONS(1296), + [sym__thematic_break] = ACTIONS(1296), + [sym__list_marker_minus] = ACTIONS(1296), + [sym__list_marker_plus] = ACTIONS(1296), + [sym__list_marker_star] = ACTIONS(1296), + [sym__list_marker_parenthesis] = ACTIONS(1296), + [sym__list_marker_dot] = ACTIONS(1296), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1296), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1296), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1296), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1296), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1296), + [sym__fenced_code_block_start_backtick] = ACTIONS(1296), + [sym__fenced_code_block_start_tilde] = ACTIONS(1296), + [sym__blank_line_start] = ACTIONS(107), + [sym__code_span_start] = ACTIONS(1296), + [sym__emphasis_open_star] = ACTIONS(1296), + [sym__emphasis_open_underscore] = ACTIONS(1296), + }, + [286] = { + [sym_link_title] = STATE(2289), + [sym__whitespace] = STATE(2083), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1302), + [anon_sym_POUND] = ACTIONS(1300), + [anon_sym_DOLLAR] = ACTIONS(1300), + [anon_sym_PERCENT] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1305), + [anon_sym_SQUOTE] = ACTIONS(1307), + [anon_sym_LPAREN] = ACTIONS(1310), + [anon_sym_RPAREN] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_PLUS] = ACTIONS(1300), + [anon_sym_COMMA] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1300), + [anon_sym_DOT] = ACTIONS(1300), + [anon_sym_SLASH] = ACTIONS(1300), + [anon_sym_COLON] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym_LT] = ACTIONS(1305), + [anon_sym_EQ] = ACTIONS(1300), + [anon_sym_GT] = ACTIONS(1300), + [anon_sym_QMARK] = ACTIONS(1300), + [anon_sym_AT] = ACTIONS(1300), + [anon_sym_LBRACK] = ACTIONS(1300), + [anon_sym_BSLASH] = ACTIONS(1305), + [anon_sym_RBRACK] = ACTIONS(1300), + [anon_sym_CARET] = ACTIONS(1300), + [anon_sym__] = ACTIONS(1300), + [anon_sym_BQUOTE] = ACTIONS(1300), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_PIPE] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [aux_sym__html_block_1_token1] = ACTIONS(1300), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1305), + [anon_sym_LT_QMARK] = ACTIONS(1305), + [aux_sym__html_block_4_token1] = ACTIONS(1305), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1300), + [aux_sym__html_block_6_token1] = ACTIONS(1305), + [aux_sym__html_block_6_token2] = ACTIONS(1300), + [sym__open_tag_html_block] = ACTIONS(1300), + [sym__open_tag_html_block_newline] = ACTIONS(1300), + [sym__closing_tag_html_block] = ACTIONS(1300), + [sym__closing_tag_html_block_newline] = ACTIONS(1300), + [sym_backslash_escape] = ACTIONS(1300), + [sym_entity_reference] = ACTIONS(1300), + [sym_numeric_character_reference] = ACTIONS(1300), + [sym_uri_autolink] = ACTIONS(1300), + [sym_email_autolink] = ACTIONS(1300), + [sym__whitespace_ge_2] = ACTIONS(1313), + [aux_sym__whitespace_token1] = ACTIONS(1316), + [sym__word_no_digit] = ACTIONS(1300), + [sym__digits] = ACTIONS(1300), + [aux_sym__newline_token1] = ACTIONS(1300), + [sym__block_close] = ACTIONS(1300), + [sym__block_quote_start] = ACTIONS(1300), + [sym__indented_chunk_start] = ACTIONS(1300), + [sym_atx_h1_marker] = ACTIONS(1300), + [sym_atx_h2_marker] = ACTIONS(1300), + [sym_atx_h3_marker] = ACTIONS(1300), + [sym_atx_h4_marker] = ACTIONS(1300), + [sym_atx_h5_marker] = ACTIONS(1300), + [sym_atx_h6_marker] = ACTIONS(1300), + [sym__thematic_break] = ACTIONS(1300), + [sym__list_marker_minus] = ACTIONS(1300), + [sym__list_marker_plus] = ACTIONS(1300), + [sym__list_marker_star] = ACTIONS(1300), + [sym__list_marker_parenthesis] = ACTIONS(1300), + [sym__list_marker_dot] = ACTIONS(1300), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1300), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1300), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1300), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1300), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1300), + [sym__fenced_code_block_start_backtick] = ACTIONS(1300), + [sym__fenced_code_block_start_tilde] = ACTIONS(1300), + [sym__blank_line_start] = ACTIONS(1300), + [sym__no_indented_chunk] = ACTIONS(1319), + [sym__code_span_start] = ACTIONS(1300), + [sym__emphasis_open_star] = ACTIONS(1300), + [sym__emphasis_open_underscore] = ACTIONS(1300), + }, + [287] = { + [sym__soft_line_break] = STATE(825), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), + [sym__whitespace] = STATE(825), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(300), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -56790,9 +57217,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(7), [anon_sym_AT] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(971), [anon_sym_BSLASH] = ACTIONS(15), - [anon_sym_RBRACK] = ACTIONS(1306), + [anon_sym_RBRACK] = ACTIONS(1248), [anon_sym_CARET] = ACTIONS(7), [anon_sym__] = ACTIONS(7), [anon_sym_BQUOTE] = ACTIONS(7), @@ -56800,17 +57227,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), [anon_sym_TILDE] = ACTIONS(7), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(848), - [anon_sym_LT_QMARK] = ACTIONS(850), - [aux_sym__html_block_4_token1] = ACTIONS(852), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(854), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(973), + [anon_sym_LT_QMARK] = ACTIONS(975), + [aux_sym__html_block_4_token1] = ACTIONS(977), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(979), [sym_backslash_escape] = ACTIONS(35), [sym_entity_reference] = ACTIONS(35), [sym_numeric_character_reference] = ACTIONS(35), [sym_uri_autolink] = ACTIONS(35), [sym_email_autolink] = ACTIONS(35), - [sym__whitespace_ge_2] = ACTIONS(856), - [aux_sym__whitespace_token1] = ACTIONS(858), + [sym__whitespace_ge_2] = ACTIONS(981), + [aux_sym__whitespace_token1] = ACTIONS(983), [sym__word_no_digit] = ACTIONS(35), [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), @@ -56818,124 +57245,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, - [283] = { - [sym_link_title] = STATE(2300), - [sym__whitespace] = STATE(2098), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1310), - [anon_sym_POUND] = ACTIONS(1308), - [anon_sym_DOLLAR] = ACTIONS(1308), - [anon_sym_PERCENT] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1313), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_RPAREN] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_COMMA] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_DOT] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(1308), - [anon_sym_COLON] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym_LT] = ACTIONS(1313), - [anon_sym_EQ] = ACTIONS(1308), - [anon_sym_GT] = ACTIONS(1308), - [anon_sym_QMARK] = ACTIONS(1308), - [anon_sym_AT] = ACTIONS(1308), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_BSLASH] = ACTIONS(1313), - [anon_sym_RBRACK] = ACTIONS(1308), - [anon_sym_CARET] = ACTIONS(1308), - [anon_sym__] = ACTIONS(1308), - [anon_sym_BQUOTE] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_PIPE] = ACTIONS(1308), - [anon_sym_RBRACE] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [aux_sym__html_block_1_token1] = ACTIONS(1308), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1313), - [anon_sym_LT_QMARK] = ACTIONS(1313), - [aux_sym__html_block_4_token1] = ACTIONS(1313), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1308), - [aux_sym__html_block_6_token1] = ACTIONS(1313), - [aux_sym__html_block_6_token2] = ACTIONS(1308), - [sym__open_tag_html_block] = ACTIONS(1308), - [sym__open_tag_html_block_newline] = ACTIONS(1308), - [sym__closing_tag_html_block] = ACTIONS(1308), - [sym__closing_tag_html_block_newline] = ACTIONS(1308), - [sym_backslash_escape] = ACTIONS(1308), - [sym_entity_reference] = ACTIONS(1308), - [sym_numeric_character_reference] = ACTIONS(1308), - [sym_uri_autolink] = ACTIONS(1308), - [sym_email_autolink] = ACTIONS(1308), + [288] = { + [sym_list_marker_plus] = STATE(39), + [sym__list_item_plus] = STATE(295), + [aux_sym__list_plus_repeat1] = STATE(295), + [ts_builtin_sym_end] = ACTIONS(1321), + [anon_sym_BANG] = ACTIONS(1321), + [anon_sym_DQUOTE] = ACTIONS(1321), + [anon_sym_POUND] = ACTIONS(1321), + [anon_sym_DOLLAR] = ACTIONS(1321), + [anon_sym_PERCENT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_SQUOTE] = ACTIONS(1321), + [anon_sym_LPAREN] = ACTIONS(1321), + [anon_sym_RPAREN] = ACTIONS(1321), + [anon_sym_STAR] = ACTIONS(1321), + [anon_sym_PLUS] = ACTIONS(1321), + [anon_sym_COMMA] = ACTIONS(1321), + [anon_sym_DASH] = ACTIONS(1321), + [anon_sym_DOT] = ACTIONS(1321), + [anon_sym_SLASH] = ACTIONS(1321), + [anon_sym_COLON] = ACTIONS(1321), + [anon_sym_SEMI] = ACTIONS(1321), + [anon_sym_LT] = ACTIONS(1323), + [anon_sym_EQ] = ACTIONS(1321), + [anon_sym_GT] = ACTIONS(1321), + [anon_sym_QMARK] = ACTIONS(1321), + [anon_sym_AT] = ACTIONS(1321), + [anon_sym_LBRACK] = ACTIONS(1321), + [anon_sym_BSLASH] = ACTIONS(1323), + [anon_sym_RBRACK] = ACTIONS(1321), + [anon_sym_CARET] = ACTIONS(1321), + [anon_sym__] = ACTIONS(1321), + [anon_sym_BQUOTE] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(1321), + [anon_sym_PIPE] = ACTIONS(1321), + [anon_sym_RBRACE] = ACTIONS(1321), + [anon_sym_TILDE] = ACTIONS(1321), + [aux_sym__html_block_1_token1] = ACTIONS(1321), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1323), + [anon_sym_LT_QMARK] = ACTIONS(1323), + [aux_sym__html_block_4_token1] = ACTIONS(1323), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1321), + [aux_sym__html_block_6_token1] = ACTIONS(1323), + [aux_sym__html_block_6_token2] = ACTIONS(1321), + [sym__open_tag_html_block] = ACTIONS(1321), + [sym__open_tag_html_block_newline] = ACTIONS(1321), + [sym__closing_tag_html_block] = ACTIONS(1321), + [sym__closing_tag_html_block_newline] = ACTIONS(1321), + [sym_backslash_escape] = ACTIONS(1321), + [sym_entity_reference] = ACTIONS(1321), + [sym_numeric_character_reference] = ACTIONS(1321), + [sym_uri_autolink] = ACTIONS(1321), + [sym_email_autolink] = ACTIONS(1321), [sym__whitespace_ge_2] = ACTIONS(1321), - [aux_sym__whitespace_token1] = ACTIONS(1324), - [sym__word_no_digit] = ACTIONS(1308), - [sym__digits] = ACTIONS(1308), - [aux_sym__newline_token1] = ACTIONS(1308), - [sym__block_close] = ACTIONS(1308), - [sym__block_quote_start] = ACTIONS(1308), - [sym__indented_chunk_start] = ACTIONS(1308), - [sym_atx_h1_marker] = ACTIONS(1308), - [sym_atx_h2_marker] = ACTIONS(1308), - [sym_atx_h3_marker] = ACTIONS(1308), - [sym_atx_h4_marker] = ACTIONS(1308), - [sym_atx_h5_marker] = ACTIONS(1308), - [sym_atx_h6_marker] = ACTIONS(1308), - [sym__thematic_break] = ACTIONS(1308), - [sym__list_marker_minus] = ACTIONS(1308), - [sym__list_marker_plus] = ACTIONS(1308), - [sym__list_marker_star] = ACTIONS(1308), - [sym__list_marker_parenthesis] = ACTIONS(1308), - [sym__list_marker_dot] = ACTIONS(1308), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1308), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1308), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1308), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1308), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1308), - [sym__fenced_code_block_start_backtick] = ACTIONS(1308), - [sym__fenced_code_block_start_tilde] = ACTIONS(1308), - [sym__blank_line_start] = ACTIONS(1308), - [sym__no_indented_chunk] = ACTIONS(1327), - [sym__code_span_start] = ACTIONS(1308), - [sym__emphasis_open_star] = ACTIONS(1308), - [sym__emphasis_open_underscore] = ACTIONS(1308), + [aux_sym__whitespace_token1] = ACTIONS(1323), + [sym__word_no_digit] = ACTIONS(1321), + [sym__digits] = ACTIONS(1321), + [aux_sym__newline_token1] = ACTIONS(1321), + [sym__block_quote_start] = ACTIONS(1321), + [sym__indented_chunk_start] = ACTIONS(1321), + [sym_atx_h1_marker] = ACTIONS(1321), + [sym_atx_h2_marker] = ACTIONS(1321), + [sym_atx_h3_marker] = ACTIONS(1321), + [sym_atx_h4_marker] = ACTIONS(1321), + [sym_atx_h5_marker] = ACTIONS(1321), + [sym_atx_h6_marker] = ACTIONS(1321), + [sym__thematic_break] = ACTIONS(1321), + [sym__list_marker_minus] = ACTIONS(1321), + [sym__list_marker_plus] = ACTIONS(55), + [sym__list_marker_star] = ACTIONS(1321), + [sym__list_marker_parenthesis] = ACTIONS(1321), + [sym__list_marker_dot] = ACTIONS(1321), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1321), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(55), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1321), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1321), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1321), + [sym__fenced_code_block_start_backtick] = ACTIONS(1321), + [sym__fenced_code_block_start_tilde] = ACTIONS(1321), + [sym__blank_line_start] = ACTIONS(1321), + [sym__code_span_start] = ACTIONS(1321), + [sym__emphasis_open_star] = ACTIONS(1321), + [sym__emphasis_open_underscore] = ACTIONS(1321), }, - [284] = { - [sym__soft_line_break] = STATE(899), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), - [sym__whitespace] = STATE(899), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(304), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), + [289] = { + [sym__soft_line_break] = STATE(825), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), + [sym__whitespace] = STATE(825), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(296), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -56958,9 +57385,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(7), [anon_sym_AT] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(971), [anon_sym_BSLASH] = ACTIONS(15), - [anon_sym_RBRACK] = ACTIONS(1329), + [anon_sym_RBRACK] = ACTIONS(1248), [anon_sym_CARET] = ACTIONS(7), [anon_sym__] = ACTIONS(7), [anon_sym_BQUOTE] = ACTIONS(7), @@ -56968,17 +57395,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), [anon_sym_TILDE] = ACTIONS(7), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(848), - [anon_sym_LT_QMARK] = ACTIONS(850), - [aux_sym__html_block_4_token1] = ACTIONS(852), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(854), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(973), + [anon_sym_LT_QMARK] = ACTIONS(975), + [aux_sym__html_block_4_token1] = ACTIONS(977), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(979), [sym_backslash_escape] = ACTIONS(35), [sym_entity_reference] = ACTIONS(35), [sym_numeric_character_reference] = ACTIONS(35), [sym_uri_autolink] = ACTIONS(35), [sym_email_autolink] = ACTIONS(35), - [sym__whitespace_ge_2] = ACTIONS(856), - [aux_sym__whitespace_token1] = ACTIONS(858), + [sym__whitespace_ge_2] = ACTIONS(981), + [aux_sym__whitespace_token1] = ACTIONS(983), [sym__word_no_digit] = ACTIONS(35), [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), @@ -56986,292 +57413,376 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, - [285] = { + [290] = { + [sym__soft_line_break] = STATE(825), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), + [sym__whitespace] = STATE(825), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(290), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), + [anon_sym_BANG] = ACTIONS(1325), + [anon_sym_DQUOTE] = ACTIONS(1328), + [anon_sym_POUND] = ACTIONS(1328), + [anon_sym_DOLLAR] = ACTIONS(1328), + [anon_sym_PERCENT] = ACTIONS(1328), + [anon_sym_AMP] = ACTIONS(1331), + [anon_sym_SQUOTE] = ACTIONS(1328), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_RPAREN] = ACTIONS(1328), + [anon_sym_STAR] = ACTIONS(1328), + [anon_sym_PLUS] = ACTIONS(1328), + [anon_sym_COMMA] = ACTIONS(1328), + [anon_sym_DASH] = ACTIONS(1328), + [anon_sym_DOT] = ACTIONS(1328), + [anon_sym_SLASH] = ACTIONS(1328), + [anon_sym_COLON] = ACTIONS(1328), + [anon_sym_SEMI] = ACTIONS(1328), + [anon_sym_LT] = ACTIONS(1334), + [anon_sym_EQ] = ACTIONS(1328), + [anon_sym_GT] = ACTIONS(1328), + [anon_sym_QMARK] = ACTIONS(1328), + [anon_sym_AT] = ACTIONS(1328), + [anon_sym_LBRACK] = ACTIONS(1337), + [anon_sym_BSLASH] = ACTIONS(1340), + [anon_sym_RBRACK] = ACTIONS(1328), + [anon_sym_CARET] = ACTIONS(1328), + [anon_sym__] = ACTIONS(1328), + [anon_sym_BQUOTE] = ACTIONS(1328), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_PIPE] = ACTIONS(1328), + [anon_sym_RBRACE] = ACTIONS(1328), + [anon_sym_TILDE] = ACTIONS(1328), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1343), + [anon_sym_LT_QMARK] = ACTIONS(1346), + [aux_sym__html_block_4_token1] = ACTIONS(1349), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1352), + [sym_backslash_escape] = ACTIONS(1355), + [sym_entity_reference] = ACTIONS(1355), + [sym_numeric_character_reference] = ACTIONS(1355), + [sym_uri_autolink] = ACTIONS(1355), + [sym_email_autolink] = ACTIONS(1355), + [sym__whitespace_ge_2] = ACTIONS(1358), + [aux_sym__whitespace_token1] = ACTIONS(1361), + [sym__word_no_digit] = ACTIONS(1355), + [sym__digits] = ACTIONS(1355), + [aux_sym__newline_token1] = ACTIONS(1364), + [sym__code_span_start] = ACTIONS(1367), + [sym__emphasis_open_star] = ACTIONS(1370), + [sym__emphasis_open_underscore] = ACTIONS(1373), + }, + [291] = { + [sym_list_marker_plus] = STATE(25), + [sym__list_item_plus] = STATE(305), + [aux_sym__list_plus_repeat1] = STATE(305), + [anon_sym_BANG] = ACTIONS(1321), + [anon_sym_DQUOTE] = ACTIONS(1321), + [anon_sym_POUND] = ACTIONS(1321), + [anon_sym_DOLLAR] = ACTIONS(1321), + [anon_sym_PERCENT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_SQUOTE] = ACTIONS(1321), + [anon_sym_LPAREN] = ACTIONS(1321), + [anon_sym_RPAREN] = ACTIONS(1321), + [anon_sym_STAR] = ACTIONS(1321), + [anon_sym_PLUS] = ACTIONS(1321), + [anon_sym_COMMA] = ACTIONS(1321), + [anon_sym_DASH] = ACTIONS(1321), + [anon_sym_DOT] = ACTIONS(1321), + [anon_sym_SLASH] = ACTIONS(1321), + [anon_sym_COLON] = ACTIONS(1321), + [anon_sym_SEMI] = ACTIONS(1321), + [anon_sym_LT] = ACTIONS(1323), + [anon_sym_EQ] = ACTIONS(1321), + [anon_sym_GT] = ACTIONS(1321), + [anon_sym_QMARK] = ACTIONS(1321), + [anon_sym_AT] = ACTIONS(1321), + [anon_sym_LBRACK] = ACTIONS(1321), + [anon_sym_BSLASH] = ACTIONS(1323), + [anon_sym_RBRACK] = ACTIONS(1321), + [anon_sym_CARET] = ACTIONS(1321), + [anon_sym__] = ACTIONS(1321), + [anon_sym_BQUOTE] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(1321), + [anon_sym_PIPE] = ACTIONS(1321), + [anon_sym_RBRACE] = ACTIONS(1321), + [anon_sym_TILDE] = ACTIONS(1321), + [aux_sym__html_block_1_token1] = ACTIONS(1321), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1323), + [anon_sym_LT_QMARK] = ACTIONS(1323), + [aux_sym__html_block_4_token1] = ACTIONS(1323), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1321), + [aux_sym__html_block_6_token1] = ACTIONS(1323), + [aux_sym__html_block_6_token2] = ACTIONS(1321), + [sym__open_tag_html_block] = ACTIONS(1321), + [sym__open_tag_html_block_newline] = ACTIONS(1321), + [sym__closing_tag_html_block] = ACTIONS(1321), + [sym__closing_tag_html_block_newline] = ACTIONS(1321), + [sym_backslash_escape] = ACTIONS(1321), + [sym_entity_reference] = ACTIONS(1321), + [sym_numeric_character_reference] = ACTIONS(1321), + [sym_uri_autolink] = ACTIONS(1321), + [sym_email_autolink] = ACTIONS(1321), + [sym__whitespace_ge_2] = ACTIONS(1321), + [aux_sym__whitespace_token1] = ACTIONS(1323), + [sym__word_no_digit] = ACTIONS(1321), + [sym__digits] = ACTIONS(1321), + [aux_sym__newline_token1] = ACTIONS(1321), + [sym__block_close] = ACTIONS(1321), + [sym__block_quote_start] = ACTIONS(1321), + [sym__indented_chunk_start] = ACTIONS(1321), + [sym_atx_h1_marker] = ACTIONS(1321), + [sym_atx_h2_marker] = ACTIONS(1321), + [sym_atx_h3_marker] = ACTIONS(1321), + [sym_atx_h4_marker] = ACTIONS(1321), + [sym_atx_h5_marker] = ACTIONS(1321), + [sym_atx_h6_marker] = ACTIONS(1321), + [sym__thematic_break] = ACTIONS(1321), + [sym__list_marker_minus] = ACTIONS(1321), + [sym__list_marker_plus] = ACTIONS(55), + [sym__list_marker_star] = ACTIONS(1321), + [sym__list_marker_parenthesis] = ACTIONS(1321), + [sym__list_marker_dot] = ACTIONS(1321), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1321), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(55), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1321), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1321), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1321), + [sym__fenced_code_block_start_backtick] = ACTIONS(1321), + [sym__fenced_code_block_start_tilde] = ACTIONS(1321), + [sym__blank_line_start] = ACTIONS(1321), + [sym__code_span_start] = ACTIONS(1321), + [sym__emphasis_open_star] = ACTIONS(1321), + [sym__emphasis_open_underscore] = ACTIONS(1321), + }, + [292] = { + [sym_link_title] = STATE(2240), + [sym__whitespace] = STATE(2068), + [ts_builtin_sym_end] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1302), + [anon_sym_POUND] = ACTIONS(1300), + [anon_sym_DOLLAR] = ACTIONS(1300), + [anon_sym_PERCENT] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1305), + [anon_sym_SQUOTE] = ACTIONS(1307), + [anon_sym_LPAREN] = ACTIONS(1310), + [anon_sym_RPAREN] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_PLUS] = ACTIONS(1300), + [anon_sym_COMMA] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1300), + [anon_sym_DOT] = ACTIONS(1300), + [anon_sym_SLASH] = ACTIONS(1300), + [anon_sym_COLON] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym_LT] = ACTIONS(1305), + [anon_sym_EQ] = ACTIONS(1300), + [anon_sym_GT] = ACTIONS(1300), + [anon_sym_QMARK] = ACTIONS(1300), + [anon_sym_AT] = ACTIONS(1300), + [anon_sym_LBRACK] = ACTIONS(1300), + [anon_sym_BSLASH] = ACTIONS(1305), + [anon_sym_RBRACK] = ACTIONS(1300), + [anon_sym_CARET] = ACTIONS(1300), + [anon_sym__] = ACTIONS(1300), + [anon_sym_BQUOTE] = ACTIONS(1300), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_PIPE] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [aux_sym__html_block_1_token1] = ACTIONS(1300), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1305), + [anon_sym_LT_QMARK] = ACTIONS(1305), + [aux_sym__html_block_4_token1] = ACTIONS(1305), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1300), + [aux_sym__html_block_6_token1] = ACTIONS(1305), + [aux_sym__html_block_6_token2] = ACTIONS(1300), + [sym__open_tag_html_block] = ACTIONS(1300), + [sym__open_tag_html_block_newline] = ACTIONS(1300), + [sym__closing_tag_html_block] = ACTIONS(1300), + [sym__closing_tag_html_block_newline] = ACTIONS(1300), + [sym_backslash_escape] = ACTIONS(1300), + [sym_entity_reference] = ACTIONS(1300), + [sym_numeric_character_reference] = ACTIONS(1300), + [sym_uri_autolink] = ACTIONS(1300), + [sym_email_autolink] = ACTIONS(1300), + [sym__whitespace_ge_2] = ACTIONS(1313), + [aux_sym__whitespace_token1] = ACTIONS(1316), + [sym__word_no_digit] = ACTIONS(1300), + [sym__digits] = ACTIONS(1300), + [aux_sym__newline_token1] = ACTIONS(1300), + [sym__block_quote_start] = ACTIONS(1300), + [sym__indented_chunk_start] = ACTIONS(1300), + [sym_atx_h1_marker] = ACTIONS(1300), + [sym_atx_h2_marker] = ACTIONS(1300), + [sym_atx_h3_marker] = ACTIONS(1300), + [sym_atx_h4_marker] = ACTIONS(1300), + [sym_atx_h5_marker] = ACTIONS(1300), + [sym_atx_h6_marker] = ACTIONS(1300), + [sym__thematic_break] = ACTIONS(1300), + [sym__list_marker_minus] = ACTIONS(1300), + [sym__list_marker_plus] = ACTIONS(1300), + [sym__list_marker_star] = ACTIONS(1300), + [sym__list_marker_parenthesis] = ACTIONS(1300), + [sym__list_marker_dot] = ACTIONS(1300), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1300), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1300), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1300), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1300), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1300), + [sym__fenced_code_block_start_backtick] = ACTIONS(1300), + [sym__fenced_code_block_start_tilde] = ACTIONS(1300), + [sym__blank_line_start] = ACTIONS(1300), + [sym__no_indented_chunk] = ACTIONS(1376), + [sym__code_span_start] = ACTIONS(1300), + [sym__emphasis_open_star] = ACTIONS(1300), + [sym__emphasis_open_underscore] = ACTIONS(1300), + }, + [293] = { [sym__indented_chunk] = STATE(293), [sym__blank_line] = STATE(293), [aux_sym_indented_code_block_repeat1] = STATE(293), - [ts_builtin_sym_end] = ACTIONS(1331), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_DQUOTE] = ACTIONS(1331), - [anon_sym_POUND] = ACTIONS(1331), - [anon_sym_DOLLAR] = ACTIONS(1331), - [anon_sym_PERCENT] = ACTIONS(1331), - [anon_sym_AMP] = ACTIONS(1333), - [anon_sym_SQUOTE] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(1331), - [anon_sym_RPAREN] = ACTIONS(1331), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_PLUS] = ACTIONS(1331), - [anon_sym_COMMA] = ACTIONS(1331), - [anon_sym_DASH] = ACTIONS(1331), - [anon_sym_DOT] = ACTIONS(1331), - [anon_sym_SLASH] = ACTIONS(1331), - [anon_sym_COLON] = ACTIONS(1331), - [anon_sym_SEMI] = ACTIONS(1331), - [anon_sym_LT] = ACTIONS(1333), - [anon_sym_EQ] = ACTIONS(1331), - [anon_sym_GT] = ACTIONS(1331), - [anon_sym_QMARK] = ACTIONS(1331), - [anon_sym_AT] = ACTIONS(1331), - [anon_sym_LBRACK] = ACTIONS(1331), - [anon_sym_BSLASH] = ACTIONS(1333), - [anon_sym_RBRACK] = ACTIONS(1331), - [anon_sym_CARET] = ACTIONS(1331), - [anon_sym__] = ACTIONS(1331), - [anon_sym_BQUOTE] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1331), - [anon_sym_RBRACE] = ACTIONS(1331), - [anon_sym_TILDE] = ACTIONS(1331), - [aux_sym__html_block_1_token1] = ACTIONS(1331), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1333), - [anon_sym_LT_QMARK] = ACTIONS(1333), - [aux_sym__html_block_4_token1] = ACTIONS(1333), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1331), - [aux_sym__html_block_6_token1] = ACTIONS(1333), - [aux_sym__html_block_6_token2] = ACTIONS(1331), - [sym__open_tag_html_block] = ACTIONS(1331), - [sym__open_tag_html_block_newline] = ACTIONS(1331), - [sym__closing_tag_html_block] = ACTIONS(1331), - [sym__closing_tag_html_block_newline] = ACTIONS(1331), - [sym_backslash_escape] = ACTIONS(1331), - [sym_entity_reference] = ACTIONS(1331), - [sym_numeric_character_reference] = ACTIONS(1331), - [sym_uri_autolink] = ACTIONS(1331), - [sym_email_autolink] = ACTIONS(1331), - [sym__whitespace_ge_2] = ACTIONS(1331), - [aux_sym__whitespace_token1] = ACTIONS(1333), - [sym__word_no_digit] = ACTIONS(1331), - [sym__digits] = ACTIONS(1331), - [aux_sym__newline_token1] = ACTIONS(1331), - [sym__block_quote_start] = ACTIONS(1331), - [sym__indented_chunk_start] = ACTIONS(47), - [sym_atx_h1_marker] = ACTIONS(1331), - [sym_atx_h2_marker] = ACTIONS(1331), - [sym_atx_h3_marker] = ACTIONS(1331), - [sym_atx_h4_marker] = ACTIONS(1331), - [sym_atx_h5_marker] = ACTIONS(1331), - [sym_atx_h6_marker] = ACTIONS(1331), - [sym__thematic_break] = ACTIONS(1331), - [sym__list_marker_minus] = ACTIONS(1331), - [sym__list_marker_plus] = ACTIONS(1331), - [sym__list_marker_star] = ACTIONS(1331), - [sym__list_marker_parenthesis] = ACTIONS(1331), - [sym__list_marker_dot] = ACTIONS(1331), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1331), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1331), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1331), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1331), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1331), - [sym__fenced_code_block_start_backtick] = ACTIONS(1331), - [sym__fenced_code_block_start_tilde] = ACTIONS(1331), - [sym__blank_line_start] = ACTIONS(67), - [sym__code_span_start] = ACTIONS(1331), - [sym__emphasis_open_star] = ACTIONS(1331), - [sym__emphasis_open_underscore] = ACTIONS(1331), - }, - [286] = { - [sym_link_title] = STATE(2306), - [sym__whitespace] = STATE(2095), - [anon_sym_BANG] = ACTIONS(1335), - [anon_sym_DQUOTE] = ACTIONS(1337), - [anon_sym_POUND] = ACTIONS(1335), - [anon_sym_DOLLAR] = ACTIONS(1335), - [anon_sym_PERCENT] = ACTIONS(1335), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_SQUOTE] = ACTIONS(1342), - [anon_sym_LPAREN] = ACTIONS(1345), - [anon_sym_RPAREN] = ACTIONS(1335), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_PLUS] = ACTIONS(1335), - [anon_sym_COMMA] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(1335), - [anon_sym_DOT] = ACTIONS(1335), - [anon_sym_SLASH] = ACTIONS(1335), - [anon_sym_COLON] = ACTIONS(1335), - [anon_sym_SEMI] = ACTIONS(1335), - [anon_sym_LT] = ACTIONS(1340), - [anon_sym_EQ] = ACTIONS(1335), - [anon_sym_GT] = ACTIONS(1335), - [anon_sym_QMARK] = ACTIONS(1335), - [anon_sym_AT] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(1335), - [anon_sym_BSLASH] = ACTIONS(1340), - [anon_sym_RBRACK] = ACTIONS(1335), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym__] = ACTIONS(1335), - [anon_sym_BQUOTE] = ACTIONS(1335), - [anon_sym_LBRACE] = ACTIONS(1335), - [anon_sym_PIPE] = ACTIONS(1335), - [anon_sym_RBRACE] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(1335), - [aux_sym__html_block_1_token1] = ACTIONS(1335), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1340), - [anon_sym_LT_QMARK] = ACTIONS(1340), - [aux_sym__html_block_4_token1] = ACTIONS(1340), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1335), - [aux_sym__html_block_6_token1] = ACTIONS(1340), - [aux_sym__html_block_6_token2] = ACTIONS(1335), - [sym__open_tag_html_block] = ACTIONS(1335), - [sym__open_tag_html_block_newline] = ACTIONS(1335), - [sym__closing_tag_html_block] = ACTIONS(1335), - [sym__closing_tag_html_block_newline] = ACTIONS(1335), - [sym_backslash_escape] = ACTIONS(1335), - [sym_entity_reference] = ACTIONS(1335), - [sym_numeric_character_reference] = ACTIONS(1335), - [sym_uri_autolink] = ACTIONS(1335), - [sym_email_autolink] = ACTIONS(1335), - [sym__whitespace_ge_2] = ACTIONS(1348), - [aux_sym__whitespace_token1] = ACTIONS(1351), - [sym__word_no_digit] = ACTIONS(1335), - [sym__digits] = ACTIONS(1335), - [aux_sym__newline_token1] = ACTIONS(1335), - [sym__block_close] = ACTIONS(1335), - [sym__block_quote_start] = ACTIONS(1335), - [sym__indented_chunk_start] = ACTIONS(1335), - [sym_atx_h1_marker] = ACTIONS(1335), - [sym_atx_h2_marker] = ACTIONS(1335), - [sym_atx_h3_marker] = ACTIONS(1335), - [sym_atx_h4_marker] = ACTIONS(1335), - [sym_atx_h5_marker] = ACTIONS(1335), - [sym_atx_h6_marker] = ACTIONS(1335), - [sym__thematic_break] = ACTIONS(1335), - [sym__list_marker_minus] = ACTIONS(1335), - [sym__list_marker_plus] = ACTIONS(1335), - [sym__list_marker_star] = ACTIONS(1335), - [sym__list_marker_parenthesis] = ACTIONS(1335), - [sym__list_marker_dot] = ACTIONS(1335), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1335), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1335), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1335), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1335), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1335), - [sym__fenced_code_block_start_backtick] = ACTIONS(1335), - [sym__fenced_code_block_start_tilde] = ACTIONS(1335), - [sym__blank_line_start] = ACTIONS(1335), - [sym__no_indented_chunk] = ACTIONS(1354), - [sym__code_span_start] = ACTIONS(1335), - [sym__emphasis_open_star] = ACTIONS(1335), - [sym__emphasis_open_underscore] = ACTIONS(1335), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_DQUOTE] = ACTIONS(1378), + [anon_sym_POUND] = ACTIONS(1378), + [anon_sym_DOLLAR] = ACTIONS(1378), + [anon_sym_PERCENT] = ACTIONS(1378), + [anon_sym_AMP] = ACTIONS(1380), + [anon_sym_SQUOTE] = ACTIONS(1378), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_RPAREN] = ACTIONS(1378), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_PLUS] = ACTIONS(1378), + [anon_sym_COMMA] = ACTIONS(1378), + [anon_sym_DASH] = ACTIONS(1378), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_SLASH] = ACTIONS(1378), + [anon_sym_COLON] = ACTIONS(1378), + [anon_sym_SEMI] = ACTIONS(1378), + [anon_sym_LT] = ACTIONS(1380), + [anon_sym_EQ] = ACTIONS(1378), + [anon_sym_GT] = ACTIONS(1378), + [anon_sym_QMARK] = ACTIONS(1378), + [anon_sym_AT] = ACTIONS(1378), + [anon_sym_LBRACK] = ACTIONS(1378), + [anon_sym_BSLASH] = ACTIONS(1380), + [anon_sym_RBRACK] = ACTIONS(1378), + [anon_sym_CARET] = ACTIONS(1378), + [anon_sym__] = ACTIONS(1378), + [anon_sym_BQUOTE] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1378), + [anon_sym_PIPE] = ACTIONS(1378), + [anon_sym_RBRACE] = ACTIONS(1378), + [anon_sym_TILDE] = ACTIONS(1378), + [aux_sym__html_block_1_token1] = ACTIONS(1378), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1380), + [anon_sym_LT_QMARK] = ACTIONS(1380), + [aux_sym__html_block_4_token1] = ACTIONS(1380), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1378), + [aux_sym__html_block_6_token1] = ACTIONS(1380), + [aux_sym__html_block_6_token2] = ACTIONS(1378), + [sym__open_tag_html_block] = ACTIONS(1378), + [sym__open_tag_html_block_newline] = ACTIONS(1378), + [sym__closing_tag_html_block] = ACTIONS(1378), + [sym__closing_tag_html_block_newline] = ACTIONS(1378), + [sym_backslash_escape] = ACTIONS(1378), + [sym_entity_reference] = ACTIONS(1378), + [sym_numeric_character_reference] = ACTIONS(1378), + [sym_uri_autolink] = ACTIONS(1378), + [sym_email_autolink] = ACTIONS(1378), + [sym__whitespace_ge_2] = ACTIONS(1378), + [aux_sym__whitespace_token1] = ACTIONS(1380), + [sym__word_no_digit] = ACTIONS(1378), + [sym__digits] = ACTIONS(1378), + [aux_sym__newline_token1] = ACTIONS(1378), + [sym__block_close] = ACTIONS(1378), + [sym__block_quote_start] = ACTIONS(1378), + [sym__indented_chunk_start] = ACTIONS(1382), + [sym_atx_h1_marker] = ACTIONS(1378), + [sym_atx_h2_marker] = ACTIONS(1378), + [sym_atx_h3_marker] = ACTIONS(1378), + [sym_atx_h4_marker] = ACTIONS(1378), + [sym_atx_h5_marker] = ACTIONS(1378), + [sym_atx_h6_marker] = ACTIONS(1378), + [sym__thematic_break] = ACTIONS(1378), + [sym__list_marker_minus] = ACTIONS(1378), + [sym__list_marker_plus] = ACTIONS(1378), + [sym__list_marker_star] = ACTIONS(1378), + [sym__list_marker_parenthesis] = ACTIONS(1378), + [sym__list_marker_dot] = ACTIONS(1378), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1378), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1378), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1378), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1378), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1378), + [sym__fenced_code_block_start_backtick] = ACTIONS(1378), + [sym__fenced_code_block_start_tilde] = ACTIONS(1378), + [sym__blank_line_start] = ACTIONS(1385), + [sym__code_span_start] = ACTIONS(1378), + [sym__emphasis_open_star] = ACTIONS(1378), + [sym__emphasis_open_underscore] = ACTIONS(1378), }, - [287] = { - [sym__indented_chunk] = STATE(323), - [sym__blank_line] = STATE(323), - [aux_sym_indented_code_block_repeat1] = STATE(323), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_DQUOTE] = ACTIONS(1356), - [anon_sym_POUND] = ACTIONS(1356), - [anon_sym_DOLLAR] = ACTIONS(1356), - [anon_sym_PERCENT] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_SQUOTE] = ACTIONS(1356), - [anon_sym_LPAREN] = ACTIONS(1356), - [anon_sym_RPAREN] = ACTIONS(1356), - [anon_sym_STAR] = ACTIONS(1356), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_COMMA] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(1356), - [anon_sym_COLON] = ACTIONS(1356), - [anon_sym_SEMI] = ACTIONS(1356), - [anon_sym_LT] = ACTIONS(1358), - [anon_sym_EQ] = ACTIONS(1356), - [anon_sym_GT] = ACTIONS(1356), - [anon_sym_QMARK] = ACTIONS(1356), - [anon_sym_AT] = ACTIONS(1356), - [anon_sym_LBRACK] = ACTIONS(1356), - [anon_sym_BSLASH] = ACTIONS(1358), - [anon_sym_RBRACK] = ACTIONS(1356), - [anon_sym_CARET] = ACTIONS(1356), - [anon_sym__] = ACTIONS(1356), - [anon_sym_BQUOTE] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1356), - [anon_sym_PIPE] = ACTIONS(1356), - [anon_sym_RBRACE] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1356), - [aux_sym__html_block_1_token1] = ACTIONS(1356), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1358), - [anon_sym_LT_QMARK] = ACTIONS(1358), - [aux_sym__html_block_4_token1] = ACTIONS(1358), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1356), - [aux_sym__html_block_6_token1] = ACTIONS(1358), - [aux_sym__html_block_6_token2] = ACTIONS(1356), - [sym__open_tag_html_block] = ACTIONS(1356), - [sym__open_tag_html_block_newline] = ACTIONS(1356), - [sym__closing_tag_html_block] = ACTIONS(1356), - [sym__closing_tag_html_block_newline] = ACTIONS(1356), - [sym_backslash_escape] = ACTIONS(1356), - [sym_entity_reference] = ACTIONS(1356), - [sym_numeric_character_reference] = ACTIONS(1356), - [sym_uri_autolink] = ACTIONS(1356), - [sym_email_autolink] = ACTIONS(1356), - [sym__whitespace_ge_2] = ACTIONS(1356), - [aux_sym__whitespace_token1] = ACTIONS(1358), - [sym__word_no_digit] = ACTIONS(1356), - [sym__digits] = ACTIONS(1356), - [aux_sym__newline_token1] = ACTIONS(1356), - [sym__block_close] = ACTIONS(1356), - [sym__block_quote_start] = ACTIONS(1356), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(1356), - [sym_atx_h2_marker] = ACTIONS(1356), - [sym_atx_h3_marker] = ACTIONS(1356), - [sym_atx_h4_marker] = ACTIONS(1356), - [sym_atx_h5_marker] = ACTIONS(1356), - [sym_atx_h6_marker] = ACTIONS(1356), - [sym__thematic_break] = ACTIONS(1356), - [sym__list_marker_minus] = ACTIONS(1356), - [sym__list_marker_plus] = ACTIONS(1356), - [sym__list_marker_star] = ACTIONS(1356), - [sym__list_marker_parenthesis] = ACTIONS(1356), - [sym__list_marker_dot] = ACTIONS(1356), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1356), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1356), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1356), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1356), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1356), - [sym__fenced_code_block_start_backtick] = ACTIONS(1356), - [sym__fenced_code_block_start_tilde] = ACTIONS(1356), - [sym__blank_line_start] = ACTIONS(109), - [sym__code_span_start] = ACTIONS(1356), - [sym__emphasis_open_star] = ACTIONS(1356), - [sym__emphasis_open_underscore] = ACTIONS(1356), - }, - [288] = { - [sym__soft_line_break] = STATE(899), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), - [sym__whitespace] = STATE(899), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(284), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), + [294] = { + [sym__soft_line_break] = STATE(825), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), + [sym__whitespace] = STATE(825), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(290), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -57294,9 +57805,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(7), [anon_sym_AT] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(971), [anon_sym_BSLASH] = ACTIONS(15), - [anon_sym_RBRACK] = ACTIONS(1306), + [anon_sym_RBRACK] = ACTIONS(1388), [anon_sym_CARET] = ACTIONS(7), [anon_sym__] = ACTIONS(7), [anon_sym_BQUOTE] = ACTIONS(7), @@ -57304,17 +57815,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), [anon_sym_TILDE] = ACTIONS(7), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(848), - [anon_sym_LT_QMARK] = ACTIONS(850), - [aux_sym__html_block_4_token1] = ACTIONS(852), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(854), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(973), + [anon_sym_LT_QMARK] = ACTIONS(975), + [aux_sym__html_block_4_token1] = ACTIONS(977), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(979), [sym_backslash_escape] = ACTIONS(35), [sym_entity_reference] = ACTIONS(35), [sym_numeric_character_reference] = ACTIONS(35), [sym_uri_autolink] = ACTIONS(35), [sym_email_autolink] = ACTIONS(35), - [sym__whitespace_ge_2] = ACTIONS(856), - [aux_sym__whitespace_token1] = ACTIONS(858), + [sym__whitespace_ge_2] = ACTIONS(981), + [aux_sym__whitespace_token1] = ACTIONS(983), [sym__word_no_digit] = ACTIONS(35), [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), @@ -57322,124 +57833,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, - [289] = { - [sym_link_title] = STATE(2314), - [sym__whitespace] = STATE(2087), - [anon_sym_BANG] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_POUND] = ACTIONS(1360), - [anon_sym_DOLLAR] = ACTIONS(1360), - [anon_sym_PERCENT] = ACTIONS(1360), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_SQUOTE] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_RPAREN] = ACTIONS(1360), - [anon_sym_STAR] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_COMMA] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_DOT] = ACTIONS(1360), - [anon_sym_SLASH] = ACTIONS(1360), - [anon_sym_COLON] = ACTIONS(1360), - [anon_sym_SEMI] = ACTIONS(1360), - [anon_sym_LT] = ACTIONS(1365), - [anon_sym_EQ] = ACTIONS(1360), - [anon_sym_GT] = ACTIONS(1360), - [anon_sym_QMARK] = ACTIONS(1360), - [anon_sym_AT] = ACTIONS(1360), - [anon_sym_LBRACK] = ACTIONS(1360), - [anon_sym_BSLASH] = ACTIONS(1365), - [anon_sym_RBRACK] = ACTIONS(1360), - [anon_sym_CARET] = ACTIONS(1360), - [anon_sym__] = ACTIONS(1360), - [anon_sym_BQUOTE] = ACTIONS(1360), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_PIPE] = ACTIONS(1360), - [anon_sym_RBRACE] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1360), - [aux_sym__html_block_1_token1] = ACTIONS(1360), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1365), - [anon_sym_LT_QMARK] = ACTIONS(1365), - [aux_sym__html_block_4_token1] = ACTIONS(1365), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1360), - [aux_sym__html_block_6_token1] = ACTIONS(1365), - [aux_sym__html_block_6_token2] = ACTIONS(1360), - [sym__open_tag_html_block] = ACTIONS(1360), - [sym__open_tag_html_block_newline] = ACTIONS(1360), - [sym__closing_tag_html_block] = ACTIONS(1360), - [sym__closing_tag_html_block_newline] = ACTIONS(1360), - [sym_backslash_escape] = ACTIONS(1360), - [sym_entity_reference] = ACTIONS(1360), - [sym_numeric_character_reference] = ACTIONS(1360), - [sym_uri_autolink] = ACTIONS(1360), - [sym_email_autolink] = ACTIONS(1360), - [sym__whitespace_ge_2] = ACTIONS(1373), - [aux_sym__whitespace_token1] = ACTIONS(1376), - [sym__word_no_digit] = ACTIONS(1360), - [sym__digits] = ACTIONS(1360), - [aux_sym__newline_token1] = ACTIONS(1360), - [sym__block_close] = ACTIONS(1360), - [sym__block_quote_start] = ACTIONS(1360), - [sym__indented_chunk_start] = ACTIONS(1360), - [sym_atx_h1_marker] = ACTIONS(1360), - [sym_atx_h2_marker] = ACTIONS(1360), - [sym_atx_h3_marker] = ACTIONS(1360), - [sym_atx_h4_marker] = ACTIONS(1360), - [sym_atx_h5_marker] = ACTIONS(1360), - [sym_atx_h6_marker] = ACTIONS(1360), - [sym__thematic_break] = ACTIONS(1360), - [sym__list_marker_minus] = ACTIONS(1360), - [sym__list_marker_plus] = ACTIONS(1360), - [sym__list_marker_star] = ACTIONS(1360), - [sym__list_marker_parenthesis] = ACTIONS(1360), - [sym__list_marker_dot] = ACTIONS(1360), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1360), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1360), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1360), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1360), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1360), - [sym__fenced_code_block_start_backtick] = ACTIONS(1360), - [sym__fenced_code_block_start_tilde] = ACTIONS(1360), - [sym__blank_line_start] = ACTIONS(1360), - [sym__no_indented_chunk] = ACTIONS(1379), - [sym__code_span_start] = ACTIONS(1360), - [sym__emphasis_open_star] = ACTIONS(1360), - [sym__emphasis_open_underscore] = ACTIONS(1360), + [295] = { + [sym_list_marker_plus] = STATE(39), + [sym__list_item_plus] = STATE(295), + [aux_sym__list_plus_repeat1] = STATE(295), + [ts_builtin_sym_end] = ACTIONS(1390), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_DQUOTE] = ACTIONS(1390), + [anon_sym_POUND] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1390), + [anon_sym_PERCENT] = ACTIONS(1390), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_SQUOTE] = ACTIONS(1390), + [anon_sym_LPAREN] = ACTIONS(1390), + [anon_sym_RPAREN] = ACTIONS(1390), + [anon_sym_STAR] = ACTIONS(1390), + [anon_sym_PLUS] = ACTIONS(1390), + [anon_sym_COMMA] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_DOT] = ACTIONS(1390), + [anon_sym_SLASH] = ACTIONS(1390), + [anon_sym_COLON] = ACTIONS(1390), + [anon_sym_SEMI] = ACTIONS(1390), + [anon_sym_LT] = ACTIONS(1392), + [anon_sym_EQ] = ACTIONS(1390), + [anon_sym_GT] = ACTIONS(1390), + [anon_sym_QMARK] = ACTIONS(1390), + [anon_sym_AT] = ACTIONS(1390), + [anon_sym_LBRACK] = ACTIONS(1390), + [anon_sym_BSLASH] = ACTIONS(1392), + [anon_sym_RBRACK] = ACTIONS(1390), + [anon_sym_CARET] = ACTIONS(1390), + [anon_sym__] = ACTIONS(1390), + [anon_sym_BQUOTE] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1390), + [anon_sym_PIPE] = ACTIONS(1390), + [anon_sym_RBRACE] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [aux_sym__html_block_1_token1] = ACTIONS(1390), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1392), + [anon_sym_LT_QMARK] = ACTIONS(1392), + [aux_sym__html_block_4_token1] = ACTIONS(1392), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1390), + [aux_sym__html_block_6_token1] = ACTIONS(1392), + [aux_sym__html_block_6_token2] = ACTIONS(1390), + [sym__open_tag_html_block] = ACTIONS(1390), + [sym__open_tag_html_block_newline] = ACTIONS(1390), + [sym__closing_tag_html_block] = ACTIONS(1390), + [sym__closing_tag_html_block_newline] = ACTIONS(1390), + [sym_backslash_escape] = ACTIONS(1390), + [sym_entity_reference] = ACTIONS(1390), + [sym_numeric_character_reference] = ACTIONS(1390), + [sym_uri_autolink] = ACTIONS(1390), + [sym_email_autolink] = ACTIONS(1390), + [sym__whitespace_ge_2] = ACTIONS(1390), + [aux_sym__whitespace_token1] = ACTIONS(1392), + [sym__word_no_digit] = ACTIONS(1390), + [sym__digits] = ACTIONS(1390), + [aux_sym__newline_token1] = ACTIONS(1390), + [sym__block_quote_start] = ACTIONS(1390), + [sym__indented_chunk_start] = ACTIONS(1390), + [sym_atx_h1_marker] = ACTIONS(1390), + [sym_atx_h2_marker] = ACTIONS(1390), + [sym_atx_h3_marker] = ACTIONS(1390), + [sym_atx_h4_marker] = ACTIONS(1390), + [sym_atx_h5_marker] = ACTIONS(1390), + [sym_atx_h6_marker] = ACTIONS(1390), + [sym__thematic_break] = ACTIONS(1390), + [sym__list_marker_minus] = ACTIONS(1390), + [sym__list_marker_plus] = ACTIONS(1394), + [sym__list_marker_star] = ACTIONS(1390), + [sym__list_marker_parenthesis] = ACTIONS(1390), + [sym__list_marker_dot] = ACTIONS(1390), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1390), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1394), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1390), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1390), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1390), + [sym__fenced_code_block_start_backtick] = ACTIONS(1390), + [sym__fenced_code_block_start_tilde] = ACTIONS(1390), + [sym__blank_line_start] = ACTIONS(1390), + [sym__code_span_start] = ACTIONS(1390), + [sym__emphasis_open_star] = ACTIONS(1390), + [sym__emphasis_open_underscore] = ACTIONS(1390), }, - [290] = { - [sym__soft_line_break] = STATE(899), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), - [sym__whitespace] = STATE(899), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(279), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), + [296] = { + [sym__soft_line_break] = STATE(825), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), + [sym__whitespace] = STATE(825), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(290), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -57462,9 +57973,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(7), [anon_sym_AT] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(971), [anon_sym_BSLASH] = ACTIONS(15), - [anon_sym_RBRACK] = ACTIONS(1306), + [anon_sym_RBRACK] = ACTIONS(1397), [anon_sym_CARET] = ACTIONS(7), [anon_sym__] = ACTIONS(7), [anon_sym_BQUOTE] = ACTIONS(7), @@ -57472,17 +57983,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), [anon_sym_TILDE] = ACTIONS(7), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(848), - [anon_sym_LT_QMARK] = ACTIONS(850), - [aux_sym__html_block_4_token1] = ACTIONS(852), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(854), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(973), + [anon_sym_LT_QMARK] = ACTIONS(975), + [aux_sym__html_block_4_token1] = ACTIONS(977), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(979), [sym_backslash_escape] = ACTIONS(35), [sym_entity_reference] = ACTIONS(35), [sym_numeric_character_reference] = ACTIONS(35), [sym_uri_autolink] = ACTIONS(35), [sym_email_autolink] = ACTIONS(35), - [sym__whitespace_ge_2] = ACTIONS(856), - [aux_sym__whitespace_token1] = ACTIONS(858), + [sym__whitespace_ge_2] = ACTIONS(981), + [aux_sym__whitespace_token1] = ACTIONS(983), [sym__word_no_digit] = ACTIONS(35), [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), @@ -57490,40 +58001,292 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, - [291] = { - [sym__soft_line_break] = STATE(899), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), - [sym__whitespace] = STATE(899), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(278), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), + [297] = { + [sym_list_marker_minus] = STATE(15), + [sym__list_item_minus] = STATE(303), + [aux_sym__list_minus_repeat1] = STATE(303), + [anon_sym_BANG] = ACTIONS(1263), + [anon_sym_DQUOTE] = ACTIONS(1263), + [anon_sym_POUND] = ACTIONS(1263), + [anon_sym_DOLLAR] = ACTIONS(1263), + [anon_sym_PERCENT] = ACTIONS(1263), + [anon_sym_AMP] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_RPAREN] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1263), + [anon_sym_COMMA] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_DOT] = ACTIONS(1263), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_COLON] = ACTIONS(1263), + [anon_sym_SEMI] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1265), + [anon_sym_EQ] = ACTIONS(1263), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_QMARK] = ACTIONS(1263), + [anon_sym_AT] = ACTIONS(1263), + [anon_sym_LBRACK] = ACTIONS(1263), + [anon_sym_BSLASH] = ACTIONS(1265), + [anon_sym_RBRACK] = ACTIONS(1263), + [anon_sym_CARET] = ACTIONS(1263), + [anon_sym__] = ACTIONS(1263), + [anon_sym_BQUOTE] = ACTIONS(1263), + [anon_sym_LBRACE] = ACTIONS(1263), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_RBRACE] = ACTIONS(1263), + [anon_sym_TILDE] = ACTIONS(1263), + [aux_sym__html_block_1_token1] = ACTIONS(1263), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1265), + [anon_sym_LT_QMARK] = ACTIONS(1265), + [aux_sym__html_block_4_token1] = ACTIONS(1265), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1263), + [aux_sym__html_block_6_token1] = ACTIONS(1265), + [aux_sym__html_block_6_token2] = ACTIONS(1263), + [sym__open_tag_html_block] = ACTIONS(1263), + [sym__open_tag_html_block_newline] = ACTIONS(1263), + [sym__closing_tag_html_block] = ACTIONS(1263), + [sym__closing_tag_html_block_newline] = ACTIONS(1263), + [sym_backslash_escape] = ACTIONS(1263), + [sym_entity_reference] = ACTIONS(1263), + [sym_numeric_character_reference] = ACTIONS(1263), + [sym_uri_autolink] = ACTIONS(1263), + [sym_email_autolink] = ACTIONS(1263), + [sym__whitespace_ge_2] = ACTIONS(1263), + [aux_sym__whitespace_token1] = ACTIONS(1265), + [sym__word_no_digit] = ACTIONS(1263), + [sym__digits] = ACTIONS(1263), + [aux_sym__newline_token1] = ACTIONS(1263), + [sym__block_close] = ACTIONS(1263), + [sym__block_quote_start] = ACTIONS(1263), + [sym__indented_chunk_start] = ACTIONS(1263), + [sym_atx_h1_marker] = ACTIONS(1263), + [sym_atx_h2_marker] = ACTIONS(1263), + [sym_atx_h3_marker] = ACTIONS(1263), + [sym_atx_h4_marker] = ACTIONS(1263), + [sym_atx_h5_marker] = ACTIONS(1263), + [sym_atx_h6_marker] = ACTIONS(1263), + [sym__thematic_break] = ACTIONS(1263), + [sym__list_marker_minus] = ACTIONS(53), + [sym__list_marker_plus] = ACTIONS(1263), + [sym__list_marker_star] = ACTIONS(1263), + [sym__list_marker_parenthesis] = ACTIONS(1263), + [sym__list_marker_dot] = ACTIONS(1263), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(53), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1263), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1263), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1263), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1263), + [sym__fenced_code_block_start_backtick] = ACTIONS(1263), + [sym__fenced_code_block_start_tilde] = ACTIONS(1263), + [sym__blank_line_start] = ACTIONS(1263), + [sym__code_span_start] = ACTIONS(1263), + [sym__emphasis_open_star] = ACTIONS(1263), + [sym__emphasis_open_underscore] = ACTIONS(1263), + }, + [298] = { + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_parenthesis] = STATE(298), + [aux_sym__list_parenthesis_repeat1] = STATE(298), + [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), + [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(1399), + [sym_numeric_character_reference] = ACTIONS(1399), + [sym_uri_autolink] = ACTIONS(1399), + [sym_email_autolink] = 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__thematic_break] = ACTIONS(1399), + [sym__list_marker_minus] = ACTIONS(1399), + [sym__list_marker_plus] = ACTIONS(1399), + [sym__list_marker_star] = ACTIONS(1399), + [sym__list_marker_parenthesis] = ACTIONS(1403), + [sym__list_marker_dot] = ACTIONS(1399), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1399), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1399), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1399), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1403), + [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), + }, + [299] = { + [sym_list_marker_dot] = STATE(2), + [sym__list_item_dot] = STATE(299), + [aux_sym__list_dot_repeat1] = STATE(299), + [anon_sym_BANG] = ACTIONS(1250), + [anon_sym_DQUOTE] = ACTIONS(1250), + [anon_sym_POUND] = ACTIONS(1250), + [anon_sym_DOLLAR] = ACTIONS(1250), + [anon_sym_PERCENT] = ACTIONS(1250), + [anon_sym_AMP] = ACTIONS(1252), + [anon_sym_SQUOTE] = ACTIONS(1250), + [anon_sym_LPAREN] = ACTIONS(1250), + [anon_sym_RPAREN] = ACTIONS(1250), + [anon_sym_STAR] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1250), + [anon_sym_COMMA] = ACTIONS(1250), + [anon_sym_DASH] = ACTIONS(1250), + [anon_sym_DOT] = ACTIONS(1250), + [anon_sym_SLASH] = ACTIONS(1250), + [anon_sym_COLON] = ACTIONS(1250), + [anon_sym_SEMI] = ACTIONS(1250), + [anon_sym_LT] = ACTIONS(1252), + [anon_sym_EQ] = ACTIONS(1250), + [anon_sym_GT] = ACTIONS(1250), + [anon_sym_QMARK] = ACTIONS(1250), + [anon_sym_AT] = ACTIONS(1250), + [anon_sym_LBRACK] = ACTIONS(1250), + [anon_sym_BSLASH] = ACTIONS(1252), + [anon_sym_RBRACK] = ACTIONS(1250), + [anon_sym_CARET] = ACTIONS(1250), + [anon_sym__] = ACTIONS(1250), + [anon_sym_BQUOTE] = ACTIONS(1250), + [anon_sym_LBRACE] = ACTIONS(1250), + [anon_sym_PIPE] = ACTIONS(1250), + [anon_sym_RBRACE] = ACTIONS(1250), + [anon_sym_TILDE] = ACTIONS(1250), + [aux_sym__html_block_1_token1] = ACTIONS(1250), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1252), + [anon_sym_LT_QMARK] = ACTIONS(1252), + [aux_sym__html_block_4_token1] = ACTIONS(1252), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1250), + [aux_sym__html_block_6_token1] = ACTIONS(1252), + [aux_sym__html_block_6_token2] = ACTIONS(1250), + [sym__open_tag_html_block] = ACTIONS(1250), + [sym__open_tag_html_block_newline] = ACTIONS(1250), + [sym__closing_tag_html_block] = ACTIONS(1250), + [sym__closing_tag_html_block_newline] = ACTIONS(1250), + [sym_backslash_escape] = ACTIONS(1250), + [sym_entity_reference] = ACTIONS(1250), + [sym_numeric_character_reference] = ACTIONS(1250), + [sym_uri_autolink] = ACTIONS(1250), + [sym_email_autolink] = ACTIONS(1250), + [sym__whitespace_ge_2] = ACTIONS(1250), + [aux_sym__whitespace_token1] = ACTIONS(1252), + [sym__word_no_digit] = ACTIONS(1250), + [sym__digits] = ACTIONS(1250), + [aux_sym__newline_token1] = ACTIONS(1250), + [sym__block_close] = ACTIONS(1250), + [sym__block_quote_start] = ACTIONS(1250), + [sym__indented_chunk_start] = ACTIONS(1250), + [sym_atx_h1_marker] = ACTIONS(1250), + [sym_atx_h2_marker] = ACTIONS(1250), + [sym_atx_h3_marker] = ACTIONS(1250), + [sym_atx_h4_marker] = ACTIONS(1250), + [sym_atx_h5_marker] = ACTIONS(1250), + [sym_atx_h6_marker] = ACTIONS(1250), + [sym__thematic_break] = ACTIONS(1250), + [sym__list_marker_minus] = ACTIONS(1250), + [sym__list_marker_plus] = ACTIONS(1250), + [sym__list_marker_star] = ACTIONS(1250), + [sym__list_marker_parenthesis] = ACTIONS(1250), + [sym__list_marker_dot] = ACTIONS(1254), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1250), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1250), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1250), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1250), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1254), + [sym__fenced_code_block_start_backtick] = ACTIONS(1250), + [sym__fenced_code_block_start_tilde] = ACTIONS(1250), + [sym__blank_line_start] = ACTIONS(1250), + [sym__code_span_start] = ACTIONS(1250), + [sym__emphasis_open_star] = ACTIONS(1250), + [sym__emphasis_open_underscore] = ACTIONS(1250), + }, + [300] = { + [sym__soft_line_break] = STATE(825), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), + [sym__whitespace] = STATE(825), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(290), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -57546,9 +58309,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(7), [anon_sym_AT] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(971), [anon_sym_BSLASH] = ACTIONS(15), - [anon_sym_RBRACK] = ACTIONS(1306), + [anon_sym_RBRACK] = ACTIONS(1406), [anon_sym_CARET] = ACTIONS(7), [anon_sym__] = ACTIONS(7), [anon_sym_BQUOTE] = ACTIONS(7), @@ -57556,17 +58319,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), [anon_sym_TILDE] = ACTIONS(7), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(848), - [anon_sym_LT_QMARK] = ACTIONS(850), - [aux_sym__html_block_4_token1] = ACTIONS(852), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(854), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(973), + [anon_sym_LT_QMARK] = ACTIONS(975), + [aux_sym__html_block_4_token1] = ACTIONS(977), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(979), [sym_backslash_escape] = ACTIONS(35), [sym_entity_reference] = ACTIONS(35), [sym_numeric_character_reference] = ACTIONS(35), [sym_uri_autolink] = ACTIONS(35), [sym_email_autolink] = ACTIONS(35), - [sym__whitespace_ge_2] = ACTIONS(856), - [aux_sym__whitespace_token1] = ACTIONS(858), + [sym__whitespace_ge_2] = ACTIONS(981), + [aux_sym__whitespace_token1] = ACTIONS(983), [sym__word_no_digit] = ACTIONS(35), [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), @@ -57574,292 +58337,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, - [292] = { - [sym_link_title] = STATE(2311), - [sym__whitespace] = STATE(2078), - [anon_sym_BANG] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(1260), - [anon_sym_POUND] = ACTIONS(1258), - [anon_sym_DOLLAR] = ACTIONS(1258), - [anon_sym_PERCENT] = ACTIONS(1258), - [anon_sym_AMP] = ACTIONS(1263), - [anon_sym_SQUOTE] = ACTIONS(1265), - [anon_sym_LPAREN] = ACTIONS(1268), - [anon_sym_RPAREN] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1258), - [anon_sym_PLUS] = ACTIONS(1258), - [anon_sym_COMMA] = ACTIONS(1258), - [anon_sym_DASH] = ACTIONS(1258), - [anon_sym_DOT] = ACTIONS(1258), - [anon_sym_SLASH] = ACTIONS(1258), - [anon_sym_COLON] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(1258), - [anon_sym_LT] = ACTIONS(1263), - [anon_sym_EQ] = ACTIONS(1258), - [anon_sym_GT] = ACTIONS(1258), - [anon_sym_QMARK] = ACTIONS(1258), - [anon_sym_AT] = ACTIONS(1258), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_BSLASH] = ACTIONS(1263), - [anon_sym_RBRACK] = ACTIONS(1258), - [anon_sym_CARET] = ACTIONS(1258), - [anon_sym__] = ACTIONS(1258), - [anon_sym_BQUOTE] = ACTIONS(1258), - [anon_sym_LBRACE] = ACTIONS(1258), - [anon_sym_PIPE] = ACTIONS(1258), - [anon_sym_RBRACE] = ACTIONS(1258), - [anon_sym_TILDE] = ACTIONS(1258), - [aux_sym__html_block_1_token1] = ACTIONS(1258), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1263), - [anon_sym_LT_QMARK] = ACTIONS(1263), - [aux_sym__html_block_4_token1] = ACTIONS(1263), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1258), - [aux_sym__html_block_6_token1] = ACTIONS(1263), - [aux_sym__html_block_6_token2] = ACTIONS(1258), - [sym__open_tag_html_block] = ACTIONS(1258), - [sym__open_tag_html_block_newline] = ACTIONS(1258), - [sym__closing_tag_html_block] = ACTIONS(1258), - [sym__closing_tag_html_block_newline] = ACTIONS(1258), - [sym_backslash_escape] = ACTIONS(1258), - [sym_entity_reference] = ACTIONS(1258), - [sym_numeric_character_reference] = ACTIONS(1258), - [sym_uri_autolink] = ACTIONS(1258), - [sym_email_autolink] = ACTIONS(1258), - [sym__whitespace_ge_2] = ACTIONS(1271), - [aux_sym__whitespace_token1] = ACTIONS(1274), - [sym__word_no_digit] = ACTIONS(1258), - [sym__digits] = ACTIONS(1258), - [aux_sym__newline_token1] = ACTIONS(1258), - [sym__block_close] = ACTIONS(1258), - [sym__block_quote_start] = ACTIONS(1258), - [sym__indented_chunk_start] = ACTIONS(1258), - [sym_atx_h1_marker] = ACTIONS(1258), - [sym_atx_h2_marker] = ACTIONS(1258), - [sym_atx_h3_marker] = ACTIONS(1258), - [sym_atx_h4_marker] = ACTIONS(1258), - [sym_atx_h5_marker] = ACTIONS(1258), - [sym_atx_h6_marker] = ACTIONS(1258), - [sym__thematic_break] = ACTIONS(1258), - [sym__list_marker_minus] = ACTIONS(1258), - [sym__list_marker_plus] = ACTIONS(1258), - [sym__list_marker_star] = ACTIONS(1258), - [sym__list_marker_parenthesis] = ACTIONS(1258), - [sym__list_marker_dot] = ACTIONS(1258), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1258), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1258), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1258), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1258), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1258), - [sym__fenced_code_block_start_backtick] = ACTIONS(1258), - [sym__fenced_code_block_start_tilde] = ACTIONS(1258), - [sym__blank_line_start] = ACTIONS(1258), - [sym__no_indented_chunk] = ACTIONS(1381), - [sym__code_span_start] = ACTIONS(1258), - [sym__emphasis_open_star] = ACTIONS(1258), - [sym__emphasis_open_underscore] = ACTIONS(1258), - }, - [293] = { - [sym__indented_chunk] = STATE(276), - [sym__blank_line] = STATE(276), - [aux_sym_indented_code_block_repeat1] = STATE(276), - [ts_builtin_sym_end] = ACTIONS(1356), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_DQUOTE] = ACTIONS(1356), - [anon_sym_POUND] = ACTIONS(1356), - [anon_sym_DOLLAR] = ACTIONS(1356), - [anon_sym_PERCENT] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_SQUOTE] = ACTIONS(1356), - [anon_sym_LPAREN] = ACTIONS(1356), - [anon_sym_RPAREN] = ACTIONS(1356), - [anon_sym_STAR] = ACTIONS(1356), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_COMMA] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(1356), - [anon_sym_COLON] = ACTIONS(1356), - [anon_sym_SEMI] = ACTIONS(1356), - [anon_sym_LT] = ACTIONS(1358), - [anon_sym_EQ] = ACTIONS(1356), - [anon_sym_GT] = ACTIONS(1356), - [anon_sym_QMARK] = ACTIONS(1356), - [anon_sym_AT] = ACTIONS(1356), - [anon_sym_LBRACK] = ACTIONS(1356), - [anon_sym_BSLASH] = ACTIONS(1358), - [anon_sym_RBRACK] = ACTIONS(1356), - [anon_sym_CARET] = ACTIONS(1356), - [anon_sym__] = ACTIONS(1356), - [anon_sym_BQUOTE] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1356), - [anon_sym_PIPE] = ACTIONS(1356), - [anon_sym_RBRACE] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1356), - [aux_sym__html_block_1_token1] = ACTIONS(1356), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1358), - [anon_sym_LT_QMARK] = ACTIONS(1358), - [aux_sym__html_block_4_token1] = ACTIONS(1358), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1356), - [aux_sym__html_block_6_token1] = ACTIONS(1358), - [aux_sym__html_block_6_token2] = ACTIONS(1356), - [sym__open_tag_html_block] = ACTIONS(1356), - [sym__open_tag_html_block_newline] = ACTIONS(1356), - [sym__closing_tag_html_block] = ACTIONS(1356), - [sym__closing_tag_html_block_newline] = ACTIONS(1356), - [sym_backslash_escape] = ACTIONS(1356), - [sym_entity_reference] = ACTIONS(1356), - [sym_numeric_character_reference] = ACTIONS(1356), - [sym_uri_autolink] = ACTIONS(1356), - [sym_email_autolink] = ACTIONS(1356), - [sym__whitespace_ge_2] = ACTIONS(1356), - [aux_sym__whitespace_token1] = ACTIONS(1358), - [sym__word_no_digit] = ACTIONS(1356), - [sym__digits] = ACTIONS(1356), - [aux_sym__newline_token1] = ACTIONS(1356), - [sym__block_quote_start] = ACTIONS(1356), - [sym__indented_chunk_start] = ACTIONS(47), - [sym_atx_h1_marker] = ACTIONS(1356), - [sym_atx_h2_marker] = ACTIONS(1356), - [sym_atx_h3_marker] = ACTIONS(1356), - [sym_atx_h4_marker] = ACTIONS(1356), - [sym_atx_h5_marker] = ACTIONS(1356), - [sym_atx_h6_marker] = ACTIONS(1356), - [sym__thematic_break] = ACTIONS(1356), - [sym__list_marker_minus] = ACTIONS(1356), - [sym__list_marker_plus] = ACTIONS(1356), - [sym__list_marker_star] = ACTIONS(1356), - [sym__list_marker_parenthesis] = ACTIONS(1356), - [sym__list_marker_dot] = ACTIONS(1356), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1356), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1356), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1356), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1356), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1356), - [sym__fenced_code_block_start_backtick] = ACTIONS(1356), - [sym__fenced_code_block_start_tilde] = ACTIONS(1356), - [sym__blank_line_start] = ACTIONS(67), - [sym__code_span_start] = ACTIONS(1356), - [sym__emphasis_open_star] = ACTIONS(1356), - [sym__emphasis_open_underscore] = ACTIONS(1356), - }, - [294] = { - [sym__soft_line_break] = STATE(204), - [sym__link_text] = STATE(2135), - [sym__link_text_non_empty] = STATE(707), - [sym_shortcut_link] = STATE(204), - [sym_full_reference_link] = STATE(204), - [sym_collapsed_reference_link] = STATE(204), - [sym_inline_link] = STATE(204), - [sym_image] = STATE(204), - [sym__image_inline_link] = STATE(708), - [sym__image_shortcut_link] = STATE(708), - [sym__image_full_reference_link] = STATE(708), - [sym__image_collapsed_reference_link] = STATE(708), - [sym__image_description] = STATE(2137), - [sym__image_description_non_empty] = STATE(709), - [sym_html_tag] = STATE(204), - [sym__open_tag] = STATE(710), - [sym__closing_tag] = STATE(710), - [sym__html_comment] = STATE(710), - [sym__processing_instruction] = STATE(710), - [sym__declaration] = STATE(710), - [sym__cdata_section] = STATE(710), - [sym_hard_line_break] = STATE(204), - [sym__whitespace] = STATE(204), - [sym__word] = STATE(204), - [sym__newline] = STATE(2120), - [sym__inline_element_no_star] = STATE(204), - [aux_sym__inline_no_star] = STATE(204), - [sym__text_inline_no_star] = STATE(204), - [sym__emphasis_star] = STATE(704), - [sym__strong_emphasis_star] = STATE(204), - [sym__emphasis_underscore] = STATE(777), - [sym__strong_emphasis_underscore] = STATE(204), - [sym__code_span] = STATE(204), - [anon_sym_BANG] = ACTIONS(578), - [anon_sym_DQUOTE] = ACTIONS(580), - [anon_sym_POUND] = ACTIONS(580), - [anon_sym_DOLLAR] = ACTIONS(580), - [anon_sym_PERCENT] = ACTIONS(580), - [anon_sym_AMP] = ACTIONS(582), - [anon_sym_SQUOTE] = ACTIONS(580), - [anon_sym_LPAREN] = ACTIONS(580), - [anon_sym_RPAREN] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(580), - [anon_sym_COMMA] = ACTIONS(580), - [anon_sym_DASH] = ACTIONS(580), - [anon_sym_DOT] = ACTIONS(580), - [anon_sym_SLASH] = ACTIONS(580), - [anon_sym_COLON] = ACTIONS(580), - [anon_sym_SEMI] = ACTIONS(580), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_EQ] = ACTIONS(580), - [anon_sym_GT] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(580), - [anon_sym_AT] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_BSLASH] = ACTIONS(588), - [anon_sym_RBRACK] = ACTIONS(580), - [anon_sym_CARET] = ACTIONS(580), - [anon_sym__] = ACTIONS(580), - [anon_sym_BQUOTE] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(580), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_RBRACE] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(580), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(590), - [anon_sym_LT_QMARK] = ACTIONS(592), - [aux_sym__html_block_4_token1] = ACTIONS(594), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(596), - [sym_backslash_escape] = ACTIONS(1383), - [sym_entity_reference] = ACTIONS(1383), - [sym_numeric_character_reference] = ACTIONS(1383), - [sym_uri_autolink] = ACTIONS(1383), - [sym_email_autolink] = ACTIONS(1383), - [sym__whitespace_ge_2] = ACTIONS(600), - [aux_sym__whitespace_token1] = ACTIONS(602), - [sym__word_no_digit] = ACTIONS(1383), - [sym__digits] = ACTIONS(1383), - [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(604), - [sym__emphasis_open_star] = ACTIONS(606), - [sym__emphasis_open_underscore] = ACTIONS(608), - }, - [295] = { - [sym__soft_line_break] = STATE(899), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), - [sym__whitespace] = STATE(899), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(304), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), + [301] = { + [sym__soft_line_break] = STATE(825), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), + [sym__whitespace] = STATE(825), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(290), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -57882,9 +58393,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(7), [anon_sym_AT] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(971), [anon_sym_BSLASH] = ACTIONS(15), - [anon_sym_RBRACK] = ACTIONS(1385), + [anon_sym_RBRACK] = ACTIONS(1408), [anon_sym_CARET] = ACTIONS(7), [anon_sym__] = ACTIONS(7), [anon_sym_BQUOTE] = ACTIONS(7), @@ -57892,17 +58403,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), [anon_sym_TILDE] = ACTIONS(7), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(848), - [anon_sym_LT_QMARK] = ACTIONS(850), - [aux_sym__html_block_4_token1] = ACTIONS(852), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(854), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(973), + [anon_sym_LT_QMARK] = ACTIONS(975), + [aux_sym__html_block_4_token1] = ACTIONS(977), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(979), [sym_backslash_escape] = ACTIONS(35), [sym_entity_reference] = ACTIONS(35), [sym_numeric_character_reference] = ACTIONS(35), [sym_uri_autolink] = ACTIONS(35), [sym_email_autolink] = ACTIONS(35), - [sym__whitespace_ge_2] = ACTIONS(856), - [aux_sym__whitespace_token1] = ACTIONS(858), + [sym__whitespace_ge_2] = ACTIONS(981), + [aux_sym__whitespace_token1] = ACTIONS(983), [sym__word_no_digit] = ACTIONS(35), [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), @@ -57910,124 +58421,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, - [296] = { - [sym_link_title] = STATE(2151), - [sym__whitespace] = STATE(2093), - [ts_builtin_sym_end] = ACTIONS(1360), - [anon_sym_BANG] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_POUND] = ACTIONS(1360), - [anon_sym_DOLLAR] = ACTIONS(1360), - [anon_sym_PERCENT] = ACTIONS(1360), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_SQUOTE] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_RPAREN] = ACTIONS(1360), - [anon_sym_STAR] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_COMMA] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_DOT] = ACTIONS(1360), - [anon_sym_SLASH] = ACTIONS(1360), - [anon_sym_COLON] = ACTIONS(1360), - [anon_sym_SEMI] = ACTIONS(1360), - [anon_sym_LT] = ACTIONS(1365), - [anon_sym_EQ] = ACTIONS(1360), - [anon_sym_GT] = ACTIONS(1360), - [anon_sym_QMARK] = ACTIONS(1360), - [anon_sym_AT] = ACTIONS(1360), - [anon_sym_LBRACK] = ACTIONS(1360), - [anon_sym_BSLASH] = ACTIONS(1365), - [anon_sym_RBRACK] = ACTIONS(1360), - [anon_sym_CARET] = ACTIONS(1360), - [anon_sym__] = ACTIONS(1360), - [anon_sym_BQUOTE] = ACTIONS(1360), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_PIPE] = ACTIONS(1360), - [anon_sym_RBRACE] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1360), - [aux_sym__html_block_1_token1] = ACTIONS(1360), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1365), - [anon_sym_LT_QMARK] = ACTIONS(1365), - [aux_sym__html_block_4_token1] = ACTIONS(1365), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1360), - [aux_sym__html_block_6_token1] = ACTIONS(1365), - [aux_sym__html_block_6_token2] = ACTIONS(1360), - [sym__open_tag_html_block] = ACTIONS(1360), - [sym__open_tag_html_block_newline] = ACTIONS(1360), - [sym__closing_tag_html_block] = ACTIONS(1360), - [sym__closing_tag_html_block_newline] = ACTIONS(1360), - [sym_backslash_escape] = ACTIONS(1360), - [sym_entity_reference] = ACTIONS(1360), - [sym_numeric_character_reference] = ACTIONS(1360), - [sym_uri_autolink] = ACTIONS(1360), - [sym_email_autolink] = ACTIONS(1360), - [sym__whitespace_ge_2] = ACTIONS(1373), - [aux_sym__whitespace_token1] = ACTIONS(1376), - [sym__word_no_digit] = ACTIONS(1360), - [sym__digits] = ACTIONS(1360), - [aux_sym__newline_token1] = ACTIONS(1360), - [sym__block_quote_start] = ACTIONS(1360), - [sym__indented_chunk_start] = ACTIONS(1360), - [sym_atx_h1_marker] = ACTIONS(1360), - [sym_atx_h2_marker] = ACTIONS(1360), - [sym_atx_h3_marker] = ACTIONS(1360), - [sym_atx_h4_marker] = ACTIONS(1360), - [sym_atx_h5_marker] = ACTIONS(1360), - [sym_atx_h6_marker] = ACTIONS(1360), - [sym__thematic_break] = ACTIONS(1360), - [sym__list_marker_minus] = ACTIONS(1360), - [sym__list_marker_plus] = ACTIONS(1360), - [sym__list_marker_star] = ACTIONS(1360), - [sym__list_marker_parenthesis] = ACTIONS(1360), - [sym__list_marker_dot] = ACTIONS(1360), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1360), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1360), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1360), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1360), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1360), - [sym__fenced_code_block_start_backtick] = ACTIONS(1360), - [sym__fenced_code_block_start_tilde] = ACTIONS(1360), - [sym__blank_line_start] = ACTIONS(1360), - [sym__no_indented_chunk] = ACTIONS(1387), - [sym__code_span_start] = ACTIONS(1360), - [sym__emphasis_open_star] = ACTIONS(1360), - [sym__emphasis_open_underscore] = ACTIONS(1360), + [302] = { + [sym_list_marker_star] = STATE(23), + [sym__list_item_star] = STATE(302), + [aux_sym__list_star_repeat1] = STATE(302), + [anon_sym_BANG] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_POUND] = ACTIONS(1410), + [anon_sym_DOLLAR] = ACTIONS(1410), + [anon_sym_PERCENT] = ACTIONS(1410), + [anon_sym_AMP] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1410), + [anon_sym_LPAREN] = ACTIONS(1410), + [anon_sym_RPAREN] = ACTIONS(1410), + [anon_sym_STAR] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1410), + [anon_sym_COMMA] = ACTIONS(1410), + [anon_sym_DASH] = ACTIONS(1410), + [anon_sym_DOT] = ACTIONS(1410), + [anon_sym_SLASH] = ACTIONS(1410), + [anon_sym_COLON] = ACTIONS(1410), + [anon_sym_SEMI] = ACTIONS(1410), + [anon_sym_LT] = ACTIONS(1412), + [anon_sym_EQ] = ACTIONS(1410), + [anon_sym_GT] = ACTIONS(1410), + [anon_sym_QMARK] = ACTIONS(1410), + [anon_sym_AT] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1410), + [anon_sym_BSLASH] = ACTIONS(1412), + [anon_sym_RBRACK] = ACTIONS(1410), + [anon_sym_CARET] = ACTIONS(1410), + [anon_sym__] = ACTIONS(1410), + [anon_sym_BQUOTE] = ACTIONS(1410), + [anon_sym_LBRACE] = ACTIONS(1410), + [anon_sym_PIPE] = ACTIONS(1410), + [anon_sym_RBRACE] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1410), + [aux_sym__html_block_1_token1] = ACTIONS(1410), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1412), + [anon_sym_LT_QMARK] = ACTIONS(1412), + [aux_sym__html_block_4_token1] = ACTIONS(1412), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1410), + [aux_sym__html_block_6_token1] = ACTIONS(1412), + [aux_sym__html_block_6_token2] = ACTIONS(1410), + [sym__open_tag_html_block] = ACTIONS(1410), + [sym__open_tag_html_block_newline] = ACTIONS(1410), + [sym__closing_tag_html_block] = ACTIONS(1410), + [sym__closing_tag_html_block_newline] = ACTIONS(1410), + [sym_backslash_escape] = ACTIONS(1410), + [sym_entity_reference] = ACTIONS(1410), + [sym_numeric_character_reference] = ACTIONS(1410), + [sym_uri_autolink] = ACTIONS(1410), + [sym_email_autolink] = ACTIONS(1410), + [sym__whitespace_ge_2] = ACTIONS(1410), + [aux_sym__whitespace_token1] = ACTIONS(1412), + [sym__word_no_digit] = ACTIONS(1410), + [sym__digits] = ACTIONS(1410), + [aux_sym__newline_token1] = ACTIONS(1410), + [sym__block_close] = ACTIONS(1410), + [sym__block_quote_start] = ACTIONS(1410), + [sym__indented_chunk_start] = ACTIONS(1410), + [sym_atx_h1_marker] = ACTIONS(1410), + [sym_atx_h2_marker] = ACTIONS(1410), + [sym_atx_h3_marker] = ACTIONS(1410), + [sym_atx_h4_marker] = ACTIONS(1410), + [sym_atx_h5_marker] = ACTIONS(1410), + [sym_atx_h6_marker] = ACTIONS(1410), + [sym__thematic_break] = ACTIONS(1410), + [sym__list_marker_minus] = ACTIONS(1410), + [sym__list_marker_plus] = ACTIONS(1410), + [sym__list_marker_star] = ACTIONS(1414), + [sym__list_marker_parenthesis] = ACTIONS(1410), + [sym__list_marker_dot] = ACTIONS(1410), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1410), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1410), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1414), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1410), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1410), + [sym__fenced_code_block_start_backtick] = ACTIONS(1410), + [sym__fenced_code_block_start_tilde] = ACTIONS(1410), + [sym__blank_line_start] = ACTIONS(1410), + [sym__code_span_start] = ACTIONS(1410), + [sym__emphasis_open_star] = ACTIONS(1410), + [sym__emphasis_open_underscore] = ACTIONS(1410), }, - [297] = { - [sym__soft_line_break] = STATE(899), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), - [sym__whitespace] = STATE(899), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(304), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), + [303] = { + [sym_list_marker_minus] = STATE(15), + [sym__list_item_minus] = STATE(303), + [aux_sym__list_minus_repeat1] = STATE(303), + [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), + [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(1417), + [sym_numeric_character_reference] = ACTIONS(1417), + [sym_uri_autolink] = ACTIONS(1417), + [sym_email_autolink] = 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__thematic_break] = ACTIONS(1417), + [sym__list_marker_minus] = ACTIONS(1421), + [sym__list_marker_plus] = ACTIONS(1417), + [sym__list_marker_star] = ACTIONS(1417), + [sym__list_marker_parenthesis] = ACTIONS(1417), + [sym__list_marker_dot] = ACTIONS(1417), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1421), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1417), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1417), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1417), + [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), + }, + [304] = { + [sym__soft_line_break] = STATE(825), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), + [sym__whitespace] = STATE(825), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(330), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -58050,9 +58645,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(7), [anon_sym_AT] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(971), [anon_sym_BSLASH] = ACTIONS(15), - [anon_sym_RBRACK] = ACTIONS(1389), + [anon_sym_RBRACK] = ACTIONS(1248), [anon_sym_CARET] = ACTIONS(7), [anon_sym__] = ACTIONS(7), [anon_sym_BQUOTE] = ACTIONS(7), @@ -58060,17 +58655,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), [anon_sym_TILDE] = ACTIONS(7), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(848), - [anon_sym_LT_QMARK] = ACTIONS(850), - [aux_sym__html_block_4_token1] = ACTIONS(852), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(854), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(973), + [anon_sym_LT_QMARK] = ACTIONS(975), + [aux_sym__html_block_4_token1] = ACTIONS(977), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(979), [sym_backslash_escape] = ACTIONS(35), [sym_entity_reference] = ACTIONS(35), [sym_numeric_character_reference] = ACTIONS(35), [sym_uri_autolink] = ACTIONS(35), [sym_email_autolink] = ACTIONS(35), - [sym__whitespace_ge_2] = ACTIONS(856), - [aux_sym__whitespace_token1] = ACTIONS(858), + [sym__whitespace_ge_2] = ACTIONS(981), + [aux_sym__whitespace_token1] = ACTIONS(983), [sym__word_no_digit] = ACTIONS(35), [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), @@ -58078,40 +58673,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, - [298] = { - [sym__soft_line_break] = STATE(899), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), - [sym__whitespace] = STATE(899), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(295), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), + [305] = { + [sym_list_marker_plus] = STATE(25), + [sym__list_item_plus] = STATE(305), + [aux_sym__list_plus_repeat1] = STATE(305), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_DQUOTE] = ACTIONS(1390), + [anon_sym_POUND] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1390), + [anon_sym_PERCENT] = ACTIONS(1390), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_SQUOTE] = ACTIONS(1390), + [anon_sym_LPAREN] = ACTIONS(1390), + [anon_sym_RPAREN] = ACTIONS(1390), + [anon_sym_STAR] = ACTIONS(1390), + [anon_sym_PLUS] = ACTIONS(1390), + [anon_sym_COMMA] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_DOT] = ACTIONS(1390), + [anon_sym_SLASH] = ACTIONS(1390), + [anon_sym_COLON] = ACTIONS(1390), + [anon_sym_SEMI] = ACTIONS(1390), + [anon_sym_LT] = ACTIONS(1392), + [anon_sym_EQ] = ACTIONS(1390), + [anon_sym_GT] = ACTIONS(1390), + [anon_sym_QMARK] = ACTIONS(1390), + [anon_sym_AT] = ACTIONS(1390), + [anon_sym_LBRACK] = ACTIONS(1390), + [anon_sym_BSLASH] = ACTIONS(1392), + [anon_sym_RBRACK] = ACTIONS(1390), + [anon_sym_CARET] = ACTIONS(1390), + [anon_sym__] = ACTIONS(1390), + [anon_sym_BQUOTE] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1390), + [anon_sym_PIPE] = ACTIONS(1390), + [anon_sym_RBRACE] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [aux_sym__html_block_1_token1] = ACTIONS(1390), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1392), + [anon_sym_LT_QMARK] = ACTIONS(1392), + [aux_sym__html_block_4_token1] = ACTIONS(1392), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1390), + [aux_sym__html_block_6_token1] = ACTIONS(1392), + [aux_sym__html_block_6_token2] = ACTIONS(1390), + [sym__open_tag_html_block] = ACTIONS(1390), + [sym__open_tag_html_block_newline] = ACTIONS(1390), + [sym__closing_tag_html_block] = ACTIONS(1390), + [sym__closing_tag_html_block_newline] = ACTIONS(1390), + [sym_backslash_escape] = ACTIONS(1390), + [sym_entity_reference] = ACTIONS(1390), + [sym_numeric_character_reference] = ACTIONS(1390), + [sym_uri_autolink] = ACTIONS(1390), + [sym_email_autolink] = ACTIONS(1390), + [sym__whitespace_ge_2] = ACTIONS(1390), + [aux_sym__whitespace_token1] = ACTIONS(1392), + [sym__word_no_digit] = ACTIONS(1390), + [sym__digits] = ACTIONS(1390), + [aux_sym__newline_token1] = ACTIONS(1390), + [sym__block_close] = ACTIONS(1390), + [sym__block_quote_start] = ACTIONS(1390), + [sym__indented_chunk_start] = ACTIONS(1390), + [sym_atx_h1_marker] = ACTIONS(1390), + [sym_atx_h2_marker] = ACTIONS(1390), + [sym_atx_h3_marker] = ACTIONS(1390), + [sym_atx_h4_marker] = ACTIONS(1390), + [sym_atx_h5_marker] = ACTIONS(1390), + [sym_atx_h6_marker] = ACTIONS(1390), + [sym__thematic_break] = ACTIONS(1390), + [sym__list_marker_minus] = ACTIONS(1390), + [sym__list_marker_plus] = ACTIONS(1394), + [sym__list_marker_star] = ACTIONS(1390), + [sym__list_marker_parenthesis] = ACTIONS(1390), + [sym__list_marker_dot] = ACTIONS(1390), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1390), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1394), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1390), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1390), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1390), + [sym__fenced_code_block_start_backtick] = ACTIONS(1390), + [sym__fenced_code_block_start_tilde] = ACTIONS(1390), + [sym__blank_line_start] = ACTIONS(1390), + [sym__code_span_start] = ACTIONS(1390), + [sym__emphasis_open_star] = ACTIONS(1390), + [sym__emphasis_open_underscore] = ACTIONS(1390), + }, + [306] = { + [sym__soft_line_break] = STATE(825), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), + [sym__whitespace] = STATE(825), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(279), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -58134,9 +58813,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(7), [anon_sym_AT] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(971), [anon_sym_BSLASH] = ACTIONS(15), - [anon_sym_RBRACK] = ACTIONS(1306), + [anon_sym_RBRACK] = ACTIONS(1248), [anon_sym_CARET] = ACTIONS(7), [anon_sym__] = ACTIONS(7), [anon_sym_BQUOTE] = ACTIONS(7), @@ -58144,17 +58823,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), [anon_sym_TILDE] = ACTIONS(7), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(848), - [anon_sym_LT_QMARK] = ACTIONS(850), - [aux_sym__html_block_4_token1] = ACTIONS(852), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(854), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(973), + [anon_sym_LT_QMARK] = ACTIONS(975), + [aux_sym__html_block_4_token1] = ACTIONS(977), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(979), [sym_backslash_escape] = ACTIONS(35), [sym_entity_reference] = ACTIONS(35), [sym_numeric_character_reference] = ACTIONS(35), [sym_uri_autolink] = ACTIONS(35), [sym_email_autolink] = ACTIONS(35), - [sym__whitespace_ge_2] = ACTIONS(856), - [aux_sym__whitespace_token1] = ACTIONS(858), + [sym__whitespace_ge_2] = ACTIONS(981), + [aux_sym__whitespace_token1] = ACTIONS(983), [sym__word_no_digit] = ACTIONS(35), [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), @@ -58162,124 +58841,544 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, - [299] = { - [sym_list_marker_plus] = STATE(39), - [sym__list_item_plus] = STATE(306), - [aux_sym__list_plus_repeat1] = STATE(306), - [ts_builtin_sym_end] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1391), - [anon_sym_DQUOTE] = ACTIONS(1391), - [anon_sym_POUND] = ACTIONS(1391), - [anon_sym_DOLLAR] = ACTIONS(1391), - [anon_sym_PERCENT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1393), - [anon_sym_SQUOTE] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1391), - [anon_sym_RPAREN] = ACTIONS(1391), - [anon_sym_STAR] = ACTIONS(1391), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_COMMA] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_DOT] = ACTIONS(1391), - [anon_sym_SLASH] = ACTIONS(1391), - [anon_sym_COLON] = ACTIONS(1391), - [anon_sym_SEMI] = ACTIONS(1391), - [anon_sym_LT] = ACTIONS(1393), - [anon_sym_EQ] = ACTIONS(1391), - [anon_sym_GT] = ACTIONS(1391), - [anon_sym_QMARK] = ACTIONS(1391), - [anon_sym_AT] = ACTIONS(1391), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_BSLASH] = ACTIONS(1393), - [anon_sym_RBRACK] = ACTIONS(1391), - [anon_sym_CARET] = ACTIONS(1391), - [anon_sym__] = ACTIONS(1391), - [anon_sym_BQUOTE] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(1391), - [anon_sym_PIPE] = ACTIONS(1391), - [anon_sym_RBRACE] = ACTIONS(1391), - [anon_sym_TILDE] = ACTIONS(1391), - [aux_sym__html_block_1_token1] = ACTIONS(1391), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1393), - [anon_sym_LT_QMARK] = ACTIONS(1393), - [aux_sym__html_block_4_token1] = ACTIONS(1393), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1391), - [aux_sym__html_block_6_token1] = ACTIONS(1393), - [aux_sym__html_block_6_token2] = ACTIONS(1391), - [sym__open_tag_html_block] = ACTIONS(1391), - [sym__open_tag_html_block_newline] = ACTIONS(1391), - [sym__closing_tag_html_block] = ACTIONS(1391), - [sym__closing_tag_html_block_newline] = ACTIONS(1391), - [sym_backslash_escape] = ACTIONS(1391), - [sym_entity_reference] = ACTIONS(1391), - [sym_numeric_character_reference] = ACTIONS(1391), - [sym_uri_autolink] = ACTIONS(1391), - [sym_email_autolink] = ACTIONS(1391), - [sym__whitespace_ge_2] = ACTIONS(1391), - [aux_sym__whitespace_token1] = ACTIONS(1393), - [sym__word_no_digit] = ACTIONS(1391), - [sym__digits] = ACTIONS(1391), - [aux_sym__newline_token1] = ACTIONS(1391), - [sym__block_quote_start] = ACTIONS(1391), - [sym__indented_chunk_start] = ACTIONS(1391), - [sym_atx_h1_marker] = ACTIONS(1391), - [sym_atx_h2_marker] = ACTIONS(1391), - [sym_atx_h3_marker] = ACTIONS(1391), - [sym_atx_h4_marker] = ACTIONS(1391), - [sym_atx_h5_marker] = ACTIONS(1391), - [sym_atx_h6_marker] = ACTIONS(1391), - [sym__thematic_break] = ACTIONS(1391), - [sym__list_marker_minus] = ACTIONS(1391), - [sym__list_marker_plus] = ACTIONS(55), - [sym__list_marker_star] = ACTIONS(1391), - [sym__list_marker_parenthesis] = ACTIONS(1391), - [sym__list_marker_dot] = ACTIONS(1391), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1391), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(55), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1391), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1391), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1391), - [sym__fenced_code_block_start_backtick] = ACTIONS(1391), - [sym__fenced_code_block_start_tilde] = ACTIONS(1391), - [sym__blank_line_start] = ACTIONS(1391), - [sym__code_span_start] = ACTIONS(1391), - [sym__emphasis_open_star] = ACTIONS(1391), - [sym__emphasis_open_underscore] = ACTIONS(1391), + [307] = { + [sym__indented_chunk] = STATE(328), + [sym__blank_line] = STATE(328), + [aux_sym_indented_code_block_repeat1] = STATE(328), + [ts_builtin_sym_end] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(1296), + [anon_sym_DQUOTE] = ACTIONS(1296), + [anon_sym_POUND] = ACTIONS(1296), + [anon_sym_DOLLAR] = ACTIONS(1296), + [anon_sym_PERCENT] = ACTIONS(1296), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1296), + [anon_sym_LPAREN] = ACTIONS(1296), + [anon_sym_RPAREN] = ACTIONS(1296), + [anon_sym_STAR] = ACTIONS(1296), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_COMMA] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_DOT] = ACTIONS(1296), + [anon_sym_SLASH] = ACTIONS(1296), + [anon_sym_COLON] = ACTIONS(1296), + [anon_sym_SEMI] = ACTIONS(1296), + [anon_sym_LT] = ACTIONS(1298), + [anon_sym_EQ] = ACTIONS(1296), + [anon_sym_GT] = ACTIONS(1296), + [anon_sym_QMARK] = ACTIONS(1296), + [anon_sym_AT] = ACTIONS(1296), + [anon_sym_LBRACK] = ACTIONS(1296), + [anon_sym_BSLASH] = ACTIONS(1298), + [anon_sym_RBRACK] = ACTIONS(1296), + [anon_sym_CARET] = ACTIONS(1296), + [anon_sym__] = ACTIONS(1296), + [anon_sym_BQUOTE] = ACTIONS(1296), + [anon_sym_LBRACE] = ACTIONS(1296), + [anon_sym_PIPE] = ACTIONS(1296), + [anon_sym_RBRACE] = ACTIONS(1296), + [anon_sym_TILDE] = ACTIONS(1296), + [aux_sym__html_block_1_token1] = ACTIONS(1296), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1298), + [anon_sym_LT_QMARK] = ACTIONS(1298), + [aux_sym__html_block_4_token1] = ACTIONS(1298), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1296), + [aux_sym__html_block_6_token1] = ACTIONS(1298), + [aux_sym__html_block_6_token2] = ACTIONS(1296), + [sym__open_tag_html_block] = ACTIONS(1296), + [sym__open_tag_html_block_newline] = ACTIONS(1296), + [sym__closing_tag_html_block] = ACTIONS(1296), + [sym__closing_tag_html_block_newline] = ACTIONS(1296), + [sym_backslash_escape] = ACTIONS(1296), + [sym_entity_reference] = ACTIONS(1296), + [sym_numeric_character_reference] = ACTIONS(1296), + [sym_uri_autolink] = ACTIONS(1296), + [sym_email_autolink] = ACTIONS(1296), + [sym__whitespace_ge_2] = ACTIONS(1296), + [aux_sym__whitespace_token1] = ACTIONS(1298), + [sym__word_no_digit] = ACTIONS(1296), + [sym__digits] = ACTIONS(1296), + [aux_sym__newline_token1] = ACTIONS(1296), + [sym__block_quote_start] = ACTIONS(1296), + [sym__indented_chunk_start] = ACTIONS(47), + [sym_atx_h1_marker] = ACTIONS(1296), + [sym_atx_h2_marker] = ACTIONS(1296), + [sym_atx_h3_marker] = ACTIONS(1296), + [sym_atx_h4_marker] = ACTIONS(1296), + [sym_atx_h5_marker] = ACTIONS(1296), + [sym_atx_h6_marker] = ACTIONS(1296), + [sym__thematic_break] = ACTIONS(1296), + [sym__list_marker_minus] = ACTIONS(1296), + [sym__list_marker_plus] = ACTIONS(1296), + [sym__list_marker_star] = ACTIONS(1296), + [sym__list_marker_parenthesis] = ACTIONS(1296), + [sym__list_marker_dot] = ACTIONS(1296), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1296), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1296), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1296), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1296), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1296), + [sym__fenced_code_block_start_backtick] = ACTIONS(1296), + [sym__fenced_code_block_start_tilde] = ACTIONS(1296), + [sym__blank_line_start] = ACTIONS(67), + [sym__code_span_start] = ACTIONS(1296), + [sym__emphasis_open_star] = ACTIONS(1296), + [sym__emphasis_open_underscore] = ACTIONS(1296), }, - [300] = { - [sym__soft_line_break] = STATE(899), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), - [sym__whitespace] = STATE(899), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(297), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), + [308] = { + [sym_list_marker_dot] = STATE(42), + [sym__list_item_dot] = STATE(277), + [aux_sym__list_dot_repeat1] = STATE(277), + [ts_builtin_sym_end] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1424), + [anon_sym_DQUOTE] = ACTIONS(1424), + [anon_sym_POUND] = ACTIONS(1424), + [anon_sym_DOLLAR] = ACTIONS(1424), + [anon_sym_PERCENT] = ACTIONS(1424), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_LPAREN] = ACTIONS(1424), + [anon_sym_RPAREN] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(1424), + [anon_sym_COMMA] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1424), + [anon_sym_DOT] = ACTIONS(1424), + [anon_sym_SLASH] = ACTIONS(1424), + [anon_sym_COLON] = ACTIONS(1424), + [anon_sym_SEMI] = ACTIONS(1424), + [anon_sym_LT] = ACTIONS(1426), + [anon_sym_EQ] = ACTIONS(1424), + [anon_sym_GT] = ACTIONS(1424), + [anon_sym_QMARK] = ACTIONS(1424), + [anon_sym_AT] = ACTIONS(1424), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_BSLASH] = ACTIONS(1426), + [anon_sym_RBRACK] = ACTIONS(1424), + [anon_sym_CARET] = ACTIONS(1424), + [anon_sym__] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_PIPE] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(1424), + [anon_sym_TILDE] = ACTIONS(1424), + [aux_sym__html_block_1_token1] = ACTIONS(1424), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1426), + [anon_sym_LT_QMARK] = ACTIONS(1426), + [aux_sym__html_block_4_token1] = ACTIONS(1426), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1424), + [aux_sym__html_block_6_token1] = ACTIONS(1426), + [aux_sym__html_block_6_token2] = ACTIONS(1424), + [sym__open_tag_html_block] = ACTIONS(1424), + [sym__open_tag_html_block_newline] = ACTIONS(1424), + [sym__closing_tag_html_block] = ACTIONS(1424), + [sym__closing_tag_html_block_newline] = ACTIONS(1424), + [sym_backslash_escape] = ACTIONS(1424), + [sym_entity_reference] = ACTIONS(1424), + [sym_numeric_character_reference] = ACTIONS(1424), + [sym_uri_autolink] = ACTIONS(1424), + [sym_email_autolink] = ACTIONS(1424), + [sym__whitespace_ge_2] = ACTIONS(1424), + [aux_sym__whitespace_token1] = ACTIONS(1426), + [sym__word_no_digit] = ACTIONS(1424), + [sym__digits] = ACTIONS(1424), + [aux_sym__newline_token1] = ACTIONS(1424), + [sym__block_quote_start] = ACTIONS(1424), + [sym__indented_chunk_start] = ACTIONS(1424), + [sym_atx_h1_marker] = ACTIONS(1424), + [sym_atx_h2_marker] = ACTIONS(1424), + [sym_atx_h3_marker] = ACTIONS(1424), + [sym_atx_h4_marker] = ACTIONS(1424), + [sym_atx_h5_marker] = ACTIONS(1424), + [sym_atx_h6_marker] = ACTIONS(1424), + [sym__thematic_break] = ACTIONS(1424), + [sym__list_marker_minus] = ACTIONS(1424), + [sym__list_marker_plus] = ACTIONS(1424), + [sym__list_marker_star] = ACTIONS(1424), + [sym__list_marker_parenthesis] = ACTIONS(1424), + [sym__list_marker_dot] = ACTIONS(61), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1424), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1424), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1424), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1424), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), + [sym__fenced_code_block_start_backtick] = ACTIONS(1424), + [sym__fenced_code_block_start_tilde] = ACTIONS(1424), + [sym__blank_line_start] = ACTIONS(1424), + [sym__code_span_start] = ACTIONS(1424), + [sym__emphasis_open_star] = ACTIONS(1424), + [sym__emphasis_open_underscore] = ACTIONS(1424), + }, + [309] = { + [sym__soft_line_break] = STATE(107), + [sym__link_text] = STATE(2124), + [sym__link_text_non_empty] = STATE(712), + [sym_shortcut_link] = STATE(107), + [sym_full_reference_link] = STATE(107), + [sym_collapsed_reference_link] = STATE(107), + [sym_inline_link] = STATE(107), + [sym_image] = STATE(107), + [sym__image_inline_link] = STATE(713), + [sym__image_shortcut_link] = STATE(713), + [sym__image_full_reference_link] = STATE(713), + [sym__image_collapsed_reference_link] = STATE(713), + [sym__image_description] = STATE(2120), + [sym__image_description_non_empty] = STATE(714), + [sym_html_tag] = STATE(107), + [sym__open_tag] = STATE(715), + [sym__closing_tag] = STATE(715), + [sym__html_comment] = STATE(715), + [sym__processing_instruction] = STATE(715), + [sym__declaration] = STATE(715), + [sym__cdata_section] = STATE(715), + [sym_hard_line_break] = STATE(107), + [sym__whitespace] = STATE(107), + [sym__word] = STATE(107), + [sym__newline] = STATE(2144), + [sym__inline_element_no_star] = STATE(107), + [aux_sym__inline_no_star] = STATE(107), + [sym__text_inline_no_star] = STATE(107), + [sym__emphasis_star] = STATE(812), + [sym__strong_emphasis_star] = STATE(107), + [sym__emphasis_underscore] = STATE(811), + [sym__strong_emphasis_underscore] = STATE(107), + [sym__code_span] = STATE(107), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_DQUOTE] = ACTIONS(1431), + [anon_sym_POUND] = ACTIONS(1431), + [anon_sym_DOLLAR] = ACTIONS(1431), + [anon_sym_PERCENT] = ACTIONS(1431), + [anon_sym_AMP] = ACTIONS(1434), + [anon_sym_SQUOTE] = ACTIONS(1431), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_RPAREN] = ACTIONS(1431), + [anon_sym_STAR] = ACTIONS(1431), + [anon_sym_PLUS] = ACTIONS(1431), + [anon_sym_COMMA] = ACTIONS(1431), + [anon_sym_DASH] = ACTIONS(1431), + [anon_sym_DOT] = ACTIONS(1431), + [anon_sym_SLASH] = ACTIONS(1431), + [anon_sym_COLON] = ACTIONS(1431), + [anon_sym_SEMI] = ACTIONS(1431), + [anon_sym_LT] = ACTIONS(1437), + [anon_sym_EQ] = ACTIONS(1431), + [anon_sym_GT] = ACTIONS(1431), + [anon_sym_QMARK] = ACTIONS(1431), + [anon_sym_AT] = ACTIONS(1431), + [anon_sym_LBRACK] = ACTIONS(1440), + [anon_sym_BSLASH] = ACTIONS(1443), + [anon_sym_RBRACK] = ACTIONS(1431), + [anon_sym_CARET] = ACTIONS(1431), + [anon_sym__] = ACTIONS(1431), + [anon_sym_BQUOTE] = ACTIONS(1431), + [anon_sym_LBRACE] = ACTIONS(1431), + [anon_sym_PIPE] = ACTIONS(1431), + [anon_sym_RBRACE] = ACTIONS(1431), + [anon_sym_TILDE] = ACTIONS(1431), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1446), + [anon_sym_LT_QMARK] = ACTIONS(1449), + [aux_sym__html_block_4_token1] = ACTIONS(1452), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1455), + [sym_backslash_escape] = ACTIONS(1458), + [sym_entity_reference] = ACTIONS(1458), + [sym_numeric_character_reference] = ACTIONS(1458), + [sym_uri_autolink] = ACTIONS(1458), + [sym_email_autolink] = ACTIONS(1458), + [sym__whitespace_ge_2] = ACTIONS(1461), + [aux_sym__whitespace_token1] = ACTIONS(1464), + [sym__word_no_digit] = ACTIONS(1458), + [sym__digits] = ACTIONS(1458), + [aux_sym__newline_token1] = ACTIONS(1467), + [sym__code_span_start] = ACTIONS(1470), + [sym__emphasis_open_star] = ACTIONS(1473), + [sym__emphasis_open_underscore] = ACTIONS(1476), + }, + [310] = { + [sym__soft_line_break] = STATE(122), + [sym__link_text] = STATE(2126), + [sym__link_text_non_empty] = STATE(716), + [sym_shortcut_link] = STATE(122), + [sym_full_reference_link] = STATE(122), + [sym_collapsed_reference_link] = STATE(122), + [sym_inline_link] = STATE(122), + [sym_image] = STATE(122), + [sym__image_inline_link] = STATE(663), + [sym__image_shortcut_link] = STATE(663), + [sym__image_full_reference_link] = STATE(663), + [sym__image_collapsed_reference_link] = STATE(663), + [sym__image_description] = STATE(2134), + [sym__image_description_non_empty] = STATE(705), + [sym_html_tag] = STATE(122), + [sym__open_tag] = STATE(702), + [sym__closing_tag] = STATE(702), + [sym__html_comment] = STATE(702), + [sym__processing_instruction] = STATE(702), + [sym__declaration] = STATE(702), + [sym__cdata_section] = STATE(702), + [sym_hard_line_break] = STATE(122), + [sym__whitespace] = STATE(122), + [sym__word] = STATE(122), + [sym__newline] = STATE(2143), + [sym__inline_element_no_underscore] = STATE(122), + [aux_sym__inline_no_underscore] = STATE(122), + [sym__text_inline_no_underscore] = STATE(122), + [sym__emphasis_star] = STATE(800), + [sym__strong_emphasis_star] = STATE(122), + [sym__emphasis_underscore] = STATE(799), + [sym__strong_emphasis_underscore] = STATE(122), + [sym__code_span] = STATE(122), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_DQUOTE] = ACTIONS(1482), + [anon_sym_POUND] = ACTIONS(1482), + [anon_sym_DOLLAR] = ACTIONS(1482), + [anon_sym_PERCENT] = ACTIONS(1482), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_SQUOTE] = ACTIONS(1482), + [anon_sym_LPAREN] = ACTIONS(1482), + [anon_sym_RPAREN] = ACTIONS(1482), + [anon_sym_STAR] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_COMMA] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_DOT] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1482), + [anon_sym_COLON] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1482), + [anon_sym_LT] = ACTIONS(1488), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_GT] = ACTIONS(1482), + [anon_sym_QMARK] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1482), + [anon_sym_LBRACK] = ACTIONS(1491), + [anon_sym_BSLASH] = ACTIONS(1494), + [anon_sym_RBRACK] = ACTIONS(1482), + [anon_sym_CARET] = ACTIONS(1482), + [anon_sym__] = ACTIONS(1482), + [anon_sym_BQUOTE] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_PIPE] = ACTIONS(1482), + [anon_sym_RBRACE] = ACTIONS(1482), + [anon_sym_TILDE] = ACTIONS(1482), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1497), + [anon_sym_LT_QMARK] = ACTIONS(1500), + [aux_sym__html_block_4_token1] = ACTIONS(1503), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1506), + [sym_backslash_escape] = ACTIONS(1509), + [sym_entity_reference] = ACTIONS(1509), + [sym_numeric_character_reference] = ACTIONS(1509), + [sym_uri_autolink] = ACTIONS(1509), + [sym_email_autolink] = ACTIONS(1509), + [sym__whitespace_ge_2] = ACTIONS(1512), + [aux_sym__whitespace_token1] = ACTIONS(1515), + [sym__word_no_digit] = ACTIONS(1509), + [sym__digits] = ACTIONS(1509), + [aux_sym__newline_token1] = ACTIONS(1467), + [sym__code_span_start] = ACTIONS(1518), + [sym__emphasis_open_star] = ACTIONS(1521), + [sym__emphasis_open_underscore] = ACTIONS(1524), + }, + [311] = { + [sym_list_marker_minus] = STATE(40), + [sym__list_item_minus] = STATE(311), + [aux_sym__list_minus_repeat1] = STATE(311), + [ts_builtin_sym_end] = 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), + [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(1417), + [sym_numeric_character_reference] = ACTIONS(1417), + [sym_uri_autolink] = ACTIONS(1417), + [sym_email_autolink] = 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__thematic_break] = ACTIONS(1417), + [sym__list_marker_minus] = ACTIONS(1421), + [sym__list_marker_plus] = ACTIONS(1417), + [sym__list_marker_star] = ACTIONS(1417), + [sym__list_marker_parenthesis] = ACTIONS(1417), + [sym__list_marker_dot] = ACTIONS(1417), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1421), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1417), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1417), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1417), + [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), + }, + [312] = { + [sym_link_title] = STATE(2201), + [sym__whitespace] = STATE(2091), + [ts_builtin_sym_end] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1527), + [anon_sym_DQUOTE] = ACTIONS(1529), + [anon_sym_POUND] = ACTIONS(1527), + [anon_sym_DOLLAR] = ACTIONS(1527), + [anon_sym_PERCENT] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(1532), + [anon_sym_SQUOTE] = ACTIONS(1534), + [anon_sym_LPAREN] = ACTIONS(1537), + [anon_sym_RPAREN] = ACTIONS(1527), + [anon_sym_STAR] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1527), + [anon_sym_COMMA] = ACTIONS(1527), + [anon_sym_DASH] = ACTIONS(1527), + [anon_sym_DOT] = ACTIONS(1527), + [anon_sym_SLASH] = ACTIONS(1527), + [anon_sym_COLON] = ACTIONS(1527), + [anon_sym_SEMI] = ACTIONS(1527), + [anon_sym_LT] = ACTIONS(1532), + [anon_sym_EQ] = ACTIONS(1527), + [anon_sym_GT] = ACTIONS(1527), + [anon_sym_QMARK] = ACTIONS(1527), + [anon_sym_AT] = ACTIONS(1527), + [anon_sym_LBRACK] = ACTIONS(1527), + [anon_sym_BSLASH] = ACTIONS(1532), + [anon_sym_RBRACK] = ACTIONS(1527), + [anon_sym_CARET] = ACTIONS(1527), + [anon_sym__] = ACTIONS(1527), + [anon_sym_BQUOTE] = ACTIONS(1527), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_PIPE] = ACTIONS(1527), + [anon_sym_RBRACE] = ACTIONS(1527), + [anon_sym_TILDE] = ACTIONS(1527), + [aux_sym__html_block_1_token1] = ACTIONS(1527), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1532), + [anon_sym_LT_QMARK] = ACTIONS(1532), + [aux_sym__html_block_4_token1] = ACTIONS(1532), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1527), + [aux_sym__html_block_6_token1] = ACTIONS(1532), + [aux_sym__html_block_6_token2] = ACTIONS(1527), + [sym__open_tag_html_block] = ACTIONS(1527), + [sym__open_tag_html_block_newline] = ACTIONS(1527), + [sym__closing_tag_html_block] = ACTIONS(1527), + [sym__closing_tag_html_block_newline] = ACTIONS(1527), + [sym_backslash_escape] = ACTIONS(1527), + [sym_entity_reference] = ACTIONS(1527), + [sym_numeric_character_reference] = ACTIONS(1527), + [sym_uri_autolink] = ACTIONS(1527), + [sym_email_autolink] = ACTIONS(1527), + [sym__whitespace_ge_2] = ACTIONS(1540), + [aux_sym__whitespace_token1] = ACTIONS(1543), + [sym__word_no_digit] = ACTIONS(1527), + [sym__digits] = ACTIONS(1527), + [aux_sym__newline_token1] = ACTIONS(1527), + [sym__block_quote_start] = ACTIONS(1527), + [sym__indented_chunk_start] = ACTIONS(1527), + [sym_atx_h1_marker] = ACTIONS(1527), + [sym_atx_h2_marker] = ACTIONS(1527), + [sym_atx_h3_marker] = ACTIONS(1527), + [sym_atx_h4_marker] = ACTIONS(1527), + [sym_atx_h5_marker] = ACTIONS(1527), + [sym_atx_h6_marker] = ACTIONS(1527), + [sym__thematic_break] = ACTIONS(1527), + [sym__list_marker_minus] = ACTIONS(1527), + [sym__list_marker_plus] = ACTIONS(1527), + [sym__list_marker_star] = ACTIONS(1527), + [sym__list_marker_parenthesis] = ACTIONS(1527), + [sym__list_marker_dot] = ACTIONS(1527), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1527), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1527), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1527), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1527), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1527), + [sym__fenced_code_block_start_backtick] = ACTIONS(1527), + [sym__fenced_code_block_start_tilde] = ACTIONS(1527), + [sym__blank_line_start] = ACTIONS(1527), + [sym__no_indented_chunk] = ACTIONS(1546), + [sym__code_span_start] = ACTIONS(1527), + [sym__emphasis_open_star] = ACTIONS(1527), + [sym__emphasis_open_underscore] = ACTIONS(1527), + }, + [313] = { + [sym__soft_line_break] = STATE(825), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), + [sym__whitespace] = STATE(825), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(294), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -58302,9 +59401,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(7), [anon_sym_AT] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(971), [anon_sym_BSLASH] = ACTIONS(15), - [anon_sym_RBRACK] = ACTIONS(1306), + [anon_sym_RBRACK] = ACTIONS(1248), [anon_sym_CARET] = ACTIONS(7), [anon_sym__] = ACTIONS(7), [anon_sym_BQUOTE] = ACTIONS(7), @@ -58312,17 +59411,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), [anon_sym_TILDE] = ACTIONS(7), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(848), - [anon_sym_LT_QMARK] = ACTIONS(850), - [aux_sym__html_block_4_token1] = ACTIONS(852), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(854), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(973), + [anon_sym_LT_QMARK] = ACTIONS(975), + [aux_sym__html_block_4_token1] = ACTIONS(977), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(979), [sym_backslash_escape] = ACTIONS(35), [sym_entity_reference] = ACTIONS(35), [sym_numeric_character_reference] = ACTIONS(35), [sym_uri_autolink] = ACTIONS(35), [sym_email_autolink] = ACTIONS(35), - [sym__whitespace_ge_2] = ACTIONS(856), - [aux_sym__whitespace_token1] = ACTIONS(858), + [sym__whitespace_ge_2] = ACTIONS(981), + [aux_sym__whitespace_token1] = ACTIONS(983), [sym__word_no_digit] = ACTIONS(35), [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), @@ -58330,94 +59429,346 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, - [301] = { - [sym_list_marker_minus] = STATE(40), - [sym__list_item_minus] = STATE(308), - [aux_sym__list_minus_repeat1] = STATE(308), - [ts_builtin_sym_end] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_DQUOTE] = ACTIONS(1395), - [anon_sym_POUND] = ACTIONS(1395), - [anon_sym_DOLLAR] = ACTIONS(1395), - [anon_sym_PERCENT] = ACTIONS(1395), - [anon_sym_AMP] = ACTIONS(1397), - [anon_sym_SQUOTE] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1395), - [anon_sym_RPAREN] = ACTIONS(1395), - [anon_sym_STAR] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_COMMA] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_DOT] = ACTIONS(1395), - [anon_sym_SLASH] = ACTIONS(1395), - [anon_sym_COLON] = ACTIONS(1395), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_LT] = ACTIONS(1397), - [anon_sym_EQ] = ACTIONS(1395), - [anon_sym_GT] = ACTIONS(1395), - [anon_sym_QMARK] = ACTIONS(1395), - [anon_sym_AT] = ACTIONS(1395), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_BSLASH] = ACTIONS(1397), - [anon_sym_RBRACK] = ACTIONS(1395), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym__] = ACTIONS(1395), - [anon_sym_BQUOTE] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1395), - [anon_sym_PIPE] = ACTIONS(1395), - [anon_sym_RBRACE] = ACTIONS(1395), - [anon_sym_TILDE] = ACTIONS(1395), - [aux_sym__html_block_1_token1] = ACTIONS(1395), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1397), - [anon_sym_LT_QMARK] = ACTIONS(1397), - [aux_sym__html_block_4_token1] = ACTIONS(1397), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1395), - [aux_sym__html_block_6_token1] = ACTIONS(1397), - [aux_sym__html_block_6_token2] = ACTIONS(1395), - [sym__open_tag_html_block] = ACTIONS(1395), - [sym__open_tag_html_block_newline] = ACTIONS(1395), - [sym__closing_tag_html_block] = ACTIONS(1395), - [sym__closing_tag_html_block_newline] = ACTIONS(1395), - [sym_backslash_escape] = ACTIONS(1395), - [sym_entity_reference] = ACTIONS(1395), - [sym_numeric_character_reference] = ACTIONS(1395), - [sym_uri_autolink] = ACTIONS(1395), - [sym_email_autolink] = ACTIONS(1395), - [sym__whitespace_ge_2] = ACTIONS(1395), - [aux_sym__whitespace_token1] = ACTIONS(1397), - [sym__word_no_digit] = ACTIONS(1395), - [sym__digits] = ACTIONS(1395), - [aux_sym__newline_token1] = ACTIONS(1395), - [sym__block_quote_start] = ACTIONS(1395), - [sym__indented_chunk_start] = ACTIONS(1395), - [sym_atx_h1_marker] = ACTIONS(1395), - [sym_atx_h2_marker] = ACTIONS(1395), - [sym_atx_h3_marker] = ACTIONS(1395), - [sym_atx_h4_marker] = ACTIONS(1395), - [sym_atx_h5_marker] = ACTIONS(1395), - [sym_atx_h6_marker] = ACTIONS(1395), - [sym__thematic_break] = ACTIONS(1395), - [sym__list_marker_minus] = ACTIONS(53), - [sym__list_marker_plus] = ACTIONS(1395), - [sym__list_marker_star] = ACTIONS(1395), - [sym__list_marker_parenthesis] = ACTIONS(1395), - [sym__list_marker_dot] = ACTIONS(1395), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(53), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1395), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1395), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1395), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1395), - [sym__fenced_code_block_start_backtick] = ACTIONS(1395), - [sym__fenced_code_block_start_tilde] = ACTIONS(1395), - [sym__blank_line_start] = ACTIONS(1395), - [sym__code_span_start] = ACTIONS(1395), - [sym__emphasis_open_star] = ACTIONS(1395), - [sym__emphasis_open_underscore] = ACTIONS(1395), + [314] = { + [sym__indented_chunk] = STATE(293), + [sym__blank_line] = STATE(293), + [aux_sym_indented_code_block_repeat1] = STATE(293), + [anon_sym_BANG] = ACTIONS(1548), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_POUND] = ACTIONS(1548), + [anon_sym_DOLLAR] = ACTIONS(1548), + [anon_sym_PERCENT] = ACTIONS(1548), + [anon_sym_AMP] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1548), + [anon_sym_LPAREN] = ACTIONS(1548), + [anon_sym_RPAREN] = ACTIONS(1548), + [anon_sym_STAR] = ACTIONS(1548), + [anon_sym_PLUS] = ACTIONS(1548), + [anon_sym_COMMA] = ACTIONS(1548), + [anon_sym_DASH] = ACTIONS(1548), + [anon_sym_DOT] = ACTIONS(1548), + [anon_sym_SLASH] = ACTIONS(1548), + [anon_sym_COLON] = ACTIONS(1548), + [anon_sym_SEMI] = ACTIONS(1548), + [anon_sym_LT] = ACTIONS(1550), + [anon_sym_EQ] = ACTIONS(1548), + [anon_sym_GT] = ACTIONS(1548), + [anon_sym_QMARK] = ACTIONS(1548), + [anon_sym_AT] = ACTIONS(1548), + [anon_sym_LBRACK] = ACTIONS(1548), + [anon_sym_BSLASH] = ACTIONS(1550), + [anon_sym_RBRACK] = ACTIONS(1548), + [anon_sym_CARET] = ACTIONS(1548), + [anon_sym__] = ACTIONS(1548), + [anon_sym_BQUOTE] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(1548), + [anon_sym_PIPE] = ACTIONS(1548), + [anon_sym_RBRACE] = ACTIONS(1548), + [anon_sym_TILDE] = ACTIONS(1548), + [aux_sym__html_block_1_token1] = ACTIONS(1548), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1550), + [anon_sym_LT_QMARK] = ACTIONS(1550), + [aux_sym__html_block_4_token1] = ACTIONS(1550), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1548), + [aux_sym__html_block_6_token1] = ACTIONS(1550), + [aux_sym__html_block_6_token2] = ACTIONS(1548), + [sym__open_tag_html_block] = ACTIONS(1548), + [sym__open_tag_html_block_newline] = ACTIONS(1548), + [sym__closing_tag_html_block] = ACTIONS(1548), + [sym__closing_tag_html_block_newline] = ACTIONS(1548), + [sym_backslash_escape] = ACTIONS(1548), + [sym_entity_reference] = ACTIONS(1548), + [sym_numeric_character_reference] = ACTIONS(1548), + [sym_uri_autolink] = ACTIONS(1548), + [sym_email_autolink] = ACTIONS(1548), + [sym__whitespace_ge_2] = ACTIONS(1548), + [aux_sym__whitespace_token1] = ACTIONS(1550), + [sym__word_no_digit] = ACTIONS(1548), + [sym__digits] = ACTIONS(1548), + [aux_sym__newline_token1] = ACTIONS(1548), + [sym__block_close] = ACTIONS(1548), + [sym__block_quote_start] = ACTIONS(1548), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(1548), + [sym_atx_h2_marker] = ACTIONS(1548), + [sym_atx_h3_marker] = ACTIONS(1548), + [sym_atx_h4_marker] = ACTIONS(1548), + [sym_atx_h5_marker] = ACTIONS(1548), + [sym_atx_h6_marker] = ACTIONS(1548), + [sym__thematic_break] = ACTIONS(1548), + [sym__list_marker_minus] = ACTIONS(1548), + [sym__list_marker_plus] = ACTIONS(1548), + [sym__list_marker_star] = ACTIONS(1548), + [sym__list_marker_parenthesis] = ACTIONS(1548), + [sym__list_marker_dot] = ACTIONS(1548), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1548), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1548), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1548), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1548), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1548), + [sym__fenced_code_block_start_backtick] = ACTIONS(1548), + [sym__fenced_code_block_start_tilde] = ACTIONS(1548), + [sym__blank_line_start] = ACTIONS(107), + [sym__code_span_start] = ACTIONS(1548), + [sym__emphasis_open_star] = ACTIONS(1548), + [sym__emphasis_open_underscore] = ACTIONS(1548), }, - [302] = { + [315] = { + [sym_link_title] = STATE(2160), + [sym__whitespace] = STATE(2077), + [ts_builtin_sym_end] = ACTIONS(1552), + [anon_sym_BANG] = ACTIONS(1552), + [anon_sym_DQUOTE] = ACTIONS(1554), + [anon_sym_POUND] = ACTIONS(1552), + [anon_sym_DOLLAR] = ACTIONS(1552), + [anon_sym_PERCENT] = ACTIONS(1552), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_RPAREN] = ACTIONS(1552), + [anon_sym_STAR] = ACTIONS(1552), + [anon_sym_PLUS] = ACTIONS(1552), + [anon_sym_COMMA] = ACTIONS(1552), + [anon_sym_DASH] = ACTIONS(1552), + [anon_sym_DOT] = ACTIONS(1552), + [anon_sym_SLASH] = ACTIONS(1552), + [anon_sym_COLON] = ACTIONS(1552), + [anon_sym_SEMI] = ACTIONS(1552), + [anon_sym_LT] = ACTIONS(1557), + [anon_sym_EQ] = ACTIONS(1552), + [anon_sym_GT] = ACTIONS(1552), + [anon_sym_QMARK] = ACTIONS(1552), + [anon_sym_AT] = ACTIONS(1552), + [anon_sym_LBRACK] = ACTIONS(1552), + [anon_sym_BSLASH] = ACTIONS(1557), + [anon_sym_RBRACK] = ACTIONS(1552), + [anon_sym_CARET] = ACTIONS(1552), + [anon_sym__] = ACTIONS(1552), + [anon_sym_BQUOTE] = ACTIONS(1552), + [anon_sym_LBRACE] = ACTIONS(1552), + [anon_sym_PIPE] = ACTIONS(1552), + [anon_sym_RBRACE] = ACTIONS(1552), + [anon_sym_TILDE] = ACTIONS(1552), + [aux_sym__html_block_1_token1] = ACTIONS(1552), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1557), + [anon_sym_LT_QMARK] = ACTIONS(1557), + [aux_sym__html_block_4_token1] = ACTIONS(1557), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1552), + [aux_sym__html_block_6_token1] = ACTIONS(1557), + [aux_sym__html_block_6_token2] = ACTIONS(1552), + [sym__open_tag_html_block] = ACTIONS(1552), + [sym__open_tag_html_block_newline] = ACTIONS(1552), + [sym__closing_tag_html_block] = ACTIONS(1552), + [sym__closing_tag_html_block_newline] = ACTIONS(1552), + [sym_backslash_escape] = ACTIONS(1552), + [sym_entity_reference] = ACTIONS(1552), + [sym_numeric_character_reference] = ACTIONS(1552), + [sym_uri_autolink] = ACTIONS(1552), + [sym_email_autolink] = ACTIONS(1552), + [sym__whitespace_ge_2] = ACTIONS(1565), + [aux_sym__whitespace_token1] = ACTIONS(1568), + [sym__word_no_digit] = ACTIONS(1552), + [sym__digits] = ACTIONS(1552), + [aux_sym__newline_token1] = ACTIONS(1552), + [sym__block_quote_start] = ACTIONS(1552), + [sym__indented_chunk_start] = ACTIONS(1552), + [sym_atx_h1_marker] = ACTIONS(1552), + [sym_atx_h2_marker] = ACTIONS(1552), + [sym_atx_h3_marker] = ACTIONS(1552), + [sym_atx_h4_marker] = ACTIONS(1552), + [sym_atx_h5_marker] = ACTIONS(1552), + [sym_atx_h6_marker] = ACTIONS(1552), + [sym__thematic_break] = ACTIONS(1552), + [sym__list_marker_minus] = ACTIONS(1552), + [sym__list_marker_plus] = ACTIONS(1552), + [sym__list_marker_star] = ACTIONS(1552), + [sym__list_marker_parenthesis] = ACTIONS(1552), + [sym__list_marker_dot] = ACTIONS(1552), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1552), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1552), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1552), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1552), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1552), + [sym__fenced_code_block_start_backtick] = ACTIONS(1552), + [sym__fenced_code_block_start_tilde] = ACTIONS(1552), + [sym__blank_line_start] = ACTIONS(1552), + [sym__no_indented_chunk] = ACTIONS(1571), + [sym__code_span_start] = ACTIONS(1552), + [sym__emphasis_open_star] = ACTIONS(1552), + [sym__emphasis_open_underscore] = ACTIONS(1552), + }, + [316] = { + [sym_link_title] = STATE(2257), + [sym__whitespace] = STATE(2100), + [anon_sym_BANG] = ACTIONS(1552), + [anon_sym_DQUOTE] = ACTIONS(1554), + [anon_sym_POUND] = ACTIONS(1552), + [anon_sym_DOLLAR] = ACTIONS(1552), + [anon_sym_PERCENT] = ACTIONS(1552), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_RPAREN] = ACTIONS(1552), + [anon_sym_STAR] = ACTIONS(1552), + [anon_sym_PLUS] = ACTIONS(1552), + [anon_sym_COMMA] = ACTIONS(1552), + [anon_sym_DASH] = ACTIONS(1552), + [anon_sym_DOT] = ACTIONS(1552), + [anon_sym_SLASH] = ACTIONS(1552), + [anon_sym_COLON] = ACTIONS(1552), + [anon_sym_SEMI] = ACTIONS(1552), + [anon_sym_LT] = ACTIONS(1557), + [anon_sym_EQ] = ACTIONS(1552), + [anon_sym_GT] = ACTIONS(1552), + [anon_sym_QMARK] = ACTIONS(1552), + [anon_sym_AT] = ACTIONS(1552), + [anon_sym_LBRACK] = ACTIONS(1552), + [anon_sym_BSLASH] = ACTIONS(1557), + [anon_sym_RBRACK] = ACTIONS(1552), + [anon_sym_CARET] = ACTIONS(1552), + [anon_sym__] = ACTIONS(1552), + [anon_sym_BQUOTE] = ACTIONS(1552), + [anon_sym_LBRACE] = ACTIONS(1552), + [anon_sym_PIPE] = ACTIONS(1552), + [anon_sym_RBRACE] = ACTIONS(1552), + [anon_sym_TILDE] = ACTIONS(1552), + [aux_sym__html_block_1_token1] = ACTIONS(1552), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1557), + [anon_sym_LT_QMARK] = ACTIONS(1557), + [aux_sym__html_block_4_token1] = ACTIONS(1557), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1552), + [aux_sym__html_block_6_token1] = ACTIONS(1557), + [aux_sym__html_block_6_token2] = ACTIONS(1552), + [sym__open_tag_html_block] = ACTIONS(1552), + [sym__open_tag_html_block_newline] = ACTIONS(1552), + [sym__closing_tag_html_block] = ACTIONS(1552), + [sym__closing_tag_html_block_newline] = ACTIONS(1552), + [sym_backslash_escape] = ACTIONS(1552), + [sym_entity_reference] = ACTIONS(1552), + [sym_numeric_character_reference] = ACTIONS(1552), + [sym_uri_autolink] = ACTIONS(1552), + [sym_email_autolink] = ACTIONS(1552), + [sym__whitespace_ge_2] = ACTIONS(1565), + [aux_sym__whitespace_token1] = ACTIONS(1568), + [sym__word_no_digit] = ACTIONS(1552), + [sym__digits] = ACTIONS(1552), + [aux_sym__newline_token1] = ACTIONS(1552), + [sym__block_close] = ACTIONS(1552), + [sym__block_quote_start] = ACTIONS(1552), + [sym__indented_chunk_start] = ACTIONS(1552), + [sym_atx_h1_marker] = ACTIONS(1552), + [sym_atx_h2_marker] = ACTIONS(1552), + [sym_atx_h3_marker] = ACTIONS(1552), + [sym_atx_h4_marker] = ACTIONS(1552), + [sym_atx_h5_marker] = ACTIONS(1552), + [sym_atx_h6_marker] = ACTIONS(1552), + [sym__thematic_break] = ACTIONS(1552), + [sym__list_marker_minus] = ACTIONS(1552), + [sym__list_marker_plus] = ACTIONS(1552), + [sym__list_marker_star] = ACTIONS(1552), + [sym__list_marker_parenthesis] = ACTIONS(1552), + [sym__list_marker_dot] = ACTIONS(1552), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1552), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1552), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1552), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1552), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1552), + [sym__fenced_code_block_start_backtick] = ACTIONS(1552), + [sym__fenced_code_block_start_tilde] = ACTIONS(1552), + [sym__blank_line_start] = ACTIONS(1552), + [sym__no_indented_chunk] = ACTIONS(1573), + [sym__code_span_start] = ACTIONS(1552), + [sym__emphasis_open_star] = ACTIONS(1552), + [sym__emphasis_open_underscore] = ACTIONS(1552), + }, + [317] = { [sym_list_marker_star] = STATE(41), - [sym__list_item_star] = STATE(311), - [aux_sym__list_star_repeat1] = STATE(311), + [sym__list_item_star] = STATE(317), + [aux_sym__list_star_repeat1] = STATE(317), + [ts_builtin_sym_end] = ACTIONS(1410), + [anon_sym_BANG] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1410), + [anon_sym_POUND] = ACTIONS(1410), + [anon_sym_DOLLAR] = ACTIONS(1410), + [anon_sym_PERCENT] = ACTIONS(1410), + [anon_sym_AMP] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1410), + [anon_sym_LPAREN] = ACTIONS(1410), + [anon_sym_RPAREN] = ACTIONS(1410), + [anon_sym_STAR] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1410), + [anon_sym_COMMA] = ACTIONS(1410), + [anon_sym_DASH] = ACTIONS(1410), + [anon_sym_DOT] = ACTIONS(1410), + [anon_sym_SLASH] = ACTIONS(1410), + [anon_sym_COLON] = ACTIONS(1410), + [anon_sym_SEMI] = ACTIONS(1410), + [anon_sym_LT] = ACTIONS(1412), + [anon_sym_EQ] = ACTIONS(1410), + [anon_sym_GT] = ACTIONS(1410), + [anon_sym_QMARK] = ACTIONS(1410), + [anon_sym_AT] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1410), + [anon_sym_BSLASH] = ACTIONS(1412), + [anon_sym_RBRACK] = ACTIONS(1410), + [anon_sym_CARET] = ACTIONS(1410), + [anon_sym__] = ACTIONS(1410), + [anon_sym_BQUOTE] = ACTIONS(1410), + [anon_sym_LBRACE] = ACTIONS(1410), + [anon_sym_PIPE] = ACTIONS(1410), + [anon_sym_RBRACE] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1410), + [aux_sym__html_block_1_token1] = ACTIONS(1410), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1412), + [anon_sym_LT_QMARK] = ACTIONS(1412), + [aux_sym__html_block_4_token1] = ACTIONS(1412), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1410), + [aux_sym__html_block_6_token1] = ACTIONS(1412), + [aux_sym__html_block_6_token2] = ACTIONS(1410), + [sym__open_tag_html_block] = ACTIONS(1410), + [sym__open_tag_html_block_newline] = ACTIONS(1410), + [sym__closing_tag_html_block] = ACTIONS(1410), + [sym__closing_tag_html_block_newline] = ACTIONS(1410), + [sym_backslash_escape] = ACTIONS(1410), + [sym_entity_reference] = ACTIONS(1410), + [sym_numeric_character_reference] = ACTIONS(1410), + [sym_uri_autolink] = ACTIONS(1410), + [sym_email_autolink] = ACTIONS(1410), + [sym__whitespace_ge_2] = ACTIONS(1410), + [aux_sym__whitespace_token1] = ACTIONS(1412), + [sym__word_no_digit] = ACTIONS(1410), + [sym__digits] = ACTIONS(1410), + [aux_sym__newline_token1] = ACTIONS(1410), + [sym__block_quote_start] = ACTIONS(1410), + [sym__indented_chunk_start] = ACTIONS(1410), + [sym_atx_h1_marker] = ACTIONS(1410), + [sym_atx_h2_marker] = ACTIONS(1410), + [sym_atx_h3_marker] = ACTIONS(1410), + [sym_atx_h4_marker] = ACTIONS(1410), + [sym_atx_h5_marker] = ACTIONS(1410), + [sym_atx_h6_marker] = ACTIONS(1410), + [sym__thematic_break] = ACTIONS(1410), + [sym__list_marker_minus] = ACTIONS(1410), + [sym__list_marker_plus] = ACTIONS(1410), + [sym__list_marker_star] = ACTIONS(1414), + [sym__list_marker_parenthesis] = ACTIONS(1410), + [sym__list_marker_dot] = ACTIONS(1410), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1410), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1410), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1414), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1410), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1410), + [sym__fenced_code_block_start_backtick] = ACTIONS(1410), + [sym__fenced_code_block_start_tilde] = ACTIONS(1410), + [sym__blank_line_start] = ACTIONS(1410), + [sym__code_span_start] = ACTIONS(1410), + [sym__emphasis_open_star] = ACTIONS(1410), + [sym__emphasis_open_underscore] = ACTIONS(1410), + }, + [318] = { + [sym_list_marker_parenthesis] = STATE(43), + [sym__list_item_parenthesis] = STATE(318), + [aux_sym__list_parenthesis_repeat1] = STATE(318), [ts_builtin_sym_end] = ACTIONS(1399), [anon_sym_BANG] = ACTIONS(1399), [anon_sym_DQUOTE] = ACTIONS(1399), @@ -58483,13 +59834,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__thematic_break] = ACTIONS(1399), [sym__list_marker_minus] = ACTIONS(1399), [sym__list_marker_plus] = ACTIONS(1399), - [sym__list_marker_star] = ACTIONS(57), - [sym__list_marker_parenthesis] = ACTIONS(1399), + [sym__list_marker_star] = ACTIONS(1399), + [sym__list_marker_parenthesis] = ACTIONS(1403), [sym__list_marker_dot] = ACTIONS(1399), [sym__list_marker_minus_dont_interrupt] = ACTIONS(1399), [sym__list_marker_plus_dont_interrupt] = ACTIONS(1399), - [sym__list_marker_star_dont_interrupt] = ACTIONS(57), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1399), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1399), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1403), [sym__list_marker_dot_dont_interrupt] = ACTIONS(1399), [sym__fenced_code_block_start_backtick] = ACTIONS(1399), [sym__fenced_code_block_start_tilde] = ACTIONS(1399), @@ -58498,1048 +59849,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_star] = ACTIONS(1399), [sym__emphasis_open_underscore] = ACTIONS(1399), }, - [303] = { - [sym_list_marker_parenthesis] = STATE(43), - [sym__list_item_parenthesis] = STATE(320), - [aux_sym__list_parenthesis_repeat1] = STATE(320), - [ts_builtin_sym_end] = 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), - [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(1403), - [sym_numeric_character_reference] = ACTIONS(1403), - [sym_uri_autolink] = ACTIONS(1403), - [sym_email_autolink] = 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__thematic_break] = ACTIONS(1403), - [sym__list_marker_minus] = ACTIONS(1403), - [sym__list_marker_plus] = ACTIONS(1403), - [sym__list_marker_star] = ACTIONS(1403), - [sym__list_marker_parenthesis] = ACTIONS(59), - [sym__list_marker_dot] = ACTIONS(1403), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1403), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1403), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1403), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), - [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), - }, - [304] = { - [sym__soft_line_break] = STATE(899), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), - [sym__whitespace] = STATE(899), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(304), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), - [anon_sym_BANG] = ACTIONS(1407), - [anon_sym_DQUOTE] = ACTIONS(1410), - [anon_sym_POUND] = ACTIONS(1410), - [anon_sym_DOLLAR] = ACTIONS(1410), - [anon_sym_PERCENT] = ACTIONS(1410), - [anon_sym_AMP] = ACTIONS(1413), - [anon_sym_SQUOTE] = ACTIONS(1410), - [anon_sym_LPAREN] = ACTIONS(1410), - [anon_sym_RPAREN] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_COMMA] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_SLASH] = ACTIONS(1410), - [anon_sym_COLON] = ACTIONS(1410), - [anon_sym_SEMI] = ACTIONS(1410), - [anon_sym_LT] = ACTIONS(1416), - [anon_sym_EQ] = ACTIONS(1410), - [anon_sym_GT] = ACTIONS(1410), - [anon_sym_QMARK] = ACTIONS(1410), - [anon_sym_AT] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1419), - [anon_sym_BSLASH] = ACTIONS(1422), - [anon_sym_RBRACK] = ACTIONS(1410), - [anon_sym_CARET] = ACTIONS(1410), - [anon_sym__] = ACTIONS(1410), - [anon_sym_BQUOTE] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1410), - [anon_sym_PIPE] = ACTIONS(1410), - [anon_sym_RBRACE] = ACTIONS(1410), - [anon_sym_TILDE] = ACTIONS(1410), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1425), - [anon_sym_LT_QMARK] = ACTIONS(1428), - [aux_sym__html_block_4_token1] = ACTIONS(1431), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1434), - [sym_backslash_escape] = ACTIONS(1437), - [sym_entity_reference] = ACTIONS(1437), - [sym_numeric_character_reference] = ACTIONS(1437), - [sym_uri_autolink] = ACTIONS(1437), - [sym_email_autolink] = ACTIONS(1437), - [sym__whitespace_ge_2] = ACTIONS(1440), - [aux_sym__whitespace_token1] = ACTIONS(1443), - [sym__word_no_digit] = ACTIONS(1437), - [sym__digits] = ACTIONS(1437), - [aux_sym__newline_token1] = ACTIONS(1446), - [sym__code_span_start] = ACTIONS(1449), - [sym__emphasis_open_star] = ACTIONS(1452), - [sym__emphasis_open_underscore] = ACTIONS(1455), - }, - [305] = { - [sym_list_marker_plus] = STATE(16), - [sym__list_item_plus] = STATE(305), - [aux_sym__list_plus_repeat1] = STATE(305), - [anon_sym_BANG] = ACTIONS(1458), - [anon_sym_DQUOTE] = ACTIONS(1458), - [anon_sym_POUND] = ACTIONS(1458), - [anon_sym_DOLLAR] = ACTIONS(1458), - [anon_sym_PERCENT] = ACTIONS(1458), - [anon_sym_AMP] = ACTIONS(1460), - [anon_sym_SQUOTE] = ACTIONS(1458), - [anon_sym_LPAREN] = ACTIONS(1458), - [anon_sym_RPAREN] = ACTIONS(1458), - [anon_sym_STAR] = ACTIONS(1458), - [anon_sym_PLUS] = ACTIONS(1458), - [anon_sym_COMMA] = ACTIONS(1458), - [anon_sym_DASH] = ACTIONS(1458), - [anon_sym_DOT] = ACTIONS(1458), - [anon_sym_SLASH] = ACTIONS(1458), - [anon_sym_COLON] = ACTIONS(1458), - [anon_sym_SEMI] = ACTIONS(1458), - [anon_sym_LT] = ACTIONS(1460), - [anon_sym_EQ] = ACTIONS(1458), - [anon_sym_GT] = ACTIONS(1458), - [anon_sym_QMARK] = ACTIONS(1458), - [anon_sym_AT] = ACTIONS(1458), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_BSLASH] = ACTIONS(1460), - [anon_sym_RBRACK] = ACTIONS(1458), - [anon_sym_CARET] = ACTIONS(1458), - [anon_sym__] = ACTIONS(1458), - [anon_sym_BQUOTE] = ACTIONS(1458), - [anon_sym_LBRACE] = ACTIONS(1458), - [anon_sym_PIPE] = ACTIONS(1458), - [anon_sym_RBRACE] = ACTIONS(1458), - [anon_sym_TILDE] = ACTIONS(1458), - [aux_sym__html_block_1_token1] = ACTIONS(1458), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1460), - [anon_sym_LT_QMARK] = ACTIONS(1460), - [aux_sym__html_block_4_token1] = ACTIONS(1460), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1458), - [aux_sym__html_block_6_token1] = ACTIONS(1460), - [aux_sym__html_block_6_token2] = ACTIONS(1458), - [sym__open_tag_html_block] = ACTIONS(1458), - [sym__open_tag_html_block_newline] = ACTIONS(1458), - [sym__closing_tag_html_block] = ACTIONS(1458), - [sym__closing_tag_html_block_newline] = ACTIONS(1458), - [sym_backslash_escape] = ACTIONS(1458), - [sym_entity_reference] = ACTIONS(1458), - [sym_numeric_character_reference] = ACTIONS(1458), - [sym_uri_autolink] = ACTIONS(1458), - [sym_email_autolink] = ACTIONS(1458), - [sym__whitespace_ge_2] = ACTIONS(1458), - [aux_sym__whitespace_token1] = ACTIONS(1460), - [sym__word_no_digit] = ACTIONS(1458), - [sym__digits] = ACTIONS(1458), - [aux_sym__newline_token1] = ACTIONS(1458), - [sym__block_close] = ACTIONS(1458), - [sym__block_quote_start] = ACTIONS(1458), - [sym__indented_chunk_start] = ACTIONS(1458), - [sym_atx_h1_marker] = ACTIONS(1458), - [sym_atx_h2_marker] = ACTIONS(1458), - [sym_atx_h3_marker] = ACTIONS(1458), - [sym_atx_h4_marker] = ACTIONS(1458), - [sym_atx_h5_marker] = ACTIONS(1458), - [sym_atx_h6_marker] = ACTIONS(1458), - [sym__thematic_break] = ACTIONS(1458), - [sym__list_marker_minus] = ACTIONS(1458), - [sym__list_marker_plus] = ACTIONS(1462), - [sym__list_marker_star] = ACTIONS(1458), - [sym__list_marker_parenthesis] = ACTIONS(1458), - [sym__list_marker_dot] = ACTIONS(1458), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1458), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1462), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1458), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1458), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1458), - [sym__fenced_code_block_start_backtick] = ACTIONS(1458), - [sym__fenced_code_block_start_tilde] = ACTIONS(1458), - [sym__blank_line_start] = ACTIONS(1458), - [sym__code_span_start] = ACTIONS(1458), - [sym__emphasis_open_star] = ACTIONS(1458), - [sym__emphasis_open_underscore] = ACTIONS(1458), - }, - [306] = { - [sym_list_marker_plus] = STATE(39), - [sym__list_item_plus] = STATE(306), - [aux_sym__list_plus_repeat1] = STATE(306), - [ts_builtin_sym_end] = ACTIONS(1458), - [anon_sym_BANG] = ACTIONS(1458), - [anon_sym_DQUOTE] = ACTIONS(1458), - [anon_sym_POUND] = ACTIONS(1458), - [anon_sym_DOLLAR] = ACTIONS(1458), - [anon_sym_PERCENT] = ACTIONS(1458), - [anon_sym_AMP] = ACTIONS(1460), - [anon_sym_SQUOTE] = ACTIONS(1458), - [anon_sym_LPAREN] = ACTIONS(1458), - [anon_sym_RPAREN] = ACTIONS(1458), - [anon_sym_STAR] = ACTIONS(1458), - [anon_sym_PLUS] = ACTIONS(1458), - [anon_sym_COMMA] = ACTIONS(1458), - [anon_sym_DASH] = ACTIONS(1458), - [anon_sym_DOT] = ACTIONS(1458), - [anon_sym_SLASH] = ACTIONS(1458), - [anon_sym_COLON] = ACTIONS(1458), - [anon_sym_SEMI] = ACTIONS(1458), - [anon_sym_LT] = ACTIONS(1460), - [anon_sym_EQ] = ACTIONS(1458), - [anon_sym_GT] = ACTIONS(1458), - [anon_sym_QMARK] = ACTIONS(1458), - [anon_sym_AT] = ACTIONS(1458), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_BSLASH] = ACTIONS(1460), - [anon_sym_RBRACK] = ACTIONS(1458), - [anon_sym_CARET] = ACTIONS(1458), - [anon_sym__] = ACTIONS(1458), - [anon_sym_BQUOTE] = ACTIONS(1458), - [anon_sym_LBRACE] = ACTIONS(1458), - [anon_sym_PIPE] = ACTIONS(1458), - [anon_sym_RBRACE] = ACTIONS(1458), - [anon_sym_TILDE] = ACTIONS(1458), - [aux_sym__html_block_1_token1] = ACTIONS(1458), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1460), - [anon_sym_LT_QMARK] = ACTIONS(1460), - [aux_sym__html_block_4_token1] = ACTIONS(1460), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1458), - [aux_sym__html_block_6_token1] = ACTIONS(1460), - [aux_sym__html_block_6_token2] = ACTIONS(1458), - [sym__open_tag_html_block] = ACTIONS(1458), - [sym__open_tag_html_block_newline] = ACTIONS(1458), - [sym__closing_tag_html_block] = ACTIONS(1458), - [sym__closing_tag_html_block_newline] = ACTIONS(1458), - [sym_backslash_escape] = ACTIONS(1458), - [sym_entity_reference] = ACTIONS(1458), - [sym_numeric_character_reference] = ACTIONS(1458), - [sym_uri_autolink] = ACTIONS(1458), - [sym_email_autolink] = ACTIONS(1458), - [sym__whitespace_ge_2] = ACTIONS(1458), - [aux_sym__whitespace_token1] = ACTIONS(1460), - [sym__word_no_digit] = ACTIONS(1458), - [sym__digits] = ACTIONS(1458), - [aux_sym__newline_token1] = ACTIONS(1458), - [sym__block_quote_start] = ACTIONS(1458), - [sym__indented_chunk_start] = ACTIONS(1458), - [sym_atx_h1_marker] = ACTIONS(1458), - [sym_atx_h2_marker] = ACTIONS(1458), - [sym_atx_h3_marker] = ACTIONS(1458), - [sym_atx_h4_marker] = ACTIONS(1458), - [sym_atx_h5_marker] = ACTIONS(1458), - [sym_atx_h6_marker] = ACTIONS(1458), - [sym__thematic_break] = ACTIONS(1458), - [sym__list_marker_minus] = ACTIONS(1458), - [sym__list_marker_plus] = ACTIONS(1462), - [sym__list_marker_star] = ACTIONS(1458), - [sym__list_marker_parenthesis] = ACTIONS(1458), - [sym__list_marker_dot] = ACTIONS(1458), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1458), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1462), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1458), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1458), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1458), - [sym__fenced_code_block_start_backtick] = ACTIONS(1458), - [sym__fenced_code_block_start_tilde] = ACTIONS(1458), - [sym__blank_line_start] = ACTIONS(1458), - [sym__code_span_start] = ACTIONS(1458), - [sym__emphasis_open_star] = ACTIONS(1458), - [sym__emphasis_open_underscore] = ACTIONS(1458), - }, - [307] = { - [sym_list_marker_dot] = STATE(42), - [sym__list_item_dot] = STATE(312), - [aux_sym__list_dot_repeat1] = STATE(312), - [ts_builtin_sym_end] = ACTIONS(1465), - [anon_sym_BANG] = ACTIONS(1465), - [anon_sym_DQUOTE] = ACTIONS(1465), - [anon_sym_POUND] = ACTIONS(1465), - [anon_sym_DOLLAR] = ACTIONS(1465), - [anon_sym_PERCENT] = ACTIONS(1465), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_LPAREN] = ACTIONS(1465), - [anon_sym_RPAREN] = ACTIONS(1465), - [anon_sym_STAR] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_COMMA] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_DOT] = ACTIONS(1465), - [anon_sym_SLASH] = ACTIONS(1465), - [anon_sym_COLON] = ACTIONS(1465), - [anon_sym_SEMI] = ACTIONS(1465), - [anon_sym_LT] = ACTIONS(1467), - [anon_sym_EQ] = ACTIONS(1465), - [anon_sym_GT] = ACTIONS(1465), - [anon_sym_QMARK] = ACTIONS(1465), - [anon_sym_AT] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(1465), - [anon_sym_BSLASH] = ACTIONS(1467), - [anon_sym_RBRACK] = ACTIONS(1465), - [anon_sym_CARET] = ACTIONS(1465), - [anon_sym__] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1465), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_PIPE] = ACTIONS(1465), - [anon_sym_RBRACE] = ACTIONS(1465), - [anon_sym_TILDE] = ACTIONS(1465), - [aux_sym__html_block_1_token1] = ACTIONS(1465), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1467), - [anon_sym_LT_QMARK] = ACTIONS(1467), - [aux_sym__html_block_4_token1] = ACTIONS(1467), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1465), - [aux_sym__html_block_6_token1] = ACTIONS(1467), - [aux_sym__html_block_6_token2] = ACTIONS(1465), - [sym__open_tag_html_block] = ACTIONS(1465), - [sym__open_tag_html_block_newline] = ACTIONS(1465), - [sym__closing_tag_html_block] = ACTIONS(1465), - [sym__closing_tag_html_block_newline] = ACTIONS(1465), - [sym_backslash_escape] = ACTIONS(1465), - [sym_entity_reference] = ACTIONS(1465), - [sym_numeric_character_reference] = ACTIONS(1465), - [sym_uri_autolink] = ACTIONS(1465), - [sym_email_autolink] = ACTIONS(1465), - [sym__whitespace_ge_2] = ACTIONS(1465), - [aux_sym__whitespace_token1] = ACTIONS(1467), - [sym__word_no_digit] = ACTIONS(1465), - [sym__digits] = ACTIONS(1465), - [aux_sym__newline_token1] = ACTIONS(1465), - [sym__block_quote_start] = ACTIONS(1465), - [sym__indented_chunk_start] = ACTIONS(1465), - [sym_atx_h1_marker] = ACTIONS(1465), - [sym_atx_h2_marker] = ACTIONS(1465), - [sym_atx_h3_marker] = ACTIONS(1465), - [sym_atx_h4_marker] = ACTIONS(1465), - [sym_atx_h5_marker] = ACTIONS(1465), - [sym_atx_h6_marker] = ACTIONS(1465), - [sym__thematic_break] = ACTIONS(1465), - [sym__list_marker_minus] = ACTIONS(1465), - [sym__list_marker_plus] = ACTIONS(1465), - [sym__list_marker_star] = ACTIONS(1465), - [sym__list_marker_parenthesis] = ACTIONS(1465), - [sym__list_marker_dot] = ACTIONS(61), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1465), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1465), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1465), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1465), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(1465), - [sym__fenced_code_block_start_tilde] = ACTIONS(1465), - [sym__blank_line_start] = ACTIONS(1465), - [sym__code_span_start] = ACTIONS(1465), - [sym__emphasis_open_star] = ACTIONS(1465), - [sym__emphasis_open_underscore] = ACTIONS(1465), - }, - [308] = { - [sym_list_marker_minus] = STATE(40), - [sym__list_item_minus] = STATE(308), - [aux_sym__list_minus_repeat1] = STATE(308), - [ts_builtin_sym_end] = ACTIONS(1469), - [anon_sym_BANG] = ACTIONS(1469), - [anon_sym_DQUOTE] = ACTIONS(1469), - [anon_sym_POUND] = ACTIONS(1469), - [anon_sym_DOLLAR] = ACTIONS(1469), - [anon_sym_PERCENT] = ACTIONS(1469), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_SQUOTE] = ACTIONS(1469), - [anon_sym_LPAREN] = ACTIONS(1469), - [anon_sym_RPAREN] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_COMMA] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_DOT] = ACTIONS(1469), - [anon_sym_SLASH] = ACTIONS(1469), - [anon_sym_COLON] = ACTIONS(1469), - [anon_sym_SEMI] = ACTIONS(1469), - [anon_sym_LT] = ACTIONS(1471), - [anon_sym_EQ] = ACTIONS(1469), - [anon_sym_GT] = ACTIONS(1469), - [anon_sym_QMARK] = ACTIONS(1469), - [anon_sym_AT] = ACTIONS(1469), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_BSLASH] = ACTIONS(1471), - [anon_sym_RBRACK] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1469), - [anon_sym__] = ACTIONS(1469), - [anon_sym_BQUOTE] = ACTIONS(1469), - [anon_sym_LBRACE] = ACTIONS(1469), - [anon_sym_PIPE] = ACTIONS(1469), - [anon_sym_RBRACE] = ACTIONS(1469), - [anon_sym_TILDE] = ACTIONS(1469), - [aux_sym__html_block_1_token1] = ACTIONS(1469), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1471), - [anon_sym_LT_QMARK] = ACTIONS(1471), - [aux_sym__html_block_4_token1] = ACTIONS(1471), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1469), - [aux_sym__html_block_6_token1] = ACTIONS(1471), - [aux_sym__html_block_6_token2] = ACTIONS(1469), - [sym__open_tag_html_block] = ACTIONS(1469), - [sym__open_tag_html_block_newline] = ACTIONS(1469), - [sym__closing_tag_html_block] = ACTIONS(1469), - [sym__closing_tag_html_block_newline] = ACTIONS(1469), - [sym_backslash_escape] = ACTIONS(1469), - [sym_entity_reference] = ACTIONS(1469), - [sym_numeric_character_reference] = ACTIONS(1469), - [sym_uri_autolink] = ACTIONS(1469), - [sym_email_autolink] = ACTIONS(1469), - [sym__whitespace_ge_2] = ACTIONS(1469), - [aux_sym__whitespace_token1] = ACTIONS(1471), - [sym__word_no_digit] = ACTIONS(1469), - [sym__digits] = ACTIONS(1469), - [aux_sym__newline_token1] = ACTIONS(1469), - [sym__block_quote_start] = ACTIONS(1469), - [sym__indented_chunk_start] = ACTIONS(1469), - [sym_atx_h1_marker] = ACTIONS(1469), - [sym_atx_h2_marker] = ACTIONS(1469), - [sym_atx_h3_marker] = ACTIONS(1469), - [sym_atx_h4_marker] = ACTIONS(1469), - [sym_atx_h5_marker] = ACTIONS(1469), - [sym_atx_h6_marker] = ACTIONS(1469), - [sym__thematic_break] = ACTIONS(1469), - [sym__list_marker_minus] = ACTIONS(1473), - [sym__list_marker_plus] = ACTIONS(1469), - [sym__list_marker_star] = ACTIONS(1469), - [sym__list_marker_parenthesis] = ACTIONS(1469), - [sym__list_marker_dot] = ACTIONS(1469), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1473), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1469), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1469), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1469), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1469), - [sym__fenced_code_block_start_backtick] = ACTIONS(1469), - [sym__fenced_code_block_start_tilde] = ACTIONS(1469), - [sym__blank_line_start] = ACTIONS(1469), - [sym__code_span_start] = ACTIONS(1469), - [sym__emphasis_open_star] = ACTIONS(1469), - [sym__emphasis_open_underscore] = ACTIONS(1469), - }, - [309] = { - [sym_list_marker_minus] = STATE(15), - [sym__list_item_minus] = STATE(309), - [aux_sym__list_minus_repeat1] = STATE(309), - [anon_sym_BANG] = ACTIONS(1469), - [anon_sym_DQUOTE] = ACTIONS(1469), - [anon_sym_POUND] = ACTIONS(1469), - [anon_sym_DOLLAR] = ACTIONS(1469), - [anon_sym_PERCENT] = ACTIONS(1469), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_SQUOTE] = ACTIONS(1469), - [anon_sym_LPAREN] = ACTIONS(1469), - [anon_sym_RPAREN] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_COMMA] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_DOT] = ACTIONS(1469), - [anon_sym_SLASH] = ACTIONS(1469), - [anon_sym_COLON] = ACTIONS(1469), - [anon_sym_SEMI] = ACTIONS(1469), - [anon_sym_LT] = ACTIONS(1471), - [anon_sym_EQ] = ACTIONS(1469), - [anon_sym_GT] = ACTIONS(1469), - [anon_sym_QMARK] = ACTIONS(1469), - [anon_sym_AT] = ACTIONS(1469), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_BSLASH] = ACTIONS(1471), - [anon_sym_RBRACK] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1469), - [anon_sym__] = ACTIONS(1469), - [anon_sym_BQUOTE] = ACTIONS(1469), - [anon_sym_LBRACE] = ACTIONS(1469), - [anon_sym_PIPE] = ACTIONS(1469), - [anon_sym_RBRACE] = ACTIONS(1469), - [anon_sym_TILDE] = ACTIONS(1469), - [aux_sym__html_block_1_token1] = ACTIONS(1469), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1471), - [anon_sym_LT_QMARK] = ACTIONS(1471), - [aux_sym__html_block_4_token1] = ACTIONS(1471), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1469), - [aux_sym__html_block_6_token1] = ACTIONS(1471), - [aux_sym__html_block_6_token2] = ACTIONS(1469), - [sym__open_tag_html_block] = ACTIONS(1469), - [sym__open_tag_html_block_newline] = ACTIONS(1469), - [sym__closing_tag_html_block] = ACTIONS(1469), - [sym__closing_tag_html_block_newline] = ACTIONS(1469), - [sym_backslash_escape] = ACTIONS(1469), - [sym_entity_reference] = ACTIONS(1469), - [sym_numeric_character_reference] = ACTIONS(1469), - [sym_uri_autolink] = ACTIONS(1469), - [sym_email_autolink] = ACTIONS(1469), - [sym__whitespace_ge_2] = ACTIONS(1469), - [aux_sym__whitespace_token1] = ACTIONS(1471), - [sym__word_no_digit] = ACTIONS(1469), - [sym__digits] = ACTIONS(1469), - [aux_sym__newline_token1] = ACTIONS(1469), - [sym__block_close] = ACTIONS(1469), - [sym__block_quote_start] = ACTIONS(1469), - [sym__indented_chunk_start] = ACTIONS(1469), - [sym_atx_h1_marker] = ACTIONS(1469), - [sym_atx_h2_marker] = ACTIONS(1469), - [sym_atx_h3_marker] = ACTIONS(1469), - [sym_atx_h4_marker] = ACTIONS(1469), - [sym_atx_h5_marker] = ACTIONS(1469), - [sym_atx_h6_marker] = ACTIONS(1469), - [sym__thematic_break] = ACTIONS(1469), - [sym__list_marker_minus] = ACTIONS(1473), - [sym__list_marker_plus] = ACTIONS(1469), - [sym__list_marker_star] = ACTIONS(1469), - [sym__list_marker_parenthesis] = ACTIONS(1469), - [sym__list_marker_dot] = ACTIONS(1469), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1473), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1469), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1469), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1469), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1469), - [sym__fenced_code_block_start_backtick] = ACTIONS(1469), - [sym__fenced_code_block_start_tilde] = ACTIONS(1469), - [sym__blank_line_start] = ACTIONS(1469), - [sym__code_span_start] = ACTIONS(1469), - [sym__emphasis_open_star] = ACTIONS(1469), - [sym__emphasis_open_underscore] = ACTIONS(1469), - }, - [310] = { - [sym_list_marker_star] = STATE(14), - [sym__list_item_star] = STATE(310), - [aux_sym__list_star_repeat1] = STATE(310), - [anon_sym_BANG] = ACTIONS(1476), - [anon_sym_DQUOTE] = ACTIONS(1476), - [anon_sym_POUND] = ACTIONS(1476), - [anon_sym_DOLLAR] = ACTIONS(1476), - [anon_sym_PERCENT] = ACTIONS(1476), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_SQUOTE] = ACTIONS(1476), - [anon_sym_LPAREN] = ACTIONS(1476), - [anon_sym_RPAREN] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1476), - [anon_sym_PLUS] = ACTIONS(1476), - [anon_sym_COMMA] = ACTIONS(1476), - [anon_sym_DASH] = ACTIONS(1476), - [anon_sym_DOT] = ACTIONS(1476), - [anon_sym_SLASH] = ACTIONS(1476), - [anon_sym_COLON] = ACTIONS(1476), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_LT] = ACTIONS(1478), - [anon_sym_EQ] = ACTIONS(1476), - [anon_sym_GT] = ACTIONS(1476), - [anon_sym_QMARK] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1476), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_BSLASH] = ACTIONS(1478), - [anon_sym_RBRACK] = ACTIONS(1476), - [anon_sym_CARET] = ACTIONS(1476), - [anon_sym__] = ACTIONS(1476), - [anon_sym_BQUOTE] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1476), - [anon_sym_RBRACE] = ACTIONS(1476), - [anon_sym_TILDE] = ACTIONS(1476), - [aux_sym__html_block_1_token1] = ACTIONS(1476), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1478), - [anon_sym_LT_QMARK] = ACTIONS(1478), - [aux_sym__html_block_4_token1] = ACTIONS(1478), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1476), - [aux_sym__html_block_6_token1] = ACTIONS(1478), - [aux_sym__html_block_6_token2] = ACTIONS(1476), - [sym__open_tag_html_block] = ACTIONS(1476), - [sym__open_tag_html_block_newline] = ACTIONS(1476), - [sym__closing_tag_html_block] = ACTIONS(1476), - [sym__closing_tag_html_block_newline] = ACTIONS(1476), - [sym_backslash_escape] = ACTIONS(1476), - [sym_entity_reference] = ACTIONS(1476), - [sym_numeric_character_reference] = ACTIONS(1476), - [sym_uri_autolink] = ACTIONS(1476), - [sym_email_autolink] = ACTIONS(1476), - [sym__whitespace_ge_2] = ACTIONS(1476), - [aux_sym__whitespace_token1] = ACTIONS(1478), - [sym__word_no_digit] = ACTIONS(1476), - [sym__digits] = ACTIONS(1476), - [aux_sym__newline_token1] = ACTIONS(1476), - [sym__block_close] = ACTIONS(1476), - [sym__block_quote_start] = ACTIONS(1476), - [sym__indented_chunk_start] = ACTIONS(1476), - [sym_atx_h1_marker] = ACTIONS(1476), - [sym_atx_h2_marker] = ACTIONS(1476), - [sym_atx_h3_marker] = ACTIONS(1476), - [sym_atx_h4_marker] = ACTIONS(1476), - [sym_atx_h5_marker] = ACTIONS(1476), - [sym_atx_h6_marker] = ACTIONS(1476), - [sym__thematic_break] = ACTIONS(1476), - [sym__list_marker_minus] = ACTIONS(1476), - [sym__list_marker_plus] = ACTIONS(1476), - [sym__list_marker_star] = ACTIONS(1480), - [sym__list_marker_parenthesis] = ACTIONS(1476), - [sym__list_marker_dot] = ACTIONS(1476), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1476), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1476), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1480), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1476), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1476), - [sym__fenced_code_block_start_backtick] = ACTIONS(1476), - [sym__fenced_code_block_start_tilde] = ACTIONS(1476), - [sym__blank_line_start] = ACTIONS(1476), - [sym__code_span_start] = ACTIONS(1476), - [sym__emphasis_open_star] = ACTIONS(1476), - [sym__emphasis_open_underscore] = ACTIONS(1476), - }, - [311] = { - [sym_list_marker_star] = STATE(41), - [sym__list_item_star] = STATE(311), - [aux_sym__list_star_repeat1] = STATE(311), - [ts_builtin_sym_end] = ACTIONS(1476), - [anon_sym_BANG] = ACTIONS(1476), - [anon_sym_DQUOTE] = ACTIONS(1476), - [anon_sym_POUND] = ACTIONS(1476), - [anon_sym_DOLLAR] = ACTIONS(1476), - [anon_sym_PERCENT] = ACTIONS(1476), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_SQUOTE] = ACTIONS(1476), - [anon_sym_LPAREN] = ACTIONS(1476), - [anon_sym_RPAREN] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1476), - [anon_sym_PLUS] = ACTIONS(1476), - [anon_sym_COMMA] = ACTIONS(1476), - [anon_sym_DASH] = ACTIONS(1476), - [anon_sym_DOT] = ACTIONS(1476), - [anon_sym_SLASH] = ACTIONS(1476), - [anon_sym_COLON] = ACTIONS(1476), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_LT] = ACTIONS(1478), - [anon_sym_EQ] = ACTIONS(1476), - [anon_sym_GT] = ACTIONS(1476), - [anon_sym_QMARK] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1476), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_BSLASH] = ACTIONS(1478), - [anon_sym_RBRACK] = ACTIONS(1476), - [anon_sym_CARET] = ACTIONS(1476), - [anon_sym__] = ACTIONS(1476), - [anon_sym_BQUOTE] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1476), - [anon_sym_RBRACE] = ACTIONS(1476), - [anon_sym_TILDE] = ACTIONS(1476), - [aux_sym__html_block_1_token1] = ACTIONS(1476), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1478), - [anon_sym_LT_QMARK] = ACTIONS(1478), - [aux_sym__html_block_4_token1] = ACTIONS(1478), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1476), - [aux_sym__html_block_6_token1] = ACTIONS(1478), - [aux_sym__html_block_6_token2] = ACTIONS(1476), - [sym__open_tag_html_block] = ACTIONS(1476), - [sym__open_tag_html_block_newline] = ACTIONS(1476), - [sym__closing_tag_html_block] = ACTIONS(1476), - [sym__closing_tag_html_block_newline] = ACTIONS(1476), - [sym_backslash_escape] = ACTIONS(1476), - [sym_entity_reference] = ACTIONS(1476), - [sym_numeric_character_reference] = ACTIONS(1476), - [sym_uri_autolink] = ACTIONS(1476), - [sym_email_autolink] = ACTIONS(1476), - [sym__whitespace_ge_2] = ACTIONS(1476), - [aux_sym__whitespace_token1] = ACTIONS(1478), - [sym__word_no_digit] = ACTIONS(1476), - [sym__digits] = ACTIONS(1476), - [aux_sym__newline_token1] = ACTIONS(1476), - [sym__block_quote_start] = ACTIONS(1476), - [sym__indented_chunk_start] = ACTIONS(1476), - [sym_atx_h1_marker] = ACTIONS(1476), - [sym_atx_h2_marker] = ACTIONS(1476), - [sym_atx_h3_marker] = ACTIONS(1476), - [sym_atx_h4_marker] = ACTIONS(1476), - [sym_atx_h5_marker] = ACTIONS(1476), - [sym_atx_h6_marker] = ACTIONS(1476), - [sym__thematic_break] = ACTIONS(1476), - [sym__list_marker_minus] = ACTIONS(1476), - [sym__list_marker_plus] = ACTIONS(1476), - [sym__list_marker_star] = ACTIONS(1480), - [sym__list_marker_parenthesis] = ACTIONS(1476), - [sym__list_marker_dot] = ACTIONS(1476), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1476), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1476), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1480), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1476), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1476), - [sym__fenced_code_block_start_backtick] = ACTIONS(1476), - [sym__fenced_code_block_start_tilde] = ACTIONS(1476), - [sym__blank_line_start] = ACTIONS(1476), - [sym__code_span_start] = ACTIONS(1476), - [sym__emphasis_open_star] = ACTIONS(1476), - [sym__emphasis_open_underscore] = ACTIONS(1476), - }, - [312] = { - [sym_list_marker_dot] = STATE(42), - [sym__list_item_dot] = STATE(312), - [aux_sym__list_dot_repeat1] = STATE(312), - [ts_builtin_sym_end] = ACTIONS(1483), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_DQUOTE] = ACTIONS(1483), - [anon_sym_POUND] = ACTIONS(1483), - [anon_sym_DOLLAR] = ACTIONS(1483), - [anon_sym_PERCENT] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1485), - [anon_sym_SQUOTE] = ACTIONS(1483), - [anon_sym_LPAREN] = ACTIONS(1483), - [anon_sym_RPAREN] = ACTIONS(1483), - [anon_sym_STAR] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1483), - [anon_sym_COMMA] = ACTIONS(1483), - [anon_sym_DASH] = ACTIONS(1483), - [anon_sym_DOT] = ACTIONS(1483), - [anon_sym_SLASH] = ACTIONS(1483), - [anon_sym_COLON] = ACTIONS(1483), - [anon_sym_SEMI] = ACTIONS(1483), - [anon_sym_LT] = ACTIONS(1485), - [anon_sym_EQ] = ACTIONS(1483), - [anon_sym_GT] = ACTIONS(1483), - [anon_sym_QMARK] = ACTIONS(1483), - [anon_sym_AT] = ACTIONS(1483), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_BSLASH] = ACTIONS(1485), - [anon_sym_RBRACK] = ACTIONS(1483), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym__] = ACTIONS(1483), - [anon_sym_BQUOTE] = ACTIONS(1483), - [anon_sym_LBRACE] = ACTIONS(1483), - [anon_sym_PIPE] = ACTIONS(1483), - [anon_sym_RBRACE] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [aux_sym__html_block_1_token1] = ACTIONS(1483), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1485), - [anon_sym_LT_QMARK] = ACTIONS(1485), - [aux_sym__html_block_4_token1] = ACTIONS(1485), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1483), - [aux_sym__html_block_6_token1] = ACTIONS(1485), - [aux_sym__html_block_6_token2] = ACTIONS(1483), - [sym__open_tag_html_block] = ACTIONS(1483), - [sym__open_tag_html_block_newline] = ACTIONS(1483), - [sym__closing_tag_html_block] = ACTIONS(1483), - [sym__closing_tag_html_block_newline] = ACTIONS(1483), - [sym_backslash_escape] = ACTIONS(1483), - [sym_entity_reference] = ACTIONS(1483), - [sym_numeric_character_reference] = ACTIONS(1483), - [sym_uri_autolink] = ACTIONS(1483), - [sym_email_autolink] = ACTIONS(1483), - [sym__whitespace_ge_2] = ACTIONS(1483), - [aux_sym__whitespace_token1] = ACTIONS(1485), - [sym__word_no_digit] = ACTIONS(1483), - [sym__digits] = ACTIONS(1483), - [aux_sym__newline_token1] = ACTIONS(1483), - [sym__block_quote_start] = ACTIONS(1483), - [sym__indented_chunk_start] = ACTIONS(1483), - [sym_atx_h1_marker] = ACTIONS(1483), - [sym_atx_h2_marker] = ACTIONS(1483), - [sym_atx_h3_marker] = ACTIONS(1483), - [sym_atx_h4_marker] = ACTIONS(1483), - [sym_atx_h5_marker] = ACTIONS(1483), - [sym_atx_h6_marker] = ACTIONS(1483), - [sym__thematic_break] = ACTIONS(1483), - [sym__list_marker_minus] = ACTIONS(1483), - [sym__list_marker_plus] = ACTIONS(1483), - [sym__list_marker_star] = ACTIONS(1483), - [sym__list_marker_parenthesis] = ACTIONS(1483), - [sym__list_marker_dot] = ACTIONS(1487), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1483), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1483), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1483), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1483), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1487), - [sym__fenced_code_block_start_backtick] = ACTIONS(1483), - [sym__fenced_code_block_start_tilde] = ACTIONS(1483), - [sym__blank_line_start] = ACTIONS(1483), - [sym__code_span_start] = ACTIONS(1483), - [sym__emphasis_open_star] = ACTIONS(1483), - [sym__emphasis_open_underscore] = ACTIONS(1483), - }, - [313] = { - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_parenthesis] = STATE(329), - [aux_sym__list_parenthesis_repeat1] = STATE(329), - [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), - [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(1403), - [sym_numeric_character_reference] = ACTIONS(1403), - [sym_uri_autolink] = ACTIONS(1403), - [sym_email_autolink] = 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__thematic_break] = ACTIONS(1403), - [sym__list_marker_minus] = ACTIONS(1403), - [sym__list_marker_plus] = ACTIONS(1403), - [sym__list_marker_star] = ACTIONS(1403), - [sym__list_marker_parenthesis] = ACTIONS(59), - [sym__list_marker_dot] = ACTIONS(1403), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1403), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1403), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1403), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), - [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), - }, - [314] = { - [sym_link_title] = STATE(2150), - [sym__whitespace] = STATE(2083), - [ts_builtin_sym_end] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(1335), - [anon_sym_DQUOTE] = ACTIONS(1337), - [anon_sym_POUND] = ACTIONS(1335), - [anon_sym_DOLLAR] = ACTIONS(1335), - [anon_sym_PERCENT] = ACTIONS(1335), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_SQUOTE] = ACTIONS(1342), - [anon_sym_LPAREN] = ACTIONS(1345), - [anon_sym_RPAREN] = ACTIONS(1335), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_PLUS] = ACTIONS(1335), - [anon_sym_COMMA] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(1335), - [anon_sym_DOT] = ACTIONS(1335), - [anon_sym_SLASH] = ACTIONS(1335), - [anon_sym_COLON] = ACTIONS(1335), - [anon_sym_SEMI] = ACTIONS(1335), - [anon_sym_LT] = ACTIONS(1340), - [anon_sym_EQ] = ACTIONS(1335), - [anon_sym_GT] = ACTIONS(1335), - [anon_sym_QMARK] = ACTIONS(1335), - [anon_sym_AT] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(1335), - [anon_sym_BSLASH] = ACTIONS(1340), - [anon_sym_RBRACK] = ACTIONS(1335), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym__] = ACTIONS(1335), - [anon_sym_BQUOTE] = ACTIONS(1335), - [anon_sym_LBRACE] = ACTIONS(1335), - [anon_sym_PIPE] = ACTIONS(1335), - [anon_sym_RBRACE] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(1335), - [aux_sym__html_block_1_token1] = ACTIONS(1335), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1340), - [anon_sym_LT_QMARK] = ACTIONS(1340), - [aux_sym__html_block_4_token1] = ACTIONS(1340), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1335), - [aux_sym__html_block_6_token1] = ACTIONS(1340), - [aux_sym__html_block_6_token2] = ACTIONS(1335), - [sym__open_tag_html_block] = ACTIONS(1335), - [sym__open_tag_html_block_newline] = ACTIONS(1335), - [sym__closing_tag_html_block] = ACTIONS(1335), - [sym__closing_tag_html_block_newline] = ACTIONS(1335), - [sym_backslash_escape] = ACTIONS(1335), - [sym_entity_reference] = ACTIONS(1335), - [sym_numeric_character_reference] = ACTIONS(1335), - [sym_uri_autolink] = ACTIONS(1335), - [sym_email_autolink] = ACTIONS(1335), - [sym__whitespace_ge_2] = ACTIONS(1348), - [aux_sym__whitespace_token1] = ACTIONS(1351), - [sym__word_no_digit] = ACTIONS(1335), - [sym__digits] = ACTIONS(1335), - [aux_sym__newline_token1] = ACTIONS(1335), - [sym__block_quote_start] = ACTIONS(1335), - [sym__indented_chunk_start] = ACTIONS(1335), - [sym_atx_h1_marker] = ACTIONS(1335), - [sym_atx_h2_marker] = ACTIONS(1335), - [sym_atx_h3_marker] = ACTIONS(1335), - [sym_atx_h4_marker] = ACTIONS(1335), - [sym_atx_h5_marker] = ACTIONS(1335), - [sym_atx_h6_marker] = ACTIONS(1335), - [sym__thematic_break] = ACTIONS(1335), - [sym__list_marker_minus] = ACTIONS(1335), - [sym__list_marker_plus] = ACTIONS(1335), - [sym__list_marker_star] = ACTIONS(1335), - [sym__list_marker_parenthesis] = ACTIONS(1335), - [sym__list_marker_dot] = ACTIONS(1335), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1335), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1335), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1335), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1335), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1335), - [sym__fenced_code_block_start_backtick] = ACTIONS(1335), - [sym__fenced_code_block_start_tilde] = ACTIONS(1335), - [sym__blank_line_start] = ACTIONS(1335), - [sym__no_indented_chunk] = ACTIONS(1490), - [sym__code_span_start] = ACTIONS(1335), - [sym__emphasis_open_star] = ACTIONS(1335), - [sym__emphasis_open_underscore] = ACTIONS(1335), + [319] = { + [sym_link_title] = STATE(2215), + [sym__whitespace] = STATE(2094), + [ts_builtin_sym_end] = ACTIONS(1575), + [anon_sym_BANG] = ACTIONS(1575), + [anon_sym_DQUOTE] = ACTIONS(1577), + [anon_sym_POUND] = ACTIONS(1575), + [anon_sym_DOLLAR] = ACTIONS(1575), + [anon_sym_PERCENT] = ACTIONS(1575), + [anon_sym_AMP] = ACTIONS(1580), + [anon_sym_SQUOTE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_RPAREN] = ACTIONS(1575), + [anon_sym_STAR] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1575), + [anon_sym_COMMA] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_DOT] = ACTIONS(1575), + [anon_sym_SLASH] = ACTIONS(1575), + [anon_sym_COLON] = ACTIONS(1575), + [anon_sym_SEMI] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_EQ] = ACTIONS(1575), + [anon_sym_GT] = ACTIONS(1575), + [anon_sym_QMARK] = ACTIONS(1575), + [anon_sym_AT] = ACTIONS(1575), + [anon_sym_LBRACK] = ACTIONS(1575), + [anon_sym_BSLASH] = ACTIONS(1580), + [anon_sym_RBRACK] = ACTIONS(1575), + [anon_sym_CARET] = ACTIONS(1575), + [anon_sym__] = ACTIONS(1575), + [anon_sym_BQUOTE] = ACTIONS(1575), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_PIPE] = ACTIONS(1575), + [anon_sym_RBRACE] = ACTIONS(1575), + [anon_sym_TILDE] = ACTIONS(1575), + [aux_sym__html_block_1_token1] = ACTIONS(1575), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1580), + [anon_sym_LT_QMARK] = ACTIONS(1580), + [aux_sym__html_block_4_token1] = ACTIONS(1580), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1575), + [aux_sym__html_block_6_token1] = ACTIONS(1580), + [aux_sym__html_block_6_token2] = ACTIONS(1575), + [sym__open_tag_html_block] = ACTIONS(1575), + [sym__open_tag_html_block_newline] = ACTIONS(1575), + [sym__closing_tag_html_block] = ACTIONS(1575), + [sym__closing_tag_html_block_newline] = ACTIONS(1575), + [sym_backslash_escape] = ACTIONS(1575), + [sym_entity_reference] = ACTIONS(1575), + [sym_numeric_character_reference] = ACTIONS(1575), + [sym_uri_autolink] = ACTIONS(1575), + [sym_email_autolink] = ACTIONS(1575), + [sym__whitespace_ge_2] = ACTIONS(1588), + [aux_sym__whitespace_token1] = ACTIONS(1591), + [sym__word_no_digit] = ACTIONS(1575), + [sym__digits] = ACTIONS(1575), + [aux_sym__newline_token1] = ACTIONS(1575), + [sym__block_quote_start] = ACTIONS(1575), + [sym__indented_chunk_start] = ACTIONS(1575), + [sym_atx_h1_marker] = ACTIONS(1575), + [sym_atx_h2_marker] = ACTIONS(1575), + [sym_atx_h3_marker] = ACTIONS(1575), + [sym_atx_h4_marker] = ACTIONS(1575), + [sym_atx_h5_marker] = ACTIONS(1575), + [sym_atx_h6_marker] = ACTIONS(1575), + [sym__thematic_break] = ACTIONS(1575), + [sym__list_marker_minus] = ACTIONS(1575), + [sym__list_marker_plus] = ACTIONS(1575), + [sym__list_marker_star] = ACTIONS(1575), + [sym__list_marker_parenthesis] = ACTIONS(1575), + [sym__list_marker_dot] = ACTIONS(1575), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1575), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1575), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1575), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1575), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1575), + [sym__fenced_code_block_start_backtick] = ACTIONS(1575), + [sym__fenced_code_block_start_tilde] = ACTIONS(1575), + [sym__blank_line_start] = ACTIONS(1575), + [sym__no_indented_chunk] = ACTIONS(1594), + [sym__code_span_start] = ACTIONS(1575), + [sym__emphasis_open_star] = ACTIONS(1575), + [sym__emphasis_open_underscore] = ACTIONS(1575), }, - [315] = { - [sym__soft_line_break] = STATE(899), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), - [sym__whitespace] = STATE(899), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(304), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), + [320] = { + [sym__soft_line_break] = STATE(825), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), + [sym__whitespace] = STATE(825), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(324), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -59562,9 +59989,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(7), [anon_sym_AT] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(971), [anon_sym_BSLASH] = ACTIONS(15), - [anon_sym_RBRACK] = ACTIONS(1492), + [anon_sym_RBRACK] = ACTIONS(1248), [anon_sym_CARET] = ACTIONS(7), [anon_sym__] = ACTIONS(7), [anon_sym_BQUOTE] = ACTIONS(7), @@ -59572,17 +59999,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), [anon_sym_TILDE] = ACTIONS(7), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(848), - [anon_sym_LT_QMARK] = ACTIONS(850), - [aux_sym__html_block_4_token1] = ACTIONS(852), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(854), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(973), + [anon_sym_LT_QMARK] = ACTIONS(975), + [aux_sym__html_block_4_token1] = ACTIONS(977), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(979), [sym_backslash_escape] = ACTIONS(35), [sym_entity_reference] = ACTIONS(35), [sym_numeric_character_reference] = ACTIONS(35), [sym_uri_autolink] = ACTIONS(35), [sym_email_autolink] = ACTIONS(35), - [sym__whitespace_ge_2] = ACTIONS(856), - [aux_sym__whitespace_token1] = ACTIONS(858), + [sym__whitespace_ge_2] = ACTIONS(981), + [aux_sym__whitespace_token1] = ACTIONS(983), [sym__word_no_digit] = ACTIONS(35), [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), @@ -59590,964 +60017,292 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, - [316] = { - [sym_list_marker_dot] = STATE(13), - [sym__list_item_dot] = STATE(321), - [aux_sym__list_dot_repeat1] = STATE(321), - [anon_sym_BANG] = ACTIONS(1465), - [anon_sym_DQUOTE] = ACTIONS(1465), - [anon_sym_POUND] = ACTIONS(1465), - [anon_sym_DOLLAR] = ACTIONS(1465), - [anon_sym_PERCENT] = ACTIONS(1465), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_LPAREN] = ACTIONS(1465), - [anon_sym_RPAREN] = ACTIONS(1465), - [anon_sym_STAR] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_COMMA] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_DOT] = ACTIONS(1465), - [anon_sym_SLASH] = ACTIONS(1465), - [anon_sym_COLON] = ACTIONS(1465), - [anon_sym_SEMI] = ACTIONS(1465), - [anon_sym_LT] = ACTIONS(1467), - [anon_sym_EQ] = ACTIONS(1465), - [anon_sym_GT] = ACTIONS(1465), - [anon_sym_QMARK] = ACTIONS(1465), - [anon_sym_AT] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(1465), - [anon_sym_BSLASH] = ACTIONS(1467), - [anon_sym_RBRACK] = ACTIONS(1465), - [anon_sym_CARET] = ACTIONS(1465), - [anon_sym__] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1465), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_PIPE] = ACTIONS(1465), - [anon_sym_RBRACE] = ACTIONS(1465), - [anon_sym_TILDE] = ACTIONS(1465), - [aux_sym__html_block_1_token1] = ACTIONS(1465), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1467), - [anon_sym_LT_QMARK] = ACTIONS(1467), - [aux_sym__html_block_4_token1] = ACTIONS(1467), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1465), - [aux_sym__html_block_6_token1] = ACTIONS(1467), - [aux_sym__html_block_6_token2] = ACTIONS(1465), - [sym__open_tag_html_block] = ACTIONS(1465), - [sym__open_tag_html_block_newline] = ACTIONS(1465), - [sym__closing_tag_html_block] = ACTIONS(1465), - [sym__closing_tag_html_block_newline] = ACTIONS(1465), - [sym_backslash_escape] = ACTIONS(1465), - [sym_entity_reference] = ACTIONS(1465), - [sym_numeric_character_reference] = ACTIONS(1465), - [sym_uri_autolink] = ACTIONS(1465), - [sym_email_autolink] = ACTIONS(1465), - [sym__whitespace_ge_2] = ACTIONS(1465), - [aux_sym__whitespace_token1] = ACTIONS(1467), - [sym__word_no_digit] = ACTIONS(1465), - [sym__digits] = ACTIONS(1465), - [aux_sym__newline_token1] = ACTIONS(1465), - [sym__block_close] = ACTIONS(1465), - [sym__block_quote_start] = ACTIONS(1465), - [sym__indented_chunk_start] = ACTIONS(1465), - [sym_atx_h1_marker] = ACTIONS(1465), - [sym_atx_h2_marker] = ACTIONS(1465), - [sym_atx_h3_marker] = ACTIONS(1465), - [sym_atx_h4_marker] = ACTIONS(1465), - [sym_atx_h5_marker] = ACTIONS(1465), - [sym_atx_h6_marker] = ACTIONS(1465), - [sym__thematic_break] = ACTIONS(1465), - [sym__list_marker_minus] = ACTIONS(1465), - [sym__list_marker_plus] = ACTIONS(1465), - [sym__list_marker_star] = ACTIONS(1465), - [sym__list_marker_parenthesis] = ACTIONS(1465), - [sym__list_marker_dot] = ACTIONS(61), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1465), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1465), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1465), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1465), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(1465), - [sym__fenced_code_block_start_tilde] = ACTIONS(1465), - [sym__blank_line_start] = ACTIONS(1465), - [sym__code_span_start] = ACTIONS(1465), - [sym__emphasis_open_star] = ACTIONS(1465), - [sym__emphasis_open_underscore] = ACTIONS(1465), - }, - [317] = { - [sym_list_marker_star] = STATE(14), - [sym__list_item_star] = STATE(310), - [aux_sym__list_star_repeat1] = STATE(310), - [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), - [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(1399), - [sym_numeric_character_reference] = ACTIONS(1399), - [sym_uri_autolink] = ACTIONS(1399), - [sym_email_autolink] = 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__thematic_break] = ACTIONS(1399), - [sym__list_marker_minus] = ACTIONS(1399), - [sym__list_marker_plus] = ACTIONS(1399), + [321] = { + [sym_list_marker_star] = STATE(23), + [sym__list_item_star] = STATE(302), + [aux_sym__list_star_repeat1] = STATE(302), + [anon_sym_BANG] = ACTIONS(1257), + [anon_sym_DQUOTE] = ACTIONS(1257), + [anon_sym_POUND] = ACTIONS(1257), + [anon_sym_DOLLAR] = ACTIONS(1257), + [anon_sym_PERCENT] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_SQUOTE] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1257), + [anon_sym_RPAREN] = ACTIONS(1257), + [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_COMMA] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_DOT] = ACTIONS(1257), + [anon_sym_SLASH] = ACTIONS(1257), + [anon_sym_COLON] = ACTIONS(1257), + [anon_sym_SEMI] = ACTIONS(1257), + [anon_sym_LT] = ACTIONS(1259), + [anon_sym_EQ] = ACTIONS(1257), + [anon_sym_GT] = ACTIONS(1257), + [anon_sym_QMARK] = ACTIONS(1257), + [anon_sym_AT] = ACTIONS(1257), + [anon_sym_LBRACK] = ACTIONS(1257), + [anon_sym_BSLASH] = ACTIONS(1259), + [anon_sym_RBRACK] = ACTIONS(1257), + [anon_sym_CARET] = ACTIONS(1257), + [anon_sym__] = ACTIONS(1257), + [anon_sym_BQUOTE] = ACTIONS(1257), + [anon_sym_LBRACE] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1257), + [anon_sym_RBRACE] = ACTIONS(1257), + [anon_sym_TILDE] = ACTIONS(1257), + [aux_sym__html_block_1_token1] = ACTIONS(1257), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1259), + [anon_sym_LT_QMARK] = ACTIONS(1259), + [aux_sym__html_block_4_token1] = ACTIONS(1259), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1257), + [aux_sym__html_block_6_token1] = ACTIONS(1259), + [aux_sym__html_block_6_token2] = ACTIONS(1257), + [sym__open_tag_html_block] = ACTIONS(1257), + [sym__open_tag_html_block_newline] = ACTIONS(1257), + [sym__closing_tag_html_block] = ACTIONS(1257), + [sym__closing_tag_html_block_newline] = ACTIONS(1257), + [sym_backslash_escape] = ACTIONS(1257), + [sym_entity_reference] = ACTIONS(1257), + [sym_numeric_character_reference] = ACTIONS(1257), + [sym_uri_autolink] = ACTIONS(1257), + [sym_email_autolink] = ACTIONS(1257), + [sym__whitespace_ge_2] = ACTIONS(1257), + [aux_sym__whitespace_token1] = ACTIONS(1259), + [sym__word_no_digit] = ACTIONS(1257), + [sym__digits] = ACTIONS(1257), + [aux_sym__newline_token1] = ACTIONS(1257), + [sym__block_close] = ACTIONS(1257), + [sym__block_quote_start] = ACTIONS(1257), + [sym__indented_chunk_start] = ACTIONS(1257), + [sym_atx_h1_marker] = ACTIONS(1257), + [sym_atx_h2_marker] = ACTIONS(1257), + [sym_atx_h3_marker] = ACTIONS(1257), + [sym_atx_h4_marker] = ACTIONS(1257), + [sym_atx_h5_marker] = ACTIONS(1257), + [sym_atx_h6_marker] = ACTIONS(1257), + [sym__thematic_break] = ACTIONS(1257), + [sym__list_marker_minus] = ACTIONS(1257), + [sym__list_marker_plus] = ACTIONS(1257), [sym__list_marker_star] = ACTIONS(57), - [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(1399), + [sym__list_marker_parenthesis] = ACTIONS(1257), + [sym__list_marker_dot] = ACTIONS(1257), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1257), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1257), [sym__list_marker_star_dont_interrupt] = ACTIONS(57), - [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), - }, - [318] = { - [sym_list_marker_minus] = STATE(15), - [sym__list_item_minus] = STATE(309), - [aux_sym__list_minus_repeat1] = STATE(309), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_DQUOTE] = ACTIONS(1395), - [anon_sym_POUND] = ACTIONS(1395), - [anon_sym_DOLLAR] = ACTIONS(1395), - [anon_sym_PERCENT] = ACTIONS(1395), - [anon_sym_AMP] = ACTIONS(1397), - [anon_sym_SQUOTE] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1395), - [anon_sym_RPAREN] = ACTIONS(1395), - [anon_sym_STAR] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_COMMA] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_DOT] = ACTIONS(1395), - [anon_sym_SLASH] = ACTIONS(1395), - [anon_sym_COLON] = ACTIONS(1395), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_LT] = ACTIONS(1397), - [anon_sym_EQ] = ACTIONS(1395), - [anon_sym_GT] = ACTIONS(1395), - [anon_sym_QMARK] = ACTIONS(1395), - [anon_sym_AT] = ACTIONS(1395), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_BSLASH] = ACTIONS(1397), - [anon_sym_RBRACK] = ACTIONS(1395), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym__] = ACTIONS(1395), - [anon_sym_BQUOTE] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1395), - [anon_sym_PIPE] = ACTIONS(1395), - [anon_sym_RBRACE] = ACTIONS(1395), - [anon_sym_TILDE] = ACTIONS(1395), - [aux_sym__html_block_1_token1] = ACTIONS(1395), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1397), - [anon_sym_LT_QMARK] = ACTIONS(1397), - [aux_sym__html_block_4_token1] = ACTIONS(1397), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1395), - [aux_sym__html_block_6_token1] = ACTIONS(1397), - [aux_sym__html_block_6_token2] = ACTIONS(1395), - [sym__open_tag_html_block] = ACTIONS(1395), - [sym__open_tag_html_block_newline] = ACTIONS(1395), - [sym__closing_tag_html_block] = ACTIONS(1395), - [sym__closing_tag_html_block_newline] = ACTIONS(1395), - [sym_backslash_escape] = ACTIONS(1395), - [sym_entity_reference] = ACTIONS(1395), - [sym_numeric_character_reference] = ACTIONS(1395), - [sym_uri_autolink] = ACTIONS(1395), - [sym_email_autolink] = ACTIONS(1395), - [sym__whitespace_ge_2] = ACTIONS(1395), - [aux_sym__whitespace_token1] = ACTIONS(1397), - [sym__word_no_digit] = ACTIONS(1395), - [sym__digits] = ACTIONS(1395), - [aux_sym__newline_token1] = ACTIONS(1395), - [sym__block_close] = ACTIONS(1395), - [sym__block_quote_start] = ACTIONS(1395), - [sym__indented_chunk_start] = ACTIONS(1395), - [sym_atx_h1_marker] = ACTIONS(1395), - [sym_atx_h2_marker] = ACTIONS(1395), - [sym_atx_h3_marker] = ACTIONS(1395), - [sym_atx_h4_marker] = ACTIONS(1395), - [sym_atx_h5_marker] = ACTIONS(1395), - [sym_atx_h6_marker] = ACTIONS(1395), - [sym__thematic_break] = ACTIONS(1395), - [sym__list_marker_minus] = ACTIONS(53), - [sym__list_marker_plus] = ACTIONS(1395), - [sym__list_marker_star] = ACTIONS(1395), - [sym__list_marker_parenthesis] = ACTIONS(1395), - [sym__list_marker_dot] = ACTIONS(1395), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(53), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1395), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1395), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1395), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1395), - [sym__fenced_code_block_start_backtick] = ACTIONS(1395), - [sym__fenced_code_block_start_tilde] = ACTIONS(1395), - [sym__blank_line_start] = ACTIONS(1395), - [sym__code_span_start] = ACTIONS(1395), - [sym__emphasis_open_star] = ACTIONS(1395), - [sym__emphasis_open_underscore] = ACTIONS(1395), - }, - [319] = { - [sym_list_marker_plus] = STATE(16), - [sym__list_item_plus] = STATE(305), - [aux_sym__list_plus_repeat1] = STATE(305), - [anon_sym_BANG] = ACTIONS(1391), - [anon_sym_DQUOTE] = ACTIONS(1391), - [anon_sym_POUND] = ACTIONS(1391), - [anon_sym_DOLLAR] = ACTIONS(1391), - [anon_sym_PERCENT] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1393), - [anon_sym_SQUOTE] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1391), - [anon_sym_RPAREN] = ACTIONS(1391), - [anon_sym_STAR] = ACTIONS(1391), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_COMMA] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_DOT] = ACTIONS(1391), - [anon_sym_SLASH] = ACTIONS(1391), - [anon_sym_COLON] = ACTIONS(1391), - [anon_sym_SEMI] = ACTIONS(1391), - [anon_sym_LT] = ACTIONS(1393), - [anon_sym_EQ] = ACTIONS(1391), - [anon_sym_GT] = ACTIONS(1391), - [anon_sym_QMARK] = ACTIONS(1391), - [anon_sym_AT] = ACTIONS(1391), - [anon_sym_LBRACK] = ACTIONS(1391), - [anon_sym_BSLASH] = ACTIONS(1393), - [anon_sym_RBRACK] = ACTIONS(1391), - [anon_sym_CARET] = ACTIONS(1391), - [anon_sym__] = ACTIONS(1391), - [anon_sym_BQUOTE] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(1391), - [anon_sym_PIPE] = ACTIONS(1391), - [anon_sym_RBRACE] = ACTIONS(1391), - [anon_sym_TILDE] = ACTIONS(1391), - [aux_sym__html_block_1_token1] = ACTIONS(1391), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1393), - [anon_sym_LT_QMARK] = ACTIONS(1393), - [aux_sym__html_block_4_token1] = ACTIONS(1393), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1391), - [aux_sym__html_block_6_token1] = ACTIONS(1393), - [aux_sym__html_block_6_token2] = ACTIONS(1391), - [sym__open_tag_html_block] = ACTIONS(1391), - [sym__open_tag_html_block_newline] = ACTIONS(1391), - [sym__closing_tag_html_block] = ACTIONS(1391), - [sym__closing_tag_html_block_newline] = ACTIONS(1391), - [sym_backslash_escape] = ACTIONS(1391), - [sym_entity_reference] = ACTIONS(1391), - [sym_numeric_character_reference] = ACTIONS(1391), - [sym_uri_autolink] = ACTIONS(1391), - [sym_email_autolink] = ACTIONS(1391), - [sym__whitespace_ge_2] = ACTIONS(1391), - [aux_sym__whitespace_token1] = ACTIONS(1393), - [sym__word_no_digit] = ACTIONS(1391), - [sym__digits] = ACTIONS(1391), - [aux_sym__newline_token1] = ACTIONS(1391), - [sym__block_close] = ACTIONS(1391), - [sym__block_quote_start] = ACTIONS(1391), - [sym__indented_chunk_start] = ACTIONS(1391), - [sym_atx_h1_marker] = ACTIONS(1391), - [sym_atx_h2_marker] = ACTIONS(1391), - [sym_atx_h3_marker] = ACTIONS(1391), - [sym_atx_h4_marker] = ACTIONS(1391), - [sym_atx_h5_marker] = ACTIONS(1391), - [sym_atx_h6_marker] = ACTIONS(1391), - [sym__thematic_break] = ACTIONS(1391), - [sym__list_marker_minus] = ACTIONS(1391), - [sym__list_marker_plus] = ACTIONS(55), - [sym__list_marker_star] = ACTIONS(1391), - [sym__list_marker_parenthesis] = ACTIONS(1391), - [sym__list_marker_dot] = ACTIONS(1391), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1391), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(55), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1391), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1391), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1391), - [sym__fenced_code_block_start_backtick] = ACTIONS(1391), - [sym__fenced_code_block_start_tilde] = ACTIONS(1391), - [sym__blank_line_start] = ACTIONS(1391), - [sym__code_span_start] = ACTIONS(1391), - [sym__emphasis_open_star] = ACTIONS(1391), - [sym__emphasis_open_underscore] = ACTIONS(1391), - }, - [320] = { - [sym_list_marker_parenthesis] = STATE(43), - [sym__list_item_parenthesis] = STATE(320), - [aux_sym__list_parenthesis_repeat1] = STATE(320), - [ts_builtin_sym_end] = ACTIONS(1494), - [anon_sym_BANG] = ACTIONS(1494), - [anon_sym_DQUOTE] = ACTIONS(1494), - [anon_sym_POUND] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1494), - [anon_sym_PERCENT] = ACTIONS(1494), - [anon_sym_AMP] = ACTIONS(1496), - [anon_sym_SQUOTE] = ACTIONS(1494), - [anon_sym_LPAREN] = ACTIONS(1494), - [anon_sym_RPAREN] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1494), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_DOT] = ACTIONS(1494), - [anon_sym_SLASH] = ACTIONS(1494), - [anon_sym_COLON] = ACTIONS(1494), - [anon_sym_SEMI] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(1496), - [anon_sym_EQ] = ACTIONS(1494), - [anon_sym_GT] = ACTIONS(1494), - [anon_sym_QMARK] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(1494), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_BSLASH] = ACTIONS(1496), - [anon_sym_RBRACK] = ACTIONS(1494), - [anon_sym_CARET] = ACTIONS(1494), - [anon_sym__] = ACTIONS(1494), - [anon_sym_BQUOTE] = ACTIONS(1494), - [anon_sym_LBRACE] = ACTIONS(1494), - [anon_sym_PIPE] = ACTIONS(1494), - [anon_sym_RBRACE] = ACTIONS(1494), - [anon_sym_TILDE] = ACTIONS(1494), - [aux_sym__html_block_1_token1] = ACTIONS(1494), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1496), - [anon_sym_LT_QMARK] = ACTIONS(1496), - [aux_sym__html_block_4_token1] = ACTIONS(1496), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1494), - [aux_sym__html_block_6_token1] = ACTIONS(1496), - [aux_sym__html_block_6_token2] = ACTIONS(1494), - [sym__open_tag_html_block] = ACTIONS(1494), - [sym__open_tag_html_block_newline] = ACTIONS(1494), - [sym__closing_tag_html_block] = ACTIONS(1494), - [sym__closing_tag_html_block_newline] = ACTIONS(1494), - [sym_backslash_escape] = ACTIONS(1494), - [sym_entity_reference] = ACTIONS(1494), - [sym_numeric_character_reference] = ACTIONS(1494), - [sym_uri_autolink] = ACTIONS(1494), - [sym_email_autolink] = ACTIONS(1494), - [sym__whitespace_ge_2] = ACTIONS(1494), - [aux_sym__whitespace_token1] = ACTIONS(1496), - [sym__word_no_digit] = ACTIONS(1494), - [sym__digits] = ACTIONS(1494), - [aux_sym__newline_token1] = ACTIONS(1494), - [sym__block_quote_start] = ACTIONS(1494), - [sym__indented_chunk_start] = ACTIONS(1494), - [sym_atx_h1_marker] = ACTIONS(1494), - [sym_atx_h2_marker] = ACTIONS(1494), - [sym_atx_h3_marker] = ACTIONS(1494), - [sym_atx_h4_marker] = ACTIONS(1494), - [sym_atx_h5_marker] = ACTIONS(1494), - [sym_atx_h6_marker] = ACTIONS(1494), - [sym__thematic_break] = ACTIONS(1494), - [sym__list_marker_minus] = ACTIONS(1494), - [sym__list_marker_plus] = ACTIONS(1494), - [sym__list_marker_star] = ACTIONS(1494), - [sym__list_marker_parenthesis] = ACTIONS(1498), - [sym__list_marker_dot] = ACTIONS(1494), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1494), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1494), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1494), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1498), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1494), - [sym__fenced_code_block_start_backtick] = ACTIONS(1494), - [sym__fenced_code_block_start_tilde] = ACTIONS(1494), - [sym__blank_line_start] = ACTIONS(1494), - [sym__code_span_start] = ACTIONS(1494), - [sym__emphasis_open_star] = ACTIONS(1494), - [sym__emphasis_open_underscore] = ACTIONS(1494), - }, - [321] = { - [sym_list_marker_dot] = STATE(13), - [sym__list_item_dot] = STATE(321), - [aux_sym__list_dot_repeat1] = STATE(321), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_DQUOTE] = ACTIONS(1483), - [anon_sym_POUND] = ACTIONS(1483), - [anon_sym_DOLLAR] = ACTIONS(1483), - [anon_sym_PERCENT] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1485), - [anon_sym_SQUOTE] = ACTIONS(1483), - [anon_sym_LPAREN] = ACTIONS(1483), - [anon_sym_RPAREN] = ACTIONS(1483), - [anon_sym_STAR] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1483), - [anon_sym_COMMA] = ACTIONS(1483), - [anon_sym_DASH] = ACTIONS(1483), - [anon_sym_DOT] = ACTIONS(1483), - [anon_sym_SLASH] = ACTIONS(1483), - [anon_sym_COLON] = ACTIONS(1483), - [anon_sym_SEMI] = ACTIONS(1483), - [anon_sym_LT] = ACTIONS(1485), - [anon_sym_EQ] = ACTIONS(1483), - [anon_sym_GT] = ACTIONS(1483), - [anon_sym_QMARK] = ACTIONS(1483), - [anon_sym_AT] = ACTIONS(1483), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_BSLASH] = ACTIONS(1485), - [anon_sym_RBRACK] = ACTIONS(1483), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym__] = ACTIONS(1483), - [anon_sym_BQUOTE] = ACTIONS(1483), - [anon_sym_LBRACE] = ACTIONS(1483), - [anon_sym_PIPE] = ACTIONS(1483), - [anon_sym_RBRACE] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [aux_sym__html_block_1_token1] = ACTIONS(1483), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1485), - [anon_sym_LT_QMARK] = ACTIONS(1485), - [aux_sym__html_block_4_token1] = ACTIONS(1485), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1483), - [aux_sym__html_block_6_token1] = ACTIONS(1485), - [aux_sym__html_block_6_token2] = ACTIONS(1483), - [sym__open_tag_html_block] = ACTIONS(1483), - [sym__open_tag_html_block_newline] = ACTIONS(1483), - [sym__closing_tag_html_block] = ACTIONS(1483), - [sym__closing_tag_html_block_newline] = ACTIONS(1483), - [sym_backslash_escape] = ACTIONS(1483), - [sym_entity_reference] = ACTIONS(1483), - [sym_numeric_character_reference] = ACTIONS(1483), - [sym_uri_autolink] = ACTIONS(1483), - [sym_email_autolink] = ACTIONS(1483), - [sym__whitespace_ge_2] = ACTIONS(1483), - [aux_sym__whitespace_token1] = ACTIONS(1485), - [sym__word_no_digit] = ACTIONS(1483), - [sym__digits] = ACTIONS(1483), - [aux_sym__newline_token1] = ACTIONS(1483), - [sym__block_close] = ACTIONS(1483), - [sym__block_quote_start] = ACTIONS(1483), - [sym__indented_chunk_start] = ACTIONS(1483), - [sym_atx_h1_marker] = ACTIONS(1483), - [sym_atx_h2_marker] = ACTIONS(1483), - [sym_atx_h3_marker] = ACTIONS(1483), - [sym_atx_h4_marker] = ACTIONS(1483), - [sym_atx_h5_marker] = ACTIONS(1483), - [sym_atx_h6_marker] = ACTIONS(1483), - [sym__thematic_break] = ACTIONS(1483), - [sym__list_marker_minus] = ACTIONS(1483), - [sym__list_marker_plus] = ACTIONS(1483), - [sym__list_marker_star] = ACTIONS(1483), - [sym__list_marker_parenthesis] = ACTIONS(1483), - [sym__list_marker_dot] = ACTIONS(1487), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1483), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1483), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1483), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1483), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1487), - [sym__fenced_code_block_start_backtick] = ACTIONS(1483), - [sym__fenced_code_block_start_tilde] = ACTIONS(1483), - [sym__blank_line_start] = ACTIONS(1483), - [sym__code_span_start] = ACTIONS(1483), - [sym__emphasis_open_star] = ACTIONS(1483), - [sym__emphasis_open_underscore] = ACTIONS(1483), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1257), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1257), + [sym__fenced_code_block_start_backtick] = ACTIONS(1257), + [sym__fenced_code_block_start_tilde] = ACTIONS(1257), + [sym__blank_line_start] = ACTIONS(1257), + [sym__code_span_start] = ACTIONS(1257), + [sym__emphasis_open_star] = ACTIONS(1257), + [sym__emphasis_open_underscore] = ACTIONS(1257), }, [322] = { - [sym__soft_line_break] = STATE(107), - [sym__link_text] = STATE(2135), - [sym__link_text_non_empty] = STATE(707), - [sym_shortcut_link] = STATE(107), - [sym_full_reference_link] = STATE(107), - [sym_collapsed_reference_link] = STATE(107), - [sym_inline_link] = STATE(107), - [sym_image] = STATE(107), - [sym__image_inline_link] = STATE(708), - [sym__image_shortcut_link] = STATE(708), - [sym__image_full_reference_link] = STATE(708), - [sym__image_collapsed_reference_link] = STATE(708), - [sym__image_description] = STATE(2137), - [sym__image_description_non_empty] = STATE(709), - [sym_html_tag] = STATE(107), - [sym__open_tag] = STATE(710), - [sym__closing_tag] = STATE(710), - [sym__html_comment] = STATE(710), - [sym__processing_instruction] = STATE(710), - [sym__declaration] = STATE(710), - [sym__cdata_section] = STATE(710), - [sym_hard_line_break] = STATE(107), - [sym__whitespace] = STATE(107), - [sym__word] = STATE(107), - [sym__newline] = STATE(2120), - [sym__inline_element_no_star] = STATE(107), - [aux_sym__inline_no_star] = STATE(107), - [sym__text_inline_no_star] = STATE(107), - [sym__emphasis_star] = STATE(790), - [sym__strong_emphasis_star] = STATE(107), - [sym__emphasis_underscore] = STATE(777), - [sym__strong_emphasis_underscore] = STATE(107), - [sym__code_span] = STATE(107), - [anon_sym_BANG] = ACTIONS(1501), - [anon_sym_DQUOTE] = ACTIONS(1504), - [anon_sym_POUND] = ACTIONS(1504), - [anon_sym_DOLLAR] = ACTIONS(1504), - [anon_sym_PERCENT] = ACTIONS(1504), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_SQUOTE] = ACTIONS(1504), - [anon_sym_LPAREN] = ACTIONS(1504), - [anon_sym_RPAREN] = ACTIONS(1504), - [anon_sym_STAR] = ACTIONS(1504), - [anon_sym_PLUS] = ACTIONS(1504), - [anon_sym_COMMA] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1504), - [anon_sym_DOT] = ACTIONS(1504), - [anon_sym_SLASH] = ACTIONS(1504), - [anon_sym_COLON] = ACTIONS(1504), - [anon_sym_SEMI] = ACTIONS(1504), - [anon_sym_LT] = ACTIONS(1510), - [anon_sym_EQ] = ACTIONS(1504), - [anon_sym_GT] = ACTIONS(1504), - [anon_sym_QMARK] = ACTIONS(1504), - [anon_sym_AT] = ACTIONS(1504), - [anon_sym_LBRACK] = ACTIONS(1513), - [anon_sym_BSLASH] = ACTIONS(1516), - [anon_sym_RBRACK] = ACTIONS(1504), - [anon_sym_CARET] = ACTIONS(1504), - [anon_sym__] = ACTIONS(1504), - [anon_sym_BQUOTE] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(1504), - [anon_sym_PIPE] = ACTIONS(1504), - [anon_sym_RBRACE] = ACTIONS(1504), - [anon_sym_TILDE] = ACTIONS(1504), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1519), - [anon_sym_LT_QMARK] = ACTIONS(1522), - [aux_sym__html_block_4_token1] = ACTIONS(1525), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1528), - [sym_backslash_escape] = ACTIONS(1531), - [sym_entity_reference] = ACTIONS(1531), - [sym_numeric_character_reference] = ACTIONS(1531), - [sym_uri_autolink] = ACTIONS(1531), - [sym_email_autolink] = ACTIONS(1531), - [sym__whitespace_ge_2] = ACTIONS(1534), - [aux_sym__whitespace_token1] = ACTIONS(1537), - [sym__word_no_digit] = ACTIONS(1531), - [sym__digits] = ACTIONS(1531), - [aux_sym__newline_token1] = ACTIONS(1540), - [sym__code_span_start] = ACTIONS(1543), - [sym__emphasis_open_star] = ACTIONS(1546), - [sym__emphasis_open_underscore] = ACTIONS(1549), + [sym__indented_chunk] = STATE(322), + [sym__blank_line] = STATE(322), + [aux_sym_indented_code_block_repeat1] = STATE(322), + [ts_builtin_sym_end] = ACTIONS(1378), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_DQUOTE] = ACTIONS(1378), + [anon_sym_POUND] = ACTIONS(1378), + [anon_sym_DOLLAR] = ACTIONS(1378), + [anon_sym_PERCENT] = ACTIONS(1378), + [anon_sym_AMP] = ACTIONS(1380), + [anon_sym_SQUOTE] = ACTIONS(1378), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_RPAREN] = ACTIONS(1378), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_PLUS] = ACTIONS(1378), + [anon_sym_COMMA] = ACTIONS(1378), + [anon_sym_DASH] = ACTIONS(1378), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_SLASH] = ACTIONS(1378), + [anon_sym_COLON] = ACTIONS(1378), + [anon_sym_SEMI] = ACTIONS(1378), + [anon_sym_LT] = ACTIONS(1380), + [anon_sym_EQ] = ACTIONS(1378), + [anon_sym_GT] = ACTIONS(1378), + [anon_sym_QMARK] = ACTIONS(1378), + [anon_sym_AT] = ACTIONS(1378), + [anon_sym_LBRACK] = ACTIONS(1378), + [anon_sym_BSLASH] = ACTIONS(1380), + [anon_sym_RBRACK] = ACTIONS(1378), + [anon_sym_CARET] = ACTIONS(1378), + [anon_sym__] = ACTIONS(1378), + [anon_sym_BQUOTE] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1378), + [anon_sym_PIPE] = ACTIONS(1378), + [anon_sym_RBRACE] = ACTIONS(1378), + [anon_sym_TILDE] = ACTIONS(1378), + [aux_sym__html_block_1_token1] = ACTIONS(1378), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1380), + [anon_sym_LT_QMARK] = ACTIONS(1380), + [aux_sym__html_block_4_token1] = ACTIONS(1380), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1378), + [aux_sym__html_block_6_token1] = ACTIONS(1380), + [aux_sym__html_block_6_token2] = ACTIONS(1378), + [sym__open_tag_html_block] = ACTIONS(1378), + [sym__open_tag_html_block_newline] = ACTIONS(1378), + [sym__closing_tag_html_block] = ACTIONS(1378), + [sym__closing_tag_html_block_newline] = ACTIONS(1378), + [sym_backslash_escape] = ACTIONS(1378), + [sym_entity_reference] = ACTIONS(1378), + [sym_numeric_character_reference] = ACTIONS(1378), + [sym_uri_autolink] = ACTIONS(1378), + [sym_email_autolink] = ACTIONS(1378), + [sym__whitespace_ge_2] = ACTIONS(1378), + [aux_sym__whitespace_token1] = ACTIONS(1380), + [sym__word_no_digit] = ACTIONS(1378), + [sym__digits] = ACTIONS(1378), + [aux_sym__newline_token1] = ACTIONS(1378), + [sym__block_quote_start] = ACTIONS(1378), + [sym__indented_chunk_start] = ACTIONS(1596), + [sym_atx_h1_marker] = ACTIONS(1378), + [sym_atx_h2_marker] = ACTIONS(1378), + [sym_atx_h3_marker] = ACTIONS(1378), + [sym_atx_h4_marker] = ACTIONS(1378), + [sym_atx_h5_marker] = ACTIONS(1378), + [sym_atx_h6_marker] = ACTIONS(1378), + [sym__thematic_break] = ACTIONS(1378), + [sym__list_marker_minus] = ACTIONS(1378), + [sym__list_marker_plus] = ACTIONS(1378), + [sym__list_marker_star] = ACTIONS(1378), + [sym__list_marker_parenthesis] = ACTIONS(1378), + [sym__list_marker_dot] = ACTIONS(1378), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1378), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1378), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1378), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1378), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1378), + [sym__fenced_code_block_start_backtick] = ACTIONS(1378), + [sym__fenced_code_block_start_tilde] = ACTIONS(1378), + [sym__blank_line_start] = ACTIONS(1599), + [sym__code_span_start] = ACTIONS(1378), + [sym__emphasis_open_star] = ACTIONS(1378), + [sym__emphasis_open_underscore] = ACTIONS(1378), }, [323] = { - [sym__indented_chunk] = STATE(323), - [sym__blank_line] = STATE(323), - [aux_sym_indented_code_block_repeat1] = STATE(323), - [anon_sym_BANG] = ACTIONS(1248), - [anon_sym_DQUOTE] = ACTIONS(1248), - [anon_sym_POUND] = ACTIONS(1248), - [anon_sym_DOLLAR] = ACTIONS(1248), - [anon_sym_PERCENT] = ACTIONS(1248), - [anon_sym_AMP] = ACTIONS(1250), - [anon_sym_SQUOTE] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1248), - [anon_sym_RPAREN] = ACTIONS(1248), - [anon_sym_STAR] = ACTIONS(1248), - [anon_sym_PLUS] = ACTIONS(1248), - [anon_sym_COMMA] = ACTIONS(1248), - [anon_sym_DASH] = ACTIONS(1248), - [anon_sym_DOT] = ACTIONS(1248), - [anon_sym_SLASH] = ACTIONS(1248), - [anon_sym_COLON] = ACTIONS(1248), - [anon_sym_SEMI] = ACTIONS(1248), - [anon_sym_LT] = ACTIONS(1250), - [anon_sym_EQ] = ACTIONS(1248), - [anon_sym_GT] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(1248), - [anon_sym_AT] = ACTIONS(1248), - [anon_sym_LBRACK] = ACTIONS(1248), - [anon_sym_BSLASH] = ACTIONS(1250), - [anon_sym_RBRACK] = ACTIONS(1248), - [anon_sym_CARET] = ACTIONS(1248), - [anon_sym__] = ACTIONS(1248), - [anon_sym_BQUOTE] = ACTIONS(1248), - [anon_sym_LBRACE] = ACTIONS(1248), - [anon_sym_PIPE] = ACTIONS(1248), - [anon_sym_RBRACE] = ACTIONS(1248), - [anon_sym_TILDE] = ACTIONS(1248), - [aux_sym__html_block_1_token1] = ACTIONS(1248), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1250), - [anon_sym_LT_QMARK] = ACTIONS(1250), - [aux_sym__html_block_4_token1] = ACTIONS(1250), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1248), - [aux_sym__html_block_6_token1] = ACTIONS(1250), - [aux_sym__html_block_6_token2] = ACTIONS(1248), - [sym__open_tag_html_block] = ACTIONS(1248), - [sym__open_tag_html_block_newline] = ACTIONS(1248), - [sym__closing_tag_html_block] = ACTIONS(1248), - [sym__closing_tag_html_block_newline] = ACTIONS(1248), - [sym_backslash_escape] = ACTIONS(1248), - [sym_entity_reference] = ACTIONS(1248), - [sym_numeric_character_reference] = ACTIONS(1248), - [sym_uri_autolink] = ACTIONS(1248), - [sym_email_autolink] = ACTIONS(1248), - [sym__whitespace_ge_2] = ACTIONS(1248), - [aux_sym__whitespace_token1] = ACTIONS(1250), - [sym__word_no_digit] = ACTIONS(1248), - [sym__digits] = ACTIONS(1248), - [aux_sym__newline_token1] = ACTIONS(1248), - [sym__block_close] = ACTIONS(1248), - [sym__block_quote_start] = ACTIONS(1248), - [sym__indented_chunk_start] = ACTIONS(1552), - [sym_atx_h1_marker] = ACTIONS(1248), - [sym_atx_h2_marker] = ACTIONS(1248), - [sym_atx_h3_marker] = ACTIONS(1248), - [sym_atx_h4_marker] = ACTIONS(1248), - [sym_atx_h5_marker] = ACTIONS(1248), - [sym_atx_h6_marker] = ACTIONS(1248), - [sym__thematic_break] = ACTIONS(1248), - [sym__list_marker_minus] = ACTIONS(1248), - [sym__list_marker_plus] = ACTIONS(1248), - [sym__list_marker_star] = ACTIONS(1248), - [sym__list_marker_parenthesis] = ACTIONS(1248), - [sym__list_marker_dot] = ACTIONS(1248), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1248), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1248), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1248), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1248), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1248), - [sym__fenced_code_block_start_backtick] = ACTIONS(1248), - [sym__fenced_code_block_start_tilde] = ACTIONS(1248), - [sym__blank_line_start] = ACTIONS(1555), - [sym__code_span_start] = ACTIONS(1248), - [sym__emphasis_open_star] = ACTIONS(1248), - [sym__emphasis_open_underscore] = ACTIONS(1248), + [sym_link_title] = STATE(2274), + [sym__whitespace] = STATE(2092), + [anon_sym_BANG] = ACTIONS(1575), + [anon_sym_DQUOTE] = ACTIONS(1577), + [anon_sym_POUND] = ACTIONS(1575), + [anon_sym_DOLLAR] = ACTIONS(1575), + [anon_sym_PERCENT] = ACTIONS(1575), + [anon_sym_AMP] = ACTIONS(1580), + [anon_sym_SQUOTE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_RPAREN] = ACTIONS(1575), + [anon_sym_STAR] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1575), + [anon_sym_COMMA] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1575), + [anon_sym_DOT] = ACTIONS(1575), + [anon_sym_SLASH] = ACTIONS(1575), + [anon_sym_COLON] = ACTIONS(1575), + [anon_sym_SEMI] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_EQ] = ACTIONS(1575), + [anon_sym_GT] = ACTIONS(1575), + [anon_sym_QMARK] = ACTIONS(1575), + [anon_sym_AT] = ACTIONS(1575), + [anon_sym_LBRACK] = ACTIONS(1575), + [anon_sym_BSLASH] = ACTIONS(1580), + [anon_sym_RBRACK] = ACTIONS(1575), + [anon_sym_CARET] = ACTIONS(1575), + [anon_sym__] = ACTIONS(1575), + [anon_sym_BQUOTE] = ACTIONS(1575), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_PIPE] = ACTIONS(1575), + [anon_sym_RBRACE] = ACTIONS(1575), + [anon_sym_TILDE] = ACTIONS(1575), + [aux_sym__html_block_1_token1] = ACTIONS(1575), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1580), + [anon_sym_LT_QMARK] = ACTIONS(1580), + [aux_sym__html_block_4_token1] = ACTIONS(1580), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1575), + [aux_sym__html_block_6_token1] = ACTIONS(1580), + [aux_sym__html_block_6_token2] = ACTIONS(1575), + [sym__open_tag_html_block] = ACTIONS(1575), + [sym__open_tag_html_block_newline] = ACTIONS(1575), + [sym__closing_tag_html_block] = ACTIONS(1575), + [sym__closing_tag_html_block_newline] = ACTIONS(1575), + [sym_backslash_escape] = ACTIONS(1575), + [sym_entity_reference] = ACTIONS(1575), + [sym_numeric_character_reference] = ACTIONS(1575), + [sym_uri_autolink] = ACTIONS(1575), + [sym_email_autolink] = ACTIONS(1575), + [sym__whitespace_ge_2] = ACTIONS(1588), + [aux_sym__whitespace_token1] = ACTIONS(1591), + [sym__word_no_digit] = ACTIONS(1575), + [sym__digits] = ACTIONS(1575), + [aux_sym__newline_token1] = ACTIONS(1575), + [sym__block_close] = ACTIONS(1575), + [sym__block_quote_start] = ACTIONS(1575), + [sym__indented_chunk_start] = ACTIONS(1575), + [sym_atx_h1_marker] = ACTIONS(1575), + [sym_atx_h2_marker] = ACTIONS(1575), + [sym_atx_h3_marker] = ACTIONS(1575), + [sym_atx_h4_marker] = ACTIONS(1575), + [sym_atx_h5_marker] = ACTIONS(1575), + [sym_atx_h6_marker] = ACTIONS(1575), + [sym__thematic_break] = ACTIONS(1575), + [sym__list_marker_minus] = ACTIONS(1575), + [sym__list_marker_plus] = ACTIONS(1575), + [sym__list_marker_star] = ACTIONS(1575), + [sym__list_marker_parenthesis] = ACTIONS(1575), + [sym__list_marker_dot] = ACTIONS(1575), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1575), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1575), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1575), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1575), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1575), + [sym__fenced_code_block_start_backtick] = ACTIONS(1575), + [sym__fenced_code_block_start_tilde] = ACTIONS(1575), + [sym__blank_line_start] = ACTIONS(1575), + [sym__no_indented_chunk] = ACTIONS(1602), + [sym__code_span_start] = ACTIONS(1575), + [sym__emphasis_open_star] = ACTIONS(1575), + [sym__emphasis_open_underscore] = ACTIONS(1575), }, [324] = { - [sym__indented_chunk] = STATE(287), - [sym__blank_line] = STATE(287), - [aux_sym_indented_code_block_repeat1] = STATE(287), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_DQUOTE] = ACTIONS(1331), - [anon_sym_POUND] = ACTIONS(1331), - [anon_sym_DOLLAR] = ACTIONS(1331), - [anon_sym_PERCENT] = ACTIONS(1331), - [anon_sym_AMP] = ACTIONS(1333), - [anon_sym_SQUOTE] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(1331), - [anon_sym_RPAREN] = ACTIONS(1331), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_PLUS] = ACTIONS(1331), - [anon_sym_COMMA] = ACTIONS(1331), - [anon_sym_DASH] = ACTIONS(1331), - [anon_sym_DOT] = ACTIONS(1331), - [anon_sym_SLASH] = ACTIONS(1331), - [anon_sym_COLON] = ACTIONS(1331), - [anon_sym_SEMI] = ACTIONS(1331), - [anon_sym_LT] = ACTIONS(1333), - [anon_sym_EQ] = ACTIONS(1331), - [anon_sym_GT] = ACTIONS(1331), - [anon_sym_QMARK] = ACTIONS(1331), - [anon_sym_AT] = ACTIONS(1331), - [anon_sym_LBRACK] = ACTIONS(1331), - [anon_sym_BSLASH] = ACTIONS(1333), - [anon_sym_RBRACK] = ACTIONS(1331), - [anon_sym_CARET] = ACTIONS(1331), - [anon_sym__] = ACTIONS(1331), - [anon_sym_BQUOTE] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1331), - [anon_sym_RBRACE] = ACTIONS(1331), - [anon_sym_TILDE] = ACTIONS(1331), - [aux_sym__html_block_1_token1] = ACTIONS(1331), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1333), - [anon_sym_LT_QMARK] = ACTIONS(1333), - [aux_sym__html_block_4_token1] = ACTIONS(1333), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1331), - [aux_sym__html_block_6_token1] = ACTIONS(1333), - [aux_sym__html_block_6_token2] = ACTIONS(1331), - [sym__open_tag_html_block] = ACTIONS(1331), - [sym__open_tag_html_block_newline] = ACTIONS(1331), - [sym__closing_tag_html_block] = ACTIONS(1331), - [sym__closing_tag_html_block_newline] = ACTIONS(1331), - [sym_backslash_escape] = ACTIONS(1331), - [sym_entity_reference] = ACTIONS(1331), - [sym_numeric_character_reference] = ACTIONS(1331), - [sym_uri_autolink] = ACTIONS(1331), - [sym_email_autolink] = ACTIONS(1331), - [sym__whitespace_ge_2] = ACTIONS(1331), - [aux_sym__whitespace_token1] = ACTIONS(1333), - [sym__word_no_digit] = ACTIONS(1331), - [sym__digits] = ACTIONS(1331), - [aux_sym__newline_token1] = ACTIONS(1331), - [sym__block_close] = ACTIONS(1331), - [sym__block_quote_start] = ACTIONS(1331), - [sym__indented_chunk_start] = ACTIONS(99), - [sym_atx_h1_marker] = ACTIONS(1331), - [sym_atx_h2_marker] = ACTIONS(1331), - [sym_atx_h3_marker] = ACTIONS(1331), - [sym_atx_h4_marker] = ACTIONS(1331), - [sym_atx_h5_marker] = ACTIONS(1331), - [sym_atx_h6_marker] = ACTIONS(1331), - [sym__thematic_break] = ACTIONS(1331), - [sym__list_marker_minus] = ACTIONS(1331), - [sym__list_marker_plus] = ACTIONS(1331), - [sym__list_marker_star] = ACTIONS(1331), - [sym__list_marker_parenthesis] = ACTIONS(1331), - [sym__list_marker_dot] = ACTIONS(1331), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1331), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1331), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1331), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1331), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1331), - [sym__fenced_code_block_start_backtick] = ACTIONS(1331), - [sym__fenced_code_block_start_tilde] = ACTIONS(1331), - [sym__blank_line_start] = ACTIONS(109), - [sym__code_span_start] = ACTIONS(1331), - [sym__emphasis_open_star] = ACTIONS(1331), - [sym__emphasis_open_underscore] = ACTIONS(1331), - }, - [325] = { - [sym__soft_line_break] = STATE(122), - [sym__link_text] = STATE(2133), - [sym__link_text_non_empty] = STATE(795), - [sym_shortcut_link] = STATE(122), - [sym_full_reference_link] = STATE(122), - [sym_collapsed_reference_link] = STATE(122), - [sym_inline_link] = STATE(122), - [sym_image] = STATE(122), - [sym__image_inline_link] = STATE(801), - [sym__image_shortcut_link] = STATE(801), - [sym__image_full_reference_link] = STATE(801), - [sym__image_collapsed_reference_link] = STATE(801), - [sym__image_description] = STATE(2122), - [sym__image_description_non_empty] = STATE(802), - [sym_html_tag] = STATE(122), - [sym__open_tag] = STATE(683), - [sym__closing_tag] = STATE(683), - [sym__html_comment] = STATE(683), - [sym__processing_instruction] = STATE(683), - [sym__declaration] = STATE(683), - [sym__cdata_section] = STATE(683), - [sym_hard_line_break] = STATE(122), - [sym__whitespace] = STATE(122), - [sym__word] = STATE(122), - [sym__newline] = STATE(2123), - [sym__inline_element_no_underscore] = STATE(122), - [aux_sym__inline_no_underscore] = STATE(122), - [sym__text_inline_no_underscore] = STATE(122), - [sym__emphasis_star] = STATE(761), - [sym__strong_emphasis_star] = STATE(122), - [sym__emphasis_underscore] = STATE(753), - [sym__strong_emphasis_underscore] = STATE(122), - [sym__code_span] = STATE(122), - [anon_sym_BANG] = ACTIONS(1558), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_POUND] = ACTIONS(1561), - [anon_sym_DOLLAR] = ACTIONS(1561), - [anon_sym_PERCENT] = ACTIONS(1561), - [anon_sym_AMP] = ACTIONS(1564), - [anon_sym_SQUOTE] = ACTIONS(1561), - [anon_sym_LPAREN] = ACTIONS(1561), - [anon_sym_RPAREN] = ACTIONS(1561), - [anon_sym_STAR] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1561), - [anon_sym_COMMA] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1561), - [anon_sym_DOT] = ACTIONS(1561), - [anon_sym_SLASH] = ACTIONS(1561), - [anon_sym_COLON] = ACTIONS(1561), - [anon_sym_SEMI] = ACTIONS(1561), - [anon_sym_LT] = ACTIONS(1567), - [anon_sym_EQ] = ACTIONS(1561), - [anon_sym_GT] = ACTIONS(1561), - [anon_sym_QMARK] = ACTIONS(1561), - [anon_sym_AT] = ACTIONS(1561), - [anon_sym_LBRACK] = ACTIONS(1570), - [anon_sym_BSLASH] = ACTIONS(1573), - [anon_sym_RBRACK] = ACTIONS(1561), - [anon_sym_CARET] = ACTIONS(1561), - [anon_sym__] = ACTIONS(1561), - [anon_sym_BQUOTE] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_PIPE] = ACTIONS(1561), - [anon_sym_RBRACE] = ACTIONS(1561), - [anon_sym_TILDE] = ACTIONS(1561), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1576), - [anon_sym_LT_QMARK] = ACTIONS(1579), - [aux_sym__html_block_4_token1] = ACTIONS(1582), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1585), - [sym_backslash_escape] = ACTIONS(1588), - [sym_entity_reference] = ACTIONS(1588), - [sym_numeric_character_reference] = ACTIONS(1588), - [sym_uri_autolink] = ACTIONS(1588), - [sym_email_autolink] = ACTIONS(1588), - [sym__whitespace_ge_2] = ACTIONS(1591), - [aux_sym__whitespace_token1] = ACTIONS(1594), - [sym__word_no_digit] = ACTIONS(1588), - [sym__digits] = ACTIONS(1588), - [aux_sym__newline_token1] = ACTIONS(1540), - [sym__code_span_start] = ACTIONS(1597), - [sym__emphasis_open_star] = ACTIONS(1600), - [sym__emphasis_open_underscore] = ACTIONS(1603), - }, - [326] = { - [sym_link_title] = STATE(2181), - [sym__whitespace] = STATE(2096), - [ts_builtin_sym_end] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1310), - [anon_sym_POUND] = ACTIONS(1308), - [anon_sym_DOLLAR] = ACTIONS(1308), - [anon_sym_PERCENT] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1313), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_RPAREN] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_COMMA] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_DOT] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(1308), - [anon_sym_COLON] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym_LT] = ACTIONS(1313), - [anon_sym_EQ] = ACTIONS(1308), - [anon_sym_GT] = ACTIONS(1308), - [anon_sym_QMARK] = ACTIONS(1308), - [anon_sym_AT] = ACTIONS(1308), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_BSLASH] = ACTIONS(1313), - [anon_sym_RBRACK] = ACTIONS(1308), - [anon_sym_CARET] = ACTIONS(1308), - [anon_sym__] = ACTIONS(1308), - [anon_sym_BQUOTE] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_PIPE] = ACTIONS(1308), - [anon_sym_RBRACE] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [aux_sym__html_block_1_token1] = ACTIONS(1308), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1313), - [anon_sym_LT_QMARK] = ACTIONS(1313), - [aux_sym__html_block_4_token1] = ACTIONS(1313), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1308), - [aux_sym__html_block_6_token1] = ACTIONS(1313), - [aux_sym__html_block_6_token2] = ACTIONS(1308), - [sym__open_tag_html_block] = ACTIONS(1308), - [sym__open_tag_html_block_newline] = ACTIONS(1308), - [sym__closing_tag_html_block] = ACTIONS(1308), - [sym__closing_tag_html_block_newline] = ACTIONS(1308), - [sym_backslash_escape] = ACTIONS(1308), - [sym_entity_reference] = ACTIONS(1308), - [sym_numeric_character_reference] = ACTIONS(1308), - [sym_uri_autolink] = ACTIONS(1308), - [sym_email_autolink] = ACTIONS(1308), - [sym__whitespace_ge_2] = ACTIONS(1321), - [aux_sym__whitespace_token1] = ACTIONS(1324), - [sym__word_no_digit] = ACTIONS(1308), - [sym__digits] = ACTIONS(1308), - [aux_sym__newline_token1] = ACTIONS(1308), - [sym__block_quote_start] = ACTIONS(1308), - [sym__indented_chunk_start] = ACTIONS(1308), - [sym_atx_h1_marker] = ACTIONS(1308), - [sym_atx_h2_marker] = ACTIONS(1308), - [sym_atx_h3_marker] = ACTIONS(1308), - [sym_atx_h4_marker] = ACTIONS(1308), - [sym_atx_h5_marker] = ACTIONS(1308), - [sym_atx_h6_marker] = ACTIONS(1308), - [sym__thematic_break] = ACTIONS(1308), - [sym__list_marker_minus] = ACTIONS(1308), - [sym__list_marker_plus] = ACTIONS(1308), - [sym__list_marker_star] = ACTIONS(1308), - [sym__list_marker_parenthesis] = ACTIONS(1308), - [sym__list_marker_dot] = ACTIONS(1308), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1308), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1308), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1308), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1308), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1308), - [sym__fenced_code_block_start_backtick] = ACTIONS(1308), - [sym__fenced_code_block_start_tilde] = ACTIONS(1308), - [sym__blank_line_start] = ACTIONS(1308), - [sym__no_indented_chunk] = ACTIONS(1606), - [sym__code_span_start] = ACTIONS(1308), - [sym__emphasis_open_star] = ACTIONS(1308), - [sym__emphasis_open_underscore] = ACTIONS(1308), - }, - [327] = { - [sym__soft_line_break] = STATE(899), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), - [sym__whitespace] = STATE(899), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(304), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), + [sym__soft_line_break] = STATE(825), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), + [sym__whitespace] = STATE(825), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(290), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -60570,9 +60325,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(7), [anon_sym_AT] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(971), [anon_sym_BSLASH] = ACTIONS(15), - [anon_sym_RBRACK] = ACTIONS(1608), + [anon_sym_RBRACK] = ACTIONS(1604), [anon_sym_CARET] = ACTIONS(7), [anon_sym__] = ACTIONS(7), [anon_sym_BQUOTE] = ACTIONS(7), @@ -60580,17 +60335,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), [anon_sym_TILDE] = ACTIONS(7), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(848), - [anon_sym_LT_QMARK] = ACTIONS(850), - [aux_sym__html_block_4_token1] = ACTIONS(852), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(854), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(973), + [anon_sym_LT_QMARK] = ACTIONS(975), + [aux_sym__html_block_4_token1] = ACTIONS(977), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(979), [sym_backslash_escape] = ACTIONS(35), [sym_entity_reference] = ACTIONS(35), [sym_numeric_character_reference] = ACTIONS(35), [sym_uri_autolink] = ACTIONS(35), [sym_email_autolink] = ACTIONS(35), - [sym__whitespace_ge_2] = ACTIONS(856), - [aux_sym__whitespace_token1] = ACTIONS(858), + [sym__whitespace_ge_2] = ACTIONS(981), + [aux_sym__whitespace_token1] = ACTIONS(983), [sym__word_no_digit] = ACTIONS(35), [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), @@ -60598,40 +60353,460 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, + [325] = { + [sym_list_marker_dot] = STATE(2), + [sym__list_item_dot] = STATE(299), + [aux_sym__list_dot_repeat1] = STATE(299), + [anon_sym_BANG] = ACTIONS(1424), + [anon_sym_DQUOTE] = ACTIONS(1424), + [anon_sym_POUND] = ACTIONS(1424), + [anon_sym_DOLLAR] = ACTIONS(1424), + [anon_sym_PERCENT] = ACTIONS(1424), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_LPAREN] = ACTIONS(1424), + [anon_sym_RPAREN] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(1424), + [anon_sym_COMMA] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1424), + [anon_sym_DOT] = ACTIONS(1424), + [anon_sym_SLASH] = ACTIONS(1424), + [anon_sym_COLON] = ACTIONS(1424), + [anon_sym_SEMI] = ACTIONS(1424), + [anon_sym_LT] = ACTIONS(1426), + [anon_sym_EQ] = ACTIONS(1424), + [anon_sym_GT] = ACTIONS(1424), + [anon_sym_QMARK] = ACTIONS(1424), + [anon_sym_AT] = ACTIONS(1424), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_BSLASH] = ACTIONS(1426), + [anon_sym_RBRACK] = ACTIONS(1424), + [anon_sym_CARET] = ACTIONS(1424), + [anon_sym__] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_PIPE] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(1424), + [anon_sym_TILDE] = ACTIONS(1424), + [aux_sym__html_block_1_token1] = ACTIONS(1424), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1426), + [anon_sym_LT_QMARK] = ACTIONS(1426), + [aux_sym__html_block_4_token1] = ACTIONS(1426), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1424), + [aux_sym__html_block_6_token1] = ACTIONS(1426), + [aux_sym__html_block_6_token2] = ACTIONS(1424), + [sym__open_tag_html_block] = ACTIONS(1424), + [sym__open_tag_html_block_newline] = ACTIONS(1424), + [sym__closing_tag_html_block] = ACTIONS(1424), + [sym__closing_tag_html_block_newline] = ACTIONS(1424), + [sym_backslash_escape] = ACTIONS(1424), + [sym_entity_reference] = ACTIONS(1424), + [sym_numeric_character_reference] = ACTIONS(1424), + [sym_uri_autolink] = ACTIONS(1424), + [sym_email_autolink] = ACTIONS(1424), + [sym__whitespace_ge_2] = ACTIONS(1424), + [aux_sym__whitespace_token1] = ACTIONS(1426), + [sym__word_no_digit] = ACTIONS(1424), + [sym__digits] = ACTIONS(1424), + [aux_sym__newline_token1] = ACTIONS(1424), + [sym__block_close] = ACTIONS(1424), + [sym__block_quote_start] = ACTIONS(1424), + [sym__indented_chunk_start] = ACTIONS(1424), + [sym_atx_h1_marker] = ACTIONS(1424), + [sym_atx_h2_marker] = ACTIONS(1424), + [sym_atx_h3_marker] = ACTIONS(1424), + [sym_atx_h4_marker] = ACTIONS(1424), + [sym_atx_h5_marker] = ACTIONS(1424), + [sym_atx_h6_marker] = ACTIONS(1424), + [sym__thematic_break] = ACTIONS(1424), + [sym__list_marker_minus] = ACTIONS(1424), + [sym__list_marker_plus] = ACTIONS(1424), + [sym__list_marker_star] = ACTIONS(1424), + [sym__list_marker_parenthesis] = ACTIONS(1424), + [sym__list_marker_dot] = ACTIONS(61), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1424), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1424), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1424), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1424), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), + [sym__fenced_code_block_start_backtick] = ACTIONS(1424), + [sym__fenced_code_block_start_tilde] = ACTIONS(1424), + [sym__blank_line_start] = ACTIONS(1424), + [sym__code_span_start] = ACTIONS(1424), + [sym__emphasis_open_star] = ACTIONS(1424), + [sym__emphasis_open_underscore] = ACTIONS(1424), + }, + [326] = { + [sym_list_marker_parenthesis] = STATE(19), + [sym__list_item_parenthesis] = STATE(298), + [aux_sym__list_parenthesis_repeat1] = STATE(298), + [anon_sym_BANG] = ACTIONS(1271), + [anon_sym_DQUOTE] = ACTIONS(1271), + [anon_sym_POUND] = ACTIONS(1271), + [anon_sym_DOLLAR] = ACTIONS(1271), + [anon_sym_PERCENT] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(1273), + [anon_sym_SQUOTE] = ACTIONS(1271), + [anon_sym_LPAREN] = ACTIONS(1271), + [anon_sym_RPAREN] = ACTIONS(1271), + [anon_sym_STAR] = ACTIONS(1271), + [anon_sym_PLUS] = ACTIONS(1271), + [anon_sym_COMMA] = ACTIONS(1271), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_DOT] = ACTIONS(1271), + [anon_sym_SLASH] = ACTIONS(1271), + [anon_sym_COLON] = ACTIONS(1271), + [anon_sym_SEMI] = ACTIONS(1271), + [anon_sym_LT] = ACTIONS(1273), + [anon_sym_EQ] = ACTIONS(1271), + [anon_sym_GT] = ACTIONS(1271), + [anon_sym_QMARK] = ACTIONS(1271), + [anon_sym_AT] = ACTIONS(1271), + [anon_sym_LBRACK] = ACTIONS(1271), + [anon_sym_BSLASH] = ACTIONS(1273), + [anon_sym_RBRACK] = ACTIONS(1271), + [anon_sym_CARET] = ACTIONS(1271), + [anon_sym__] = ACTIONS(1271), + [anon_sym_BQUOTE] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(1271), + [anon_sym_PIPE] = ACTIONS(1271), + [anon_sym_RBRACE] = ACTIONS(1271), + [anon_sym_TILDE] = ACTIONS(1271), + [aux_sym__html_block_1_token1] = ACTIONS(1271), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1273), + [anon_sym_LT_QMARK] = ACTIONS(1273), + [aux_sym__html_block_4_token1] = ACTIONS(1273), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1271), + [aux_sym__html_block_6_token1] = ACTIONS(1273), + [aux_sym__html_block_6_token2] = ACTIONS(1271), + [sym__open_tag_html_block] = ACTIONS(1271), + [sym__open_tag_html_block_newline] = ACTIONS(1271), + [sym__closing_tag_html_block] = ACTIONS(1271), + [sym__closing_tag_html_block_newline] = ACTIONS(1271), + [sym_backslash_escape] = ACTIONS(1271), + [sym_entity_reference] = ACTIONS(1271), + [sym_numeric_character_reference] = ACTIONS(1271), + [sym_uri_autolink] = ACTIONS(1271), + [sym_email_autolink] = ACTIONS(1271), + [sym__whitespace_ge_2] = ACTIONS(1271), + [aux_sym__whitespace_token1] = ACTIONS(1273), + [sym__word_no_digit] = ACTIONS(1271), + [sym__digits] = ACTIONS(1271), + [aux_sym__newline_token1] = ACTIONS(1271), + [sym__block_close] = ACTIONS(1271), + [sym__block_quote_start] = ACTIONS(1271), + [sym__indented_chunk_start] = ACTIONS(1271), + [sym_atx_h1_marker] = ACTIONS(1271), + [sym_atx_h2_marker] = ACTIONS(1271), + [sym_atx_h3_marker] = ACTIONS(1271), + [sym_atx_h4_marker] = ACTIONS(1271), + [sym_atx_h5_marker] = ACTIONS(1271), + [sym_atx_h6_marker] = ACTIONS(1271), + [sym__thematic_break] = ACTIONS(1271), + [sym__list_marker_minus] = ACTIONS(1271), + [sym__list_marker_plus] = ACTIONS(1271), + [sym__list_marker_star] = ACTIONS(1271), + [sym__list_marker_parenthesis] = ACTIONS(59), + [sym__list_marker_dot] = ACTIONS(1271), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1271), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1271), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1271), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1271), + [sym__fenced_code_block_start_backtick] = ACTIONS(1271), + [sym__fenced_code_block_start_tilde] = ACTIONS(1271), + [sym__blank_line_start] = ACTIONS(1271), + [sym__code_span_start] = ACTIONS(1271), + [sym__emphasis_open_star] = ACTIONS(1271), + [sym__emphasis_open_underscore] = ACTIONS(1271), + }, + [327] = { + [sym_link_title] = STATE(2250), + [sym__whitespace] = STATE(2101), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_DQUOTE] = ACTIONS(1277), + [anon_sym_POUND] = ACTIONS(1275), + [anon_sym_DOLLAR] = ACTIONS(1275), + [anon_sym_PERCENT] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(1280), + [anon_sym_SQUOTE] = ACTIONS(1282), + [anon_sym_LPAREN] = ACTIONS(1285), + [anon_sym_RPAREN] = ACTIONS(1275), + [anon_sym_STAR] = ACTIONS(1275), + [anon_sym_PLUS] = ACTIONS(1275), + [anon_sym_COMMA] = ACTIONS(1275), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_DOT] = ACTIONS(1275), + [anon_sym_SLASH] = ACTIONS(1275), + [anon_sym_COLON] = ACTIONS(1275), + [anon_sym_SEMI] = ACTIONS(1275), + [anon_sym_LT] = ACTIONS(1280), + [anon_sym_EQ] = ACTIONS(1275), + [anon_sym_GT] = ACTIONS(1275), + [anon_sym_QMARK] = ACTIONS(1275), + [anon_sym_AT] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(1275), + [anon_sym_BSLASH] = ACTIONS(1280), + [anon_sym_RBRACK] = ACTIONS(1275), + [anon_sym_CARET] = ACTIONS(1275), + [anon_sym__] = ACTIONS(1275), + [anon_sym_BQUOTE] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(1275), + [anon_sym_PIPE] = ACTIONS(1275), + [anon_sym_RBRACE] = ACTIONS(1275), + [anon_sym_TILDE] = ACTIONS(1275), + [aux_sym__html_block_1_token1] = ACTIONS(1275), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1280), + [anon_sym_LT_QMARK] = ACTIONS(1280), + [aux_sym__html_block_4_token1] = ACTIONS(1280), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1275), + [aux_sym__html_block_6_token1] = ACTIONS(1280), + [aux_sym__html_block_6_token2] = ACTIONS(1275), + [sym__open_tag_html_block] = ACTIONS(1275), + [sym__open_tag_html_block_newline] = ACTIONS(1275), + [sym__closing_tag_html_block] = ACTIONS(1275), + [sym__closing_tag_html_block_newline] = ACTIONS(1275), + [sym_backslash_escape] = ACTIONS(1275), + [sym_entity_reference] = ACTIONS(1275), + [sym_numeric_character_reference] = ACTIONS(1275), + [sym_uri_autolink] = ACTIONS(1275), + [sym_email_autolink] = ACTIONS(1275), + [sym__whitespace_ge_2] = ACTIONS(1288), + [aux_sym__whitespace_token1] = ACTIONS(1291), + [sym__word_no_digit] = ACTIONS(1275), + [sym__digits] = ACTIONS(1275), + [aux_sym__newline_token1] = ACTIONS(1275), + [sym__block_close] = ACTIONS(1275), + [sym__block_quote_start] = ACTIONS(1275), + [sym__indented_chunk_start] = ACTIONS(1275), + [sym_atx_h1_marker] = ACTIONS(1275), + [sym_atx_h2_marker] = ACTIONS(1275), + [sym_atx_h3_marker] = ACTIONS(1275), + [sym_atx_h4_marker] = ACTIONS(1275), + [sym_atx_h5_marker] = ACTIONS(1275), + [sym_atx_h6_marker] = ACTIONS(1275), + [sym__thematic_break] = ACTIONS(1275), + [sym__list_marker_minus] = ACTIONS(1275), + [sym__list_marker_plus] = ACTIONS(1275), + [sym__list_marker_star] = ACTIONS(1275), + [sym__list_marker_parenthesis] = ACTIONS(1275), + [sym__list_marker_dot] = ACTIONS(1275), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1275), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1275), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1275), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1275), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1275), + [sym__fenced_code_block_start_backtick] = ACTIONS(1275), + [sym__fenced_code_block_start_tilde] = ACTIONS(1275), + [sym__blank_line_start] = ACTIONS(1275), + [sym__no_indented_chunk] = ACTIONS(1606), + [sym__code_span_start] = ACTIONS(1275), + [sym__emphasis_open_star] = ACTIONS(1275), + [sym__emphasis_open_underscore] = ACTIONS(1275), + }, [328] = { - [sym__soft_line_break] = STATE(899), - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), - [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(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(899), - [sym__whitespace] = STATE(899), - [sym__word] = STATE(899), - [sym__newline] = STATE(2134), - [sym__inline_element] = STATE(899), - [aux_sym__inline] = STATE(315), - [sym__text_inline] = STATE(899), - [sym__emphasis_star] = STATE(897), - [sym__strong_emphasis_star] = STATE(899), - [sym__emphasis_underscore] = STATE(897), - [sym__strong_emphasis_underscore] = STATE(899), - [sym__code_span] = STATE(899), + [sym__indented_chunk] = STATE(322), + [sym__blank_line] = STATE(322), + [aux_sym_indented_code_block_repeat1] = STATE(322), + [ts_builtin_sym_end] = ACTIONS(1548), + [anon_sym_BANG] = ACTIONS(1548), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_POUND] = ACTIONS(1548), + [anon_sym_DOLLAR] = ACTIONS(1548), + [anon_sym_PERCENT] = ACTIONS(1548), + [anon_sym_AMP] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1548), + [anon_sym_LPAREN] = ACTIONS(1548), + [anon_sym_RPAREN] = ACTIONS(1548), + [anon_sym_STAR] = ACTIONS(1548), + [anon_sym_PLUS] = ACTIONS(1548), + [anon_sym_COMMA] = ACTIONS(1548), + [anon_sym_DASH] = ACTIONS(1548), + [anon_sym_DOT] = ACTIONS(1548), + [anon_sym_SLASH] = ACTIONS(1548), + [anon_sym_COLON] = ACTIONS(1548), + [anon_sym_SEMI] = ACTIONS(1548), + [anon_sym_LT] = ACTIONS(1550), + [anon_sym_EQ] = ACTIONS(1548), + [anon_sym_GT] = ACTIONS(1548), + [anon_sym_QMARK] = ACTIONS(1548), + [anon_sym_AT] = ACTIONS(1548), + [anon_sym_LBRACK] = ACTIONS(1548), + [anon_sym_BSLASH] = ACTIONS(1550), + [anon_sym_RBRACK] = ACTIONS(1548), + [anon_sym_CARET] = ACTIONS(1548), + [anon_sym__] = ACTIONS(1548), + [anon_sym_BQUOTE] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(1548), + [anon_sym_PIPE] = ACTIONS(1548), + [anon_sym_RBRACE] = ACTIONS(1548), + [anon_sym_TILDE] = ACTIONS(1548), + [aux_sym__html_block_1_token1] = ACTIONS(1548), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1550), + [anon_sym_LT_QMARK] = ACTIONS(1550), + [aux_sym__html_block_4_token1] = ACTIONS(1550), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1548), + [aux_sym__html_block_6_token1] = ACTIONS(1550), + [aux_sym__html_block_6_token2] = ACTIONS(1548), + [sym__open_tag_html_block] = ACTIONS(1548), + [sym__open_tag_html_block_newline] = ACTIONS(1548), + [sym__closing_tag_html_block] = ACTIONS(1548), + [sym__closing_tag_html_block_newline] = ACTIONS(1548), + [sym_backslash_escape] = ACTIONS(1548), + [sym_entity_reference] = ACTIONS(1548), + [sym_numeric_character_reference] = ACTIONS(1548), + [sym_uri_autolink] = ACTIONS(1548), + [sym_email_autolink] = ACTIONS(1548), + [sym__whitespace_ge_2] = ACTIONS(1548), + [aux_sym__whitespace_token1] = ACTIONS(1550), + [sym__word_no_digit] = ACTIONS(1548), + [sym__digits] = ACTIONS(1548), + [aux_sym__newline_token1] = ACTIONS(1548), + [sym__block_quote_start] = ACTIONS(1548), + [sym__indented_chunk_start] = ACTIONS(47), + [sym_atx_h1_marker] = ACTIONS(1548), + [sym_atx_h2_marker] = ACTIONS(1548), + [sym_atx_h3_marker] = ACTIONS(1548), + [sym_atx_h4_marker] = ACTIONS(1548), + [sym_atx_h5_marker] = ACTIONS(1548), + [sym_atx_h6_marker] = ACTIONS(1548), + [sym__thematic_break] = ACTIONS(1548), + [sym__list_marker_minus] = ACTIONS(1548), + [sym__list_marker_plus] = ACTIONS(1548), + [sym__list_marker_star] = ACTIONS(1548), + [sym__list_marker_parenthesis] = ACTIONS(1548), + [sym__list_marker_dot] = ACTIONS(1548), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1548), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1548), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1548), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1548), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1548), + [sym__fenced_code_block_start_backtick] = ACTIONS(1548), + [sym__fenced_code_block_start_tilde] = ACTIONS(1548), + [sym__blank_line_start] = ACTIONS(67), + [sym__code_span_start] = ACTIONS(1548), + [sym__emphasis_open_star] = ACTIONS(1548), + [sym__emphasis_open_underscore] = ACTIONS(1548), + }, + [329] = { + [sym_link_title] = STATE(2249), + [sym__whitespace] = STATE(2095), + [anon_sym_BANG] = ACTIONS(1527), + [anon_sym_DQUOTE] = ACTIONS(1529), + [anon_sym_POUND] = ACTIONS(1527), + [anon_sym_DOLLAR] = ACTIONS(1527), + [anon_sym_PERCENT] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(1532), + [anon_sym_SQUOTE] = ACTIONS(1534), + [anon_sym_LPAREN] = ACTIONS(1537), + [anon_sym_RPAREN] = ACTIONS(1527), + [anon_sym_STAR] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1527), + [anon_sym_COMMA] = ACTIONS(1527), + [anon_sym_DASH] = ACTIONS(1527), + [anon_sym_DOT] = ACTIONS(1527), + [anon_sym_SLASH] = ACTIONS(1527), + [anon_sym_COLON] = ACTIONS(1527), + [anon_sym_SEMI] = ACTIONS(1527), + [anon_sym_LT] = ACTIONS(1532), + [anon_sym_EQ] = ACTIONS(1527), + [anon_sym_GT] = ACTIONS(1527), + [anon_sym_QMARK] = ACTIONS(1527), + [anon_sym_AT] = ACTIONS(1527), + [anon_sym_LBRACK] = ACTIONS(1527), + [anon_sym_BSLASH] = ACTIONS(1532), + [anon_sym_RBRACK] = ACTIONS(1527), + [anon_sym_CARET] = ACTIONS(1527), + [anon_sym__] = ACTIONS(1527), + [anon_sym_BQUOTE] = ACTIONS(1527), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_PIPE] = ACTIONS(1527), + [anon_sym_RBRACE] = ACTIONS(1527), + [anon_sym_TILDE] = ACTIONS(1527), + [aux_sym__html_block_1_token1] = ACTIONS(1527), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1532), + [anon_sym_LT_QMARK] = ACTIONS(1532), + [aux_sym__html_block_4_token1] = ACTIONS(1532), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1527), + [aux_sym__html_block_6_token1] = ACTIONS(1532), + [aux_sym__html_block_6_token2] = ACTIONS(1527), + [sym__open_tag_html_block] = ACTIONS(1527), + [sym__open_tag_html_block_newline] = ACTIONS(1527), + [sym__closing_tag_html_block] = ACTIONS(1527), + [sym__closing_tag_html_block_newline] = ACTIONS(1527), + [sym_backslash_escape] = ACTIONS(1527), + [sym_entity_reference] = ACTIONS(1527), + [sym_numeric_character_reference] = ACTIONS(1527), + [sym_uri_autolink] = ACTIONS(1527), + [sym_email_autolink] = ACTIONS(1527), + [sym__whitespace_ge_2] = ACTIONS(1540), + [aux_sym__whitespace_token1] = ACTIONS(1543), + [sym__word_no_digit] = ACTIONS(1527), + [sym__digits] = ACTIONS(1527), + [aux_sym__newline_token1] = ACTIONS(1527), + [sym__block_close] = ACTIONS(1527), + [sym__block_quote_start] = ACTIONS(1527), + [sym__indented_chunk_start] = ACTIONS(1527), + [sym_atx_h1_marker] = ACTIONS(1527), + [sym_atx_h2_marker] = ACTIONS(1527), + [sym_atx_h3_marker] = ACTIONS(1527), + [sym_atx_h4_marker] = ACTIONS(1527), + [sym_atx_h5_marker] = ACTIONS(1527), + [sym_atx_h6_marker] = ACTIONS(1527), + [sym__thematic_break] = ACTIONS(1527), + [sym__list_marker_minus] = ACTIONS(1527), + [sym__list_marker_plus] = ACTIONS(1527), + [sym__list_marker_star] = ACTIONS(1527), + [sym__list_marker_parenthesis] = ACTIONS(1527), + [sym__list_marker_dot] = ACTIONS(1527), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1527), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1527), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1527), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1527), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1527), + [sym__fenced_code_block_start_backtick] = ACTIONS(1527), + [sym__fenced_code_block_start_tilde] = ACTIONS(1527), + [sym__blank_line_start] = ACTIONS(1527), + [sym__no_indented_chunk] = ACTIONS(1608), + [sym__code_span_start] = ACTIONS(1527), + [sym__emphasis_open_star] = ACTIONS(1527), + [sym__emphasis_open_underscore] = ACTIONS(1527), + }, + [330] = { + [sym__soft_line_break] = STATE(825), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), + [sym_shortcut_link] = STATE(825), + [sym_full_reference_link] = STATE(825), + [sym_collapsed_reference_link] = STATE(825), + [sym_inline_link] = STATE(825), + [sym_image] = STATE(825), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(825), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(825), + [sym__whitespace] = STATE(825), + [sym__word] = STATE(825), + [sym__newline] = STATE(2141), + [sym__inline_element] = STATE(825), + [aux_sym__inline] = STATE(290), + [sym__text_inline] = STATE(825), + [sym__emphasis_star] = STATE(826), + [sym__strong_emphasis_star] = STATE(825), + [sym__emphasis_underscore] = STATE(826), + [sym__strong_emphasis_underscore] = STATE(825), + [sym__code_span] = STATE(825), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -60654,9 +60829,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(7), [anon_sym_AT] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(971), [anon_sym_BSLASH] = ACTIONS(15), - [anon_sym_RBRACK] = ACTIONS(1306), + [anon_sym_RBRACK] = ACTIONS(1610), [anon_sym_CARET] = ACTIONS(7), [anon_sym__] = ACTIONS(7), [anon_sym_BQUOTE] = ACTIONS(7), @@ -60664,17 +60839,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), [anon_sym_TILDE] = ACTIONS(7), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(848), - [anon_sym_LT_QMARK] = ACTIONS(850), - [aux_sym__html_block_4_token1] = ACTIONS(852), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(854), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(973), + [anon_sym_LT_QMARK] = ACTIONS(975), + [aux_sym__html_block_4_token1] = ACTIONS(977), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(979), [sym_backslash_escape] = ACTIONS(35), [sym_entity_reference] = ACTIONS(35), [sym_numeric_character_reference] = ACTIONS(35), [sym_uri_autolink] = ACTIONS(35), [sym_email_autolink] = ACTIONS(35), - [sym__whitespace_ge_2] = ACTIONS(856), - [aux_sym__whitespace_token1] = ACTIONS(858), + [sym__whitespace_ge_2] = ACTIONS(981), + [aux_sym__whitespace_token1] = ACTIONS(983), [sym__word_no_digit] = ACTIONS(35), [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), @@ -60682,207 +60857,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, - [329] = { - [sym_list_marker_parenthesis] = STATE(12), - [sym__list_item_parenthesis] = STATE(329), - [aux_sym__list_parenthesis_repeat1] = STATE(329), - [anon_sym_BANG] = ACTIONS(1494), - [anon_sym_DQUOTE] = ACTIONS(1494), - [anon_sym_POUND] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1494), - [anon_sym_PERCENT] = ACTIONS(1494), - [anon_sym_AMP] = ACTIONS(1496), - [anon_sym_SQUOTE] = ACTIONS(1494), - [anon_sym_LPAREN] = ACTIONS(1494), - [anon_sym_RPAREN] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1494), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_DOT] = ACTIONS(1494), - [anon_sym_SLASH] = ACTIONS(1494), - [anon_sym_COLON] = ACTIONS(1494), - [anon_sym_SEMI] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(1496), - [anon_sym_EQ] = ACTIONS(1494), - [anon_sym_GT] = ACTIONS(1494), - [anon_sym_QMARK] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(1494), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_BSLASH] = ACTIONS(1496), - [anon_sym_RBRACK] = ACTIONS(1494), - [anon_sym_CARET] = ACTIONS(1494), - [anon_sym__] = ACTIONS(1494), - [anon_sym_BQUOTE] = ACTIONS(1494), - [anon_sym_LBRACE] = ACTIONS(1494), - [anon_sym_PIPE] = ACTIONS(1494), - [anon_sym_RBRACE] = ACTIONS(1494), - [anon_sym_TILDE] = ACTIONS(1494), - [aux_sym__html_block_1_token1] = ACTIONS(1494), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1496), - [anon_sym_LT_QMARK] = ACTIONS(1496), - [aux_sym__html_block_4_token1] = ACTIONS(1496), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1494), - [aux_sym__html_block_6_token1] = ACTIONS(1496), - [aux_sym__html_block_6_token2] = ACTIONS(1494), - [sym__open_tag_html_block] = ACTIONS(1494), - [sym__open_tag_html_block_newline] = ACTIONS(1494), - [sym__closing_tag_html_block] = ACTIONS(1494), - [sym__closing_tag_html_block_newline] = ACTIONS(1494), - [sym_backslash_escape] = ACTIONS(1494), - [sym_entity_reference] = ACTIONS(1494), - [sym_numeric_character_reference] = ACTIONS(1494), - [sym_uri_autolink] = ACTIONS(1494), - [sym_email_autolink] = ACTIONS(1494), - [sym__whitespace_ge_2] = ACTIONS(1494), - [aux_sym__whitespace_token1] = ACTIONS(1496), - [sym__word_no_digit] = ACTIONS(1494), - [sym__digits] = ACTIONS(1494), - [aux_sym__newline_token1] = ACTIONS(1494), - [sym__block_close] = ACTIONS(1494), - [sym__block_quote_start] = ACTIONS(1494), - [sym__indented_chunk_start] = ACTIONS(1494), - [sym_atx_h1_marker] = ACTIONS(1494), - [sym_atx_h2_marker] = ACTIONS(1494), - [sym_atx_h3_marker] = ACTIONS(1494), - [sym_atx_h4_marker] = ACTIONS(1494), - [sym_atx_h5_marker] = ACTIONS(1494), - [sym_atx_h6_marker] = ACTIONS(1494), - [sym__thematic_break] = ACTIONS(1494), - [sym__list_marker_minus] = ACTIONS(1494), - [sym__list_marker_plus] = ACTIONS(1494), - [sym__list_marker_star] = ACTIONS(1494), - [sym__list_marker_parenthesis] = ACTIONS(1498), - [sym__list_marker_dot] = ACTIONS(1494), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1494), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1494), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1494), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1498), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1494), - [sym__fenced_code_block_start_backtick] = ACTIONS(1494), - [sym__fenced_code_block_start_tilde] = ACTIONS(1494), - [sym__blank_line_start] = ACTIONS(1494), - [sym__code_span_start] = ACTIONS(1494), - [sym__emphasis_open_star] = ACTIONS(1494), - [sym__emphasis_open_underscore] = ACTIONS(1494), - }, - [330] = { - [sym_link_title] = STATE(2193), - [sym__whitespace] = STATE(2092), - [ts_builtin_sym_end] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1285), - [anon_sym_DQUOTE] = ACTIONS(1287), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_PERCENT] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1292), - [anon_sym_LPAREN] = ACTIONS(1295), - [anon_sym_RPAREN] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1285), - [anon_sym_DOT] = ACTIONS(1285), - [anon_sym_SLASH] = ACTIONS(1285), - [anon_sym_COLON] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_LT] = ACTIONS(1290), - [anon_sym_EQ] = ACTIONS(1285), - [anon_sym_GT] = ACTIONS(1285), - [anon_sym_QMARK] = ACTIONS(1285), - [anon_sym_AT] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1285), - [anon_sym_BSLASH] = ACTIONS(1290), - [anon_sym_RBRACK] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1285), - [anon_sym__] = ACTIONS(1285), - [anon_sym_BQUOTE] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1285), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_RBRACE] = ACTIONS(1285), - [anon_sym_TILDE] = ACTIONS(1285), - [aux_sym__html_block_1_token1] = ACTIONS(1285), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1290), - [anon_sym_LT_QMARK] = ACTIONS(1290), - [aux_sym__html_block_4_token1] = ACTIONS(1290), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1285), - [aux_sym__html_block_6_token1] = ACTIONS(1290), - [aux_sym__html_block_6_token2] = ACTIONS(1285), - [sym__open_tag_html_block] = ACTIONS(1285), - [sym__open_tag_html_block_newline] = ACTIONS(1285), - [sym__closing_tag_html_block] = ACTIONS(1285), - [sym__closing_tag_html_block_newline] = ACTIONS(1285), - [sym_backslash_escape] = ACTIONS(1285), - [sym_entity_reference] = ACTIONS(1285), - [sym_numeric_character_reference] = ACTIONS(1285), - [sym_uri_autolink] = ACTIONS(1285), - [sym_email_autolink] = ACTIONS(1285), - [sym__whitespace_ge_2] = ACTIONS(1298), - [aux_sym__whitespace_token1] = ACTIONS(1301), - [sym__word_no_digit] = ACTIONS(1285), - [sym__digits] = ACTIONS(1285), - [aux_sym__newline_token1] = ACTIONS(1285), - [sym__block_quote_start] = ACTIONS(1285), - [sym__indented_chunk_start] = ACTIONS(1285), - [sym_atx_h1_marker] = ACTIONS(1285), - [sym_atx_h2_marker] = ACTIONS(1285), - [sym_atx_h3_marker] = ACTIONS(1285), - [sym_atx_h4_marker] = ACTIONS(1285), - [sym_atx_h5_marker] = ACTIONS(1285), - [sym_atx_h6_marker] = ACTIONS(1285), - [sym__thematic_break] = ACTIONS(1285), - [sym__list_marker_minus] = ACTIONS(1285), - [sym__list_marker_plus] = ACTIONS(1285), - [sym__list_marker_star] = ACTIONS(1285), - [sym__list_marker_parenthesis] = ACTIONS(1285), - [sym__list_marker_dot] = ACTIONS(1285), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1285), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1285), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1285), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1285), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1285), - [sym__fenced_code_block_start_backtick] = ACTIONS(1285), - [sym__fenced_code_block_start_tilde] = ACTIONS(1285), - [sym__blank_line_start] = ACTIONS(1285), - [sym__no_indented_chunk] = ACTIONS(1610), - [sym__code_span_start] = ACTIONS(1285), - [sym__emphasis_open_star] = ACTIONS(1285), - [sym__emphasis_open_underscore] = ACTIONS(1285), - }, [331] = { - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), - [sym_shortcut_link] = STATE(850), - [sym_full_reference_link] = STATE(850), - [sym_collapsed_reference_link] = STATE(850), - [sym_inline_link] = STATE(850), - [sym_image] = STATE(850), - [sym__image_inline_link] = STATE(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(850), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(850), - [sym__whitespace] = STATE(850), - [sym__word] = STATE(850), - [sym__newline] = STATE(1841), - [sym__text_inline] = STATE(850), - [sym__inline_element_no_newline] = STATE(850), - [aux_sym__inline_no_newline] = STATE(365), - [sym__emphasis_star_no_newline] = STATE(833), - [sym__strong_emphasis_star_no_newline] = STATE(850), - [sym__emphasis_underscore_no_newline] = STATE(833), - [sym__strong_emphasis_underscore_no_newline] = STATE(850), - [sym__code_span_no_newline] = STATE(850), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), + [sym_shortcut_link] = STATE(827), + [sym_full_reference_link] = STATE(827), + [sym_collapsed_reference_link] = STATE(827), + [sym_inline_link] = STATE(827), + [sym_image] = STATE(827), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(827), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(827), + [sym__whitespace] = STATE(827), + [sym__word] = STATE(827), + [sym__newline] = STATE(1840), + [sym__text_inline] = STATE(827), + [sym__inline_element_no_newline] = STATE(827), + [aux_sym__inline_no_newline] = STATE(373), + [sym__emphasis_star_no_newline] = STATE(828), + [sym__strong_emphasis_star_no_newline] = STATE(827), + [sym__emphasis_underscore_no_newline] = STATE(828), + [sym__strong_emphasis_underscore_no_newline] = STATE(827), + [sym__code_span_no_newline] = STATE(827), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -60905,7 +60912,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(7), [anon_sym_AT] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(971), [anon_sym_BSLASH] = ACTIONS(15), [anon_sym_RBRACK] = ACTIONS(7), [anon_sym_CARET] = ACTIONS(7), @@ -60915,17 +60922,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), [anon_sym_TILDE] = ACTIONS(7), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(848), - [anon_sym_LT_QMARK] = ACTIONS(850), - [aux_sym__html_block_4_token1] = ACTIONS(852), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(854), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(973), + [anon_sym_LT_QMARK] = ACTIONS(975), + [aux_sym__html_block_4_token1] = ACTIONS(977), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(979), [sym_backslash_escape] = ACTIONS(1612), [sym_entity_reference] = ACTIONS(1612), [sym_numeric_character_reference] = ACTIONS(1612), [sym_uri_autolink] = ACTIONS(1612), [sym_email_autolink] = ACTIONS(1612), - [sym__whitespace_ge_2] = ACTIONS(856), - [aux_sym__whitespace_token1] = ACTIONS(858), + [sym__whitespace_ge_2] = ACTIONS(981), + [aux_sym__whitespace_token1] = ACTIONS(983), [sym__word_no_digit] = ACTIONS(1612), [sym__digits] = ACTIONS(1612), [aux_sym__newline_token1] = ACTIONS(1614), @@ -60934,38 +60941,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_underscore] = ACTIONS(1620), }, [332] = { - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), - [sym_shortcut_link] = STATE(850), - [sym_full_reference_link] = STATE(850), - [sym_collapsed_reference_link] = STATE(850), - [sym_inline_link] = STATE(850), - [sym_image] = STATE(850), - [sym__image_inline_link] = STATE(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(850), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(850), - [sym__whitespace] = STATE(850), - [sym__word] = STATE(850), - [sym__newline] = STATE(381), - [sym__text_inline] = STATE(850), - [sym__inline_element_no_newline] = STATE(850), - [aux_sym__inline_no_newline] = STATE(365), - [sym__emphasis_star_no_newline] = STATE(833), - [sym__strong_emphasis_star_no_newline] = STATE(850), - [sym__emphasis_underscore_no_newline] = STATE(833), - [sym__strong_emphasis_underscore_no_newline] = STATE(850), - [sym__code_span_no_newline] = STATE(850), + [anon_sym_BANG] = ACTIONS(1622), + [anon_sym_DQUOTE] = ACTIONS(1622), + [anon_sym_POUND] = ACTIONS(1622), + [anon_sym_DOLLAR] = ACTIONS(1622), + [anon_sym_PERCENT] = ACTIONS(1622), + [anon_sym_AMP] = ACTIONS(1624), + [anon_sym_SQUOTE] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(1622), + [anon_sym_RPAREN] = ACTIONS(1622), + [anon_sym_STAR] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1622), + [anon_sym_COMMA] = ACTIONS(1622), + [anon_sym_DASH] = ACTIONS(1622), + [anon_sym_DOT] = ACTIONS(1622), + [anon_sym_SLASH] = ACTIONS(1622), + [anon_sym_COLON] = ACTIONS(1622), + [anon_sym_SEMI] = ACTIONS(1622), + [anon_sym_LT] = ACTIONS(1624), + [anon_sym_EQ] = ACTIONS(1622), + [anon_sym_GT] = ACTIONS(1622), + [anon_sym_QMARK] = ACTIONS(1622), + [anon_sym_AT] = ACTIONS(1622), + [anon_sym_LBRACK] = ACTIONS(1622), + [anon_sym_BSLASH] = ACTIONS(1624), + [anon_sym_RBRACK] = ACTIONS(1622), + [anon_sym_CARET] = ACTIONS(1622), + [anon_sym__] = ACTIONS(1622), + [anon_sym_BQUOTE] = ACTIONS(1622), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_PIPE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1622), + [anon_sym_TILDE] = ACTIONS(1622), + [aux_sym__html_block_1_token1] = ACTIONS(1622), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1624), + [anon_sym_LT_QMARK] = ACTIONS(1624), + [aux_sym__html_block_4_token1] = ACTIONS(1624), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1622), + [aux_sym__html_block_6_token1] = ACTIONS(1624), + [aux_sym__html_block_6_token2] = ACTIONS(1622), + [sym__open_tag_html_block] = ACTIONS(1622), + [sym__open_tag_html_block_newline] = ACTIONS(1622), + [sym__closing_tag_html_block] = ACTIONS(1622), + [sym__closing_tag_html_block_newline] = ACTIONS(1622), + [sym_backslash_escape] = ACTIONS(1622), + [sym_entity_reference] = ACTIONS(1622), + [sym_numeric_character_reference] = ACTIONS(1622), + [sym_uri_autolink] = ACTIONS(1622), + [sym_email_autolink] = ACTIONS(1622), + [sym__whitespace_ge_2] = ACTIONS(1622), + [aux_sym__whitespace_token1] = ACTIONS(1624), + [sym__word_no_digit] = ACTIONS(1622), + [sym__digits] = ACTIONS(1622), + [aux_sym__newline_token1] = ACTIONS(1622), + [sym__block_continuation] = ACTIONS(1622), + [sym__block_quote_continuation] = ACTIONS(1622), + [sym__block_quote_start] = ACTIONS(1622), + [sym__indented_chunk_start] = ACTIONS(1622), + [sym_atx_h1_marker] = ACTIONS(1622), + [sym_atx_h2_marker] = ACTIONS(1622), + [sym_atx_h3_marker] = ACTIONS(1622), + [sym_atx_h4_marker] = ACTIONS(1622), + [sym_atx_h5_marker] = ACTIONS(1622), + [sym_atx_h6_marker] = ACTIONS(1622), + [sym__thematic_break] = ACTIONS(1622), + [sym__list_marker_minus] = ACTIONS(1622), + [sym__list_marker_plus] = ACTIONS(1622), + [sym__list_marker_star] = ACTIONS(1622), + [sym__list_marker_parenthesis] = ACTIONS(1622), + [sym__list_marker_dot] = ACTIONS(1622), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1622), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1622), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1622), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1622), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1622), + [sym__fenced_code_block_start_backtick] = ACTIONS(1622), + [sym__fenced_code_block_start_tilde] = ACTIONS(1622), + [sym__blank_line_start] = ACTIONS(1622), + [sym__code_span_start] = ACTIONS(1622), + [sym__emphasis_open_star] = ACTIONS(1622), + [sym__emphasis_open_underscore] = ACTIONS(1622), + [sym__last_token_whitespace] = ACTIONS(1622), + }, + [333] = { + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), + [sym_shortcut_link] = STATE(827), + [sym_full_reference_link] = STATE(827), + [sym_collapsed_reference_link] = STATE(827), + [sym_inline_link] = STATE(827), + [sym_image] = STATE(827), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(827), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(827), + [sym__whitespace] = STATE(827), + [sym__word] = STATE(827), + [sym__newline] = STATE(1658), + [sym__text_inline] = STATE(827), + [sym__inline_element_no_newline] = STATE(827), + [aux_sym__inline_no_newline] = STATE(338), + [sym__emphasis_star_no_newline] = STATE(828), + [sym__strong_emphasis_star_no_newline] = STATE(827), + [sym__emphasis_underscore_no_newline] = STATE(828), + [sym__strong_emphasis_underscore_no_newline] = STATE(827), + [sym__code_span_no_newline] = STATE(827), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -60988,7 +61078,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(7), [anon_sym_AT] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(971), [anon_sym_BSLASH] = ACTIONS(15), [anon_sym_RBRACK] = ACTIONS(7), [anon_sym_CARET] = ACTIONS(7), @@ -60998,140 +61088,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), [anon_sym_TILDE] = ACTIONS(7), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(848), - [anon_sym_LT_QMARK] = ACTIONS(850), - [aux_sym__html_block_4_token1] = ACTIONS(852), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(854), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(973), + [anon_sym_LT_QMARK] = ACTIONS(975), + [aux_sym__html_block_4_token1] = ACTIONS(977), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(979), [sym_backslash_escape] = ACTIONS(1612), [sym_entity_reference] = ACTIONS(1612), [sym_numeric_character_reference] = ACTIONS(1612), [sym_uri_autolink] = ACTIONS(1612), [sym_email_autolink] = ACTIONS(1612), - [sym__whitespace_ge_2] = ACTIONS(856), - [aux_sym__whitespace_token1] = ACTIONS(858), + [sym__whitespace_ge_2] = ACTIONS(981), + [aux_sym__whitespace_token1] = ACTIONS(983), [sym__word_no_digit] = ACTIONS(1612), [sym__digits] = ACTIONS(1612), - [aux_sym__newline_token1] = ACTIONS(1622), + [aux_sym__newline_token1] = ACTIONS(1626), [sym__code_span_start] = ACTIONS(1616), [sym__emphasis_open_star] = ACTIONS(1618), [sym__emphasis_open_underscore] = ACTIONS(1620), }, - [333] = { - [anon_sym_BANG] = ACTIONS(1624), - [anon_sym_DQUOTE] = ACTIONS(1624), - [anon_sym_POUND] = ACTIONS(1624), - [anon_sym_DOLLAR] = ACTIONS(1624), - [anon_sym_PERCENT] = ACTIONS(1624), - [anon_sym_AMP] = ACTIONS(1626), - [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(1626), - [anon_sym_EQ] = ACTIONS(1624), - [anon_sym_GT] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1624), - [anon_sym_AT] = ACTIONS(1624), - [anon_sym_LBRACK] = ACTIONS(1624), - [anon_sym_BSLASH] = ACTIONS(1626), - [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), - [aux_sym__html_block_1_token1] = ACTIONS(1624), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1626), - [anon_sym_LT_QMARK] = ACTIONS(1626), - [aux_sym__html_block_4_token1] = ACTIONS(1626), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1624), - [aux_sym__html_block_6_token1] = ACTIONS(1626), - [aux_sym__html_block_6_token2] = ACTIONS(1624), - [sym__open_tag_html_block] = ACTIONS(1624), - [sym__open_tag_html_block_newline] = ACTIONS(1624), - [sym__closing_tag_html_block] = ACTIONS(1624), - [sym__closing_tag_html_block_newline] = ACTIONS(1624), - [sym_backslash_escape] = ACTIONS(1624), - [sym_entity_reference] = ACTIONS(1624), - [sym_numeric_character_reference] = ACTIONS(1624), - [sym_uri_autolink] = ACTIONS(1624), - [sym_email_autolink] = ACTIONS(1624), - [sym__whitespace_ge_2] = ACTIONS(1624), - [aux_sym__whitespace_token1] = ACTIONS(1626), - [sym__word_no_digit] = ACTIONS(1624), - [sym__digits] = ACTIONS(1624), - [aux_sym__newline_token1] = ACTIONS(1624), - [sym__block_close] = ACTIONS(1624), - [sym__block_quote_start] = ACTIONS(1624), - [sym__indented_chunk_start] = ACTIONS(1624), - [sym_atx_h1_marker] = ACTIONS(1624), - [sym_atx_h2_marker] = ACTIONS(1624), - [sym_atx_h3_marker] = ACTIONS(1624), - [sym_atx_h4_marker] = ACTIONS(1624), - [sym_atx_h5_marker] = ACTIONS(1624), - [sym_atx_h6_marker] = ACTIONS(1624), - [sym_setext_h1_underline] = ACTIONS(1628), - [sym_setext_h2_underline] = ACTIONS(1628), - [sym__thematic_break] = ACTIONS(1624), - [sym__list_marker_minus] = ACTIONS(1624), - [sym__list_marker_plus] = ACTIONS(1624), - [sym__list_marker_star] = ACTIONS(1624), - [sym__list_marker_parenthesis] = ACTIONS(1624), - [sym__list_marker_dot] = ACTIONS(1624), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1624), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1624), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1624), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1624), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1624), - [sym__fenced_code_block_start_backtick] = ACTIONS(1624), - [sym__fenced_code_block_start_tilde] = ACTIONS(1624), - [sym__blank_line_start] = ACTIONS(1624), - [sym__code_span_start] = ACTIONS(1624), - [sym__emphasis_open_star] = ACTIONS(1624), - [sym__emphasis_open_underscore] = ACTIONS(1624), - }, [334] = { - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), - [sym_shortcut_link] = STATE(850), - [sym_full_reference_link] = STATE(850), - [sym_collapsed_reference_link] = STATE(850), - [sym_inline_link] = STATE(850), - [sym_image] = STATE(850), - [sym__image_inline_link] = STATE(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(850), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(850), - [sym__whitespace] = STATE(850), - [sym__word] = STATE(850), - [sym__newline] = STATE(1723), - [sym__text_inline] = STATE(850), - [sym__inline_element_no_newline] = STATE(850), - [aux_sym__inline_no_newline] = STATE(335), - [sym__emphasis_star_no_newline] = STATE(833), - [sym__strong_emphasis_star_no_newline] = STATE(850), - [sym__emphasis_underscore_no_newline] = STATE(833), - [sym__strong_emphasis_underscore_no_newline] = STATE(850), - [sym__code_span_no_newline] = STATE(850), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), + [sym_shortcut_link] = STATE(827), + [sym_full_reference_link] = STATE(827), + [sym_collapsed_reference_link] = STATE(827), + [sym_inline_link] = STATE(827), + [sym_image] = STATE(827), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(827), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(827), + [sym__whitespace] = STATE(827), + [sym__word] = STATE(827), + [sym__newline] = STATE(1840), + [sym__text_inline] = STATE(827), + [sym__inline_element_no_newline] = STATE(827), + [aux_sym__inline_no_newline] = STATE(373), + [sym__emphasis_star_no_newline] = STATE(828), + [sym__strong_emphasis_star_no_newline] = STATE(827), + [sym__emphasis_underscore_no_newline] = STATE(828), + [sym__strong_emphasis_underscore_no_newline] = STATE(827), + [sym__code_span_no_newline] = STATE(827), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -61154,7 +61161,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(7), [anon_sym_AT] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(971), [anon_sym_BSLASH] = ACTIONS(15), [anon_sym_RBRACK] = ACTIONS(7), [anon_sym_CARET] = ACTIONS(7), @@ -61164,57 +61171,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), [anon_sym_TILDE] = ACTIONS(7), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(848), - [anon_sym_LT_QMARK] = ACTIONS(850), - [aux_sym__html_block_4_token1] = ACTIONS(852), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(854), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(973), + [anon_sym_LT_QMARK] = ACTIONS(975), + [aux_sym__html_block_4_token1] = ACTIONS(977), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(979), [sym_backslash_escape] = ACTIONS(1612), [sym_entity_reference] = ACTIONS(1612), [sym_numeric_character_reference] = ACTIONS(1612), [sym_uri_autolink] = ACTIONS(1612), [sym_email_autolink] = ACTIONS(1612), - [sym__whitespace_ge_2] = ACTIONS(856), - [aux_sym__whitespace_token1] = ACTIONS(858), + [sym__whitespace_ge_2] = ACTIONS(981), + [aux_sym__whitespace_token1] = ACTIONS(983), [sym__word_no_digit] = ACTIONS(1612), [sym__digits] = ACTIONS(1612), - [aux_sym__newline_token1] = ACTIONS(1630), + [aux_sym__newline_token1] = ACTIONS(1628), [sym__code_span_start] = ACTIONS(1616), [sym__emphasis_open_star] = ACTIONS(1618), [sym__emphasis_open_underscore] = ACTIONS(1620), }, [335] = { - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), - [sym_shortcut_link] = STATE(850), - [sym_full_reference_link] = STATE(850), - [sym_collapsed_reference_link] = STATE(850), - [sym_inline_link] = STATE(850), - [sym_image] = STATE(850), - [sym__image_inline_link] = STATE(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(850), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(850), - [sym__whitespace] = STATE(850), - [sym__word] = STATE(850), - [sym__newline] = STATE(1747), - [sym__text_inline] = STATE(850), - [sym__inline_element_no_newline] = STATE(850), - [aux_sym__inline_no_newline] = STATE(365), - [sym__emphasis_star_no_newline] = STATE(833), - [sym__strong_emphasis_star_no_newline] = STATE(850), - [sym__emphasis_underscore_no_newline] = STATE(833), - [sym__strong_emphasis_underscore_no_newline] = STATE(850), - [sym__code_span_no_newline] = STATE(850), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), + [sym_shortcut_link] = STATE(827), + [sym_full_reference_link] = STATE(827), + [sym_collapsed_reference_link] = STATE(827), + [sym_inline_link] = STATE(827), + [sym_image] = STATE(827), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(827), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(827), + [sym__whitespace] = STATE(827), + [sym__word] = STATE(827), + [sym__newline] = STATE(1739), + [sym__text_inline] = STATE(827), + [sym__inline_element_no_newline] = STATE(827), + [aux_sym__inline_no_newline] = STATE(373), + [sym__emphasis_star_no_newline] = STATE(828), + [sym__strong_emphasis_star_no_newline] = STATE(827), + [sym__emphasis_underscore_no_newline] = STATE(828), + [sym__strong_emphasis_underscore_no_newline] = STATE(827), + [sym__code_span_no_newline] = STATE(827), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -61237,7 +61244,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(7), [anon_sym_AT] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(971), [anon_sym_BSLASH] = ACTIONS(15), [anon_sym_RBRACK] = ACTIONS(7), [anon_sym_CARET] = ACTIONS(7), @@ -61247,17 +61254,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), [anon_sym_TILDE] = ACTIONS(7), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(848), - [anon_sym_LT_QMARK] = ACTIONS(850), - [aux_sym__html_block_4_token1] = ACTIONS(852), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(854), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(973), + [anon_sym_LT_QMARK] = ACTIONS(975), + [aux_sym__html_block_4_token1] = ACTIONS(977), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(979), [sym_backslash_escape] = ACTIONS(1612), [sym_entity_reference] = ACTIONS(1612), [sym_numeric_character_reference] = ACTIONS(1612), [sym_uri_autolink] = ACTIONS(1612), [sym_email_autolink] = ACTIONS(1612), - [sym__whitespace_ge_2] = ACTIONS(856), - [aux_sym__whitespace_token1] = ACTIONS(858), + [sym__whitespace_ge_2] = ACTIONS(981), + [aux_sym__whitespace_token1] = ACTIONS(983), [sym__word_no_digit] = ACTIONS(1612), [sym__digits] = ACTIONS(1612), [aux_sym__newline_token1] = ACTIONS(1630), @@ -61349,38 +61356,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__last_token_whitespace] = ACTIONS(1632), }, [337] = { - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), - [sym_shortcut_link] = STATE(850), - [sym_full_reference_link] = STATE(850), - [sym_collapsed_reference_link] = STATE(850), - [sym_inline_link] = STATE(850), - [sym_image] = STATE(850), - [sym__image_inline_link] = STATE(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(850), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(850), - [sym__whitespace] = STATE(850), - [sym__word] = STATE(850), - [sym__newline] = STATE(2062), - [sym__text_inline] = STATE(850), - [sym__inline_element_no_newline] = STATE(850), - [aux_sym__inline_no_newline] = STATE(347), - [sym__emphasis_star_no_newline] = STATE(833), - [sym__strong_emphasis_star_no_newline] = STATE(850), - [sym__emphasis_underscore_no_newline] = STATE(833), - [sym__strong_emphasis_underscore_no_newline] = STATE(850), - [sym__code_span_no_newline] = STATE(850), + [ts_builtin_sym_end] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1636), + [anon_sym_DQUOTE] = ACTIONS(1636), + [anon_sym_POUND] = ACTIONS(1636), + [anon_sym_DOLLAR] = ACTIONS(1636), + [anon_sym_PERCENT] = ACTIONS(1636), + [anon_sym_AMP] = ACTIONS(1638), + [anon_sym_SQUOTE] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1636), + [anon_sym_RPAREN] = ACTIONS(1636), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_COMMA] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_DOT] = ACTIONS(1636), + [anon_sym_SLASH] = ACTIONS(1636), + [anon_sym_COLON] = ACTIONS(1636), + [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_LT] = ACTIONS(1638), + [anon_sym_EQ] = ACTIONS(1636), + [anon_sym_GT] = ACTIONS(1636), + [anon_sym_QMARK] = ACTIONS(1636), + [anon_sym_AT] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(1636), + [anon_sym_BSLASH] = ACTIONS(1638), + [anon_sym_RBRACK] = ACTIONS(1636), + [anon_sym_CARET] = ACTIONS(1636), + [anon_sym__] = ACTIONS(1636), + [anon_sym_BQUOTE] = ACTIONS(1636), + [anon_sym_LBRACE] = ACTIONS(1636), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_RBRACE] = ACTIONS(1636), + [anon_sym_TILDE] = ACTIONS(1636), + [aux_sym__html_block_1_token1] = ACTIONS(1636), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1638), + [anon_sym_LT_QMARK] = ACTIONS(1638), + [aux_sym__html_block_4_token1] = ACTIONS(1638), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1636), + [aux_sym__html_block_6_token1] = ACTIONS(1638), + [aux_sym__html_block_6_token2] = ACTIONS(1636), + [sym__open_tag_html_block] = ACTIONS(1636), + [sym__open_tag_html_block_newline] = ACTIONS(1636), + [sym__closing_tag_html_block] = ACTIONS(1636), + [sym__closing_tag_html_block_newline] = ACTIONS(1636), + [sym_backslash_escape] = ACTIONS(1636), + [sym_entity_reference] = ACTIONS(1636), + [sym_numeric_character_reference] = ACTIONS(1636), + [sym_uri_autolink] = ACTIONS(1636), + [sym_email_autolink] = ACTIONS(1636), + [sym__whitespace_ge_2] = ACTIONS(1636), + [aux_sym__whitespace_token1] = ACTIONS(1638), + [sym__word_no_digit] = ACTIONS(1636), + [sym__digits] = ACTIONS(1636), + [aux_sym__newline_token1] = ACTIONS(1636), + [sym__block_quote_start] = ACTIONS(1636), + [sym__indented_chunk_start] = ACTIONS(1636), + [sym_atx_h1_marker] = ACTIONS(1636), + [sym_atx_h2_marker] = ACTIONS(1636), + [sym_atx_h3_marker] = ACTIONS(1636), + [sym_atx_h4_marker] = ACTIONS(1636), + [sym_atx_h5_marker] = ACTIONS(1636), + [sym_atx_h6_marker] = ACTIONS(1636), + [sym_setext_h1_underline] = ACTIONS(1640), + [sym_setext_h2_underline] = ACTIONS(1640), + [sym__thematic_break] = ACTIONS(1636), + [sym__list_marker_minus] = ACTIONS(1636), + [sym__list_marker_plus] = ACTIONS(1636), + [sym__list_marker_star] = ACTIONS(1636), + [sym__list_marker_parenthesis] = ACTIONS(1636), + [sym__list_marker_dot] = ACTIONS(1636), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1636), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1636), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1636), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1636), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1636), + [sym__fenced_code_block_start_backtick] = ACTIONS(1636), + [sym__fenced_code_block_start_tilde] = ACTIONS(1636), + [sym__blank_line_start] = ACTIONS(1636), + [sym__code_span_start] = ACTIONS(1636), + [sym__emphasis_open_star] = ACTIONS(1636), + [sym__emphasis_open_underscore] = ACTIONS(1636), + }, + [338] = { + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), + [sym_shortcut_link] = STATE(827), + [sym_full_reference_link] = STATE(827), + [sym_collapsed_reference_link] = STATE(827), + [sym_inline_link] = STATE(827), + [sym_image] = STATE(827), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(827), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(827), + [sym__whitespace] = STATE(827), + [sym__word] = STATE(827), + [sym__newline] = STATE(1676), + [sym__text_inline] = STATE(827), + [sym__inline_element_no_newline] = STATE(827), + [aux_sym__inline_no_newline] = STATE(373), + [sym__emphasis_star_no_newline] = STATE(828), + [sym__strong_emphasis_star_no_newline] = STATE(827), + [sym__emphasis_underscore_no_newline] = STATE(828), + [sym__strong_emphasis_underscore_no_newline] = STATE(827), + [sym__code_span_no_newline] = STATE(827), + [anon_sym_BANG] = ACTIONS(5), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(9), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(11), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(971), + [anon_sym_BSLASH] = ACTIONS(15), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(973), + [anon_sym_LT_QMARK] = ACTIONS(975), + [aux_sym__html_block_4_token1] = ACTIONS(977), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(979), + [sym_backslash_escape] = ACTIONS(1612), + [sym_entity_reference] = ACTIONS(1612), + [sym_numeric_character_reference] = ACTIONS(1612), + [sym_uri_autolink] = ACTIONS(1612), + [sym_email_autolink] = ACTIONS(1612), + [sym__whitespace_ge_2] = ACTIONS(981), + [aux_sym__whitespace_token1] = ACTIONS(983), + [sym__word_no_digit] = ACTIONS(1612), + [sym__digits] = ACTIONS(1612), + [aux_sym__newline_token1] = ACTIONS(1626), + [sym__code_span_start] = ACTIONS(1616), + [sym__emphasis_open_star] = ACTIONS(1618), + [sym__emphasis_open_underscore] = ACTIONS(1620), + }, + [339] = { + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), + [sym_shortcut_link] = STATE(827), + [sym_full_reference_link] = STATE(827), + [sym_collapsed_reference_link] = STATE(827), + [sym_inline_link] = STATE(827), + [sym_image] = STATE(827), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(827), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(827), + [sym__whitespace] = STATE(827), + [sym__word] = STATE(827), + [sym__newline] = STATE(1764), + [sym__text_inline] = STATE(827), + [sym__inline_element_no_newline] = STATE(827), + [aux_sym__inline_no_newline] = STATE(349), + [sym__emphasis_star_no_newline] = STATE(828), + [sym__strong_emphasis_star_no_newline] = STATE(827), + [sym__emphasis_underscore_no_newline] = STATE(828), + [sym__strong_emphasis_underscore_no_newline] = STATE(827), + [sym__code_span_no_newline] = STATE(827), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -61403,7 +61576,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(7), [anon_sym_AT] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(971), [anon_sym_BSLASH] = ACTIONS(15), [anon_sym_RBRACK] = ACTIONS(7), [anon_sym_CARET] = ACTIONS(7), @@ -61413,223 +61586,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), [anon_sym_TILDE] = ACTIONS(7), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(848), - [anon_sym_LT_QMARK] = ACTIONS(850), - [aux_sym__html_block_4_token1] = ACTIONS(852), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(854), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(973), + [anon_sym_LT_QMARK] = ACTIONS(975), + [aux_sym__html_block_4_token1] = ACTIONS(977), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(979), [sym_backslash_escape] = ACTIONS(1612), [sym_entity_reference] = ACTIONS(1612), [sym_numeric_character_reference] = ACTIONS(1612), [sym_uri_autolink] = ACTIONS(1612), [sym_email_autolink] = ACTIONS(1612), - [sym__whitespace_ge_2] = ACTIONS(856), - [aux_sym__whitespace_token1] = ACTIONS(858), + [sym__whitespace_ge_2] = ACTIONS(981), + [aux_sym__whitespace_token1] = ACTIONS(983), [sym__word_no_digit] = ACTIONS(1612), [sym__digits] = ACTIONS(1612), - [aux_sym__newline_token1] = ACTIONS(1636), + [aux_sym__newline_token1] = ACTIONS(1642), [sym__code_span_start] = ACTIONS(1616), [sym__emphasis_open_star] = ACTIONS(1618), [sym__emphasis_open_underscore] = ACTIONS(1620), }, - [338] = { - [anon_sym_BANG] = ACTIONS(1638), - [anon_sym_DQUOTE] = ACTIONS(1638), - [anon_sym_POUND] = ACTIONS(1638), - [anon_sym_DOLLAR] = ACTIONS(1638), - [anon_sym_PERCENT] = ACTIONS(1638), - [anon_sym_AMP] = ACTIONS(1640), - [anon_sym_SQUOTE] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(1638), - [anon_sym_RPAREN] = ACTIONS(1638), - [anon_sym_STAR] = ACTIONS(1638), - [anon_sym_PLUS] = ACTIONS(1638), - [anon_sym_COMMA] = ACTIONS(1638), - [anon_sym_DASH] = ACTIONS(1638), - [anon_sym_DOT] = ACTIONS(1638), - [anon_sym_SLASH] = ACTIONS(1638), - [anon_sym_COLON] = ACTIONS(1638), - [anon_sym_SEMI] = ACTIONS(1638), - [anon_sym_LT] = ACTIONS(1640), - [anon_sym_EQ] = ACTIONS(1638), - [anon_sym_GT] = ACTIONS(1638), - [anon_sym_QMARK] = ACTIONS(1638), - [anon_sym_AT] = ACTIONS(1638), - [anon_sym_LBRACK] = ACTIONS(1638), - [anon_sym_BSLASH] = ACTIONS(1640), - [anon_sym_RBRACK] = ACTIONS(1638), - [anon_sym_CARET] = ACTIONS(1638), - [anon_sym__] = ACTIONS(1638), - [anon_sym_BQUOTE] = ACTIONS(1638), - [anon_sym_LBRACE] = ACTIONS(1638), - [anon_sym_PIPE] = ACTIONS(1638), - [anon_sym_RBRACE] = ACTIONS(1638), - [anon_sym_TILDE] = ACTIONS(1638), - [aux_sym__html_block_1_token1] = ACTIONS(1638), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1640), - [anon_sym_LT_QMARK] = ACTIONS(1640), - [aux_sym__html_block_4_token1] = ACTIONS(1640), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1638), - [aux_sym__html_block_6_token1] = ACTIONS(1640), - [aux_sym__html_block_6_token2] = ACTIONS(1638), - [sym__open_tag_html_block] = ACTIONS(1638), - [sym__open_tag_html_block_newline] = ACTIONS(1638), - [sym__closing_tag_html_block] = ACTIONS(1638), - [sym__closing_tag_html_block_newline] = ACTIONS(1638), - [sym_backslash_escape] = ACTIONS(1638), - [sym_entity_reference] = ACTIONS(1638), - [sym_numeric_character_reference] = ACTIONS(1638), - [sym_uri_autolink] = ACTIONS(1638), - [sym_email_autolink] = ACTIONS(1638), - [sym__whitespace_ge_2] = ACTIONS(1638), - [aux_sym__whitespace_token1] = ACTIONS(1640), - [sym__word_no_digit] = ACTIONS(1638), - [sym__digits] = ACTIONS(1638), - [aux_sym__newline_token1] = ACTIONS(1638), - [sym__block_close] = ACTIONS(1638), - [sym__block_quote_start] = ACTIONS(1638), - [sym__indented_chunk_start] = ACTIONS(1638), - [sym_atx_h1_marker] = ACTIONS(1638), - [sym_atx_h2_marker] = ACTIONS(1638), - [sym_atx_h3_marker] = ACTIONS(1638), - [sym_atx_h4_marker] = ACTIONS(1638), - [sym_atx_h5_marker] = ACTIONS(1638), - [sym_atx_h6_marker] = ACTIONS(1638), - [sym_setext_h1_underline] = ACTIONS(1638), - [sym_setext_h2_underline] = ACTIONS(1638), - [sym__thematic_break] = ACTIONS(1638), - [sym__list_marker_minus] = ACTIONS(1638), - [sym__list_marker_plus] = ACTIONS(1638), - [sym__list_marker_star] = ACTIONS(1638), - [sym__list_marker_parenthesis] = ACTIONS(1638), - [sym__list_marker_dot] = ACTIONS(1638), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1638), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1638), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1638), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1638), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1638), - [sym__fenced_code_block_start_backtick] = ACTIONS(1638), - [sym__fenced_code_block_start_tilde] = ACTIONS(1638), - [sym__blank_line_start] = ACTIONS(1638), - [sym__code_span_start] = ACTIONS(1638), - [sym__emphasis_open_star] = ACTIONS(1638), - [sym__emphasis_open_underscore] = ACTIONS(1638), - }, - [339] = { - [anon_sym_BANG] = ACTIONS(1642), - [anon_sym_DQUOTE] = ACTIONS(1642), - [anon_sym_POUND] = ACTIONS(1642), - [anon_sym_DOLLAR] = ACTIONS(1642), - [anon_sym_PERCENT] = ACTIONS(1642), - [anon_sym_AMP] = ACTIONS(1644), - [anon_sym_SQUOTE] = ACTIONS(1642), - [anon_sym_LPAREN] = ACTIONS(1642), - [anon_sym_RPAREN] = ACTIONS(1642), - [anon_sym_STAR] = ACTIONS(1642), - [anon_sym_PLUS] = ACTIONS(1642), - [anon_sym_COMMA] = ACTIONS(1642), - [anon_sym_DASH] = ACTIONS(1642), - [anon_sym_DOT] = ACTIONS(1642), - [anon_sym_SLASH] = ACTIONS(1642), - [anon_sym_COLON] = ACTIONS(1642), - [anon_sym_SEMI] = ACTIONS(1642), - [anon_sym_LT] = ACTIONS(1644), - [anon_sym_EQ] = ACTIONS(1642), - [anon_sym_GT] = ACTIONS(1642), - [anon_sym_QMARK] = ACTIONS(1642), - [anon_sym_AT] = ACTIONS(1642), - [anon_sym_LBRACK] = ACTIONS(1642), - [anon_sym_BSLASH] = ACTIONS(1644), - [anon_sym_RBRACK] = ACTIONS(1642), - [anon_sym_CARET] = ACTIONS(1642), - [anon_sym__] = ACTIONS(1642), - [anon_sym_BQUOTE] = ACTIONS(1642), - [anon_sym_LBRACE] = ACTIONS(1642), - [anon_sym_PIPE] = ACTIONS(1642), - [anon_sym_RBRACE] = ACTIONS(1642), - [anon_sym_TILDE] = ACTIONS(1642), - [aux_sym__html_block_1_token1] = ACTIONS(1642), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1644), - [anon_sym_LT_QMARK] = ACTIONS(1644), - [aux_sym__html_block_4_token1] = ACTIONS(1644), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1642), - [aux_sym__html_block_6_token1] = ACTIONS(1644), - [aux_sym__html_block_6_token2] = ACTIONS(1642), - [sym__open_tag_html_block] = ACTIONS(1642), - [sym__open_tag_html_block_newline] = ACTIONS(1642), - [sym__closing_tag_html_block] = ACTIONS(1642), - [sym__closing_tag_html_block_newline] = ACTIONS(1642), - [sym_backslash_escape] = ACTIONS(1642), - [sym_entity_reference] = ACTIONS(1642), - [sym_numeric_character_reference] = ACTIONS(1642), - [sym_uri_autolink] = ACTIONS(1642), - [sym_email_autolink] = ACTIONS(1642), - [sym__whitespace_ge_2] = ACTIONS(1642), - [aux_sym__whitespace_token1] = ACTIONS(1644), - [sym__word_no_digit] = ACTIONS(1642), - [sym__digits] = ACTIONS(1642), - [aux_sym__newline_token1] = ACTIONS(1642), - [sym__block_continuation] = ACTIONS(1642), - [sym__block_quote_continuation] = ACTIONS(1642), - [sym__block_quote_start] = ACTIONS(1642), - [sym__indented_chunk_start] = ACTIONS(1642), - [sym_atx_h1_marker] = ACTIONS(1642), - [sym_atx_h2_marker] = ACTIONS(1642), - [sym_atx_h3_marker] = ACTIONS(1642), - [sym_atx_h4_marker] = ACTIONS(1642), - [sym_atx_h5_marker] = ACTIONS(1642), - [sym_atx_h6_marker] = ACTIONS(1642), - [sym__thematic_break] = ACTIONS(1642), - [sym__list_marker_minus] = ACTIONS(1642), - [sym__list_marker_plus] = ACTIONS(1642), - [sym__list_marker_star] = ACTIONS(1642), - [sym__list_marker_parenthesis] = ACTIONS(1642), - [sym__list_marker_dot] = ACTIONS(1642), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1642), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1642), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1642), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1642), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1642), - [sym__fenced_code_block_start_backtick] = ACTIONS(1642), - [sym__fenced_code_block_start_tilde] = ACTIONS(1642), - [sym__blank_line_start] = ACTIONS(1642), - [sym__code_span_start] = ACTIONS(1642), - [sym__emphasis_open_star] = ACTIONS(1642), - [sym__emphasis_open_underscore] = ACTIONS(1642), - [sym__last_token_whitespace] = ACTIONS(1642), - }, [340] = { - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), - [sym_shortcut_link] = STATE(850), - [sym_full_reference_link] = STATE(850), - [sym_collapsed_reference_link] = STATE(850), - [sym_inline_link] = STATE(850), - [sym_image] = STATE(850), - [sym__image_inline_link] = STATE(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(850), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(850), - [sym__whitespace] = STATE(850), - [sym__word] = STATE(850), - [sym__newline] = STATE(1841), - [sym__text_inline] = STATE(850), - [sym__inline_element_no_newline] = STATE(850), - [aux_sym__inline_no_newline] = STATE(365), - [sym__emphasis_star_no_newline] = STATE(833), - [sym__strong_emphasis_star_no_newline] = STATE(850), - [sym__emphasis_underscore_no_newline] = STATE(833), - [sym__strong_emphasis_underscore_no_newline] = STATE(850), - [sym__code_span_no_newline] = STATE(850), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), + [sym_shortcut_link] = STATE(827), + [sym_full_reference_link] = STATE(827), + [sym_collapsed_reference_link] = STATE(827), + [sym_inline_link] = STATE(827), + [sym_image] = STATE(827), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(827), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(827), + [sym__whitespace] = STATE(827), + [sym__word] = STATE(827), + [sym__newline] = STATE(400), + [sym__text_inline] = STATE(827), + [sym__inline_element_no_newline] = STATE(827), + [aux_sym__inline_no_newline] = STATE(352), + [sym__emphasis_star_no_newline] = STATE(828), + [sym__strong_emphasis_star_no_newline] = STATE(827), + [sym__emphasis_underscore_no_newline] = STATE(828), + [sym__strong_emphasis_underscore_no_newline] = STATE(827), + [sym__code_span_no_newline] = STATE(827), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -61652,7 +61659,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(7), [anon_sym_AT] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(971), [anon_sym_BSLASH] = ACTIONS(15), [anon_sym_RBRACK] = ACTIONS(7), [anon_sym_CARET] = ACTIONS(7), @@ -61662,25 +61669,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), [anon_sym_TILDE] = ACTIONS(7), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(848), - [anon_sym_LT_QMARK] = ACTIONS(850), - [aux_sym__html_block_4_token1] = ACTIONS(852), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(854), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(973), + [anon_sym_LT_QMARK] = ACTIONS(975), + [aux_sym__html_block_4_token1] = ACTIONS(977), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(979), [sym_backslash_escape] = ACTIONS(1612), [sym_entity_reference] = ACTIONS(1612), [sym_numeric_character_reference] = ACTIONS(1612), [sym_uri_autolink] = ACTIONS(1612), [sym_email_autolink] = ACTIONS(1612), - [sym__whitespace_ge_2] = ACTIONS(856), - [aux_sym__whitespace_token1] = ACTIONS(858), + [sym__whitespace_ge_2] = ACTIONS(981), + [aux_sym__whitespace_token1] = ACTIONS(983), [sym__word_no_digit] = ACTIONS(1612), [sym__digits] = ACTIONS(1612), - [aux_sym__newline_token1] = ACTIONS(1646), + [aux_sym__newline_token1] = ACTIONS(1644), [sym__code_span_start] = ACTIONS(1616), [sym__emphasis_open_star] = ACTIONS(1618), [sym__emphasis_open_underscore] = ACTIONS(1620), }, [341] = { + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), + [sym_shortcut_link] = STATE(827), + [sym_full_reference_link] = STATE(827), + [sym_collapsed_reference_link] = STATE(827), + [sym_inline_link] = STATE(827), + [sym_image] = STATE(827), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(827), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(827), + [sym__whitespace] = STATE(827), + [sym__word] = STATE(827), + [sym__newline] = STATE(731), + [sym__text_inline] = STATE(827), + [sym__inline_element_no_newline] = STATE(827), + [aux_sym__inline_no_newline] = STATE(373), + [sym__emphasis_star_no_newline] = STATE(828), + [sym__strong_emphasis_star_no_newline] = STATE(827), + [sym__emphasis_underscore_no_newline] = STATE(828), + [sym__strong_emphasis_underscore_no_newline] = STATE(827), + [sym__code_span_no_newline] = STATE(827), + [anon_sym_BANG] = ACTIONS(5), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(9), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_COLON] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(11), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(971), + [anon_sym_BSLASH] = ACTIONS(15), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(973), + [anon_sym_LT_QMARK] = ACTIONS(975), + [aux_sym__html_block_4_token1] = ACTIONS(977), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(979), + [sym_backslash_escape] = ACTIONS(1612), + [sym_entity_reference] = ACTIONS(1612), + [sym_numeric_character_reference] = ACTIONS(1612), + [sym_uri_autolink] = ACTIONS(1612), + [sym_email_autolink] = ACTIONS(1612), + [sym__whitespace_ge_2] = ACTIONS(981), + [aux_sym__whitespace_token1] = ACTIONS(983), + [sym__word_no_digit] = ACTIONS(1612), + [sym__digits] = ACTIONS(1612), + [aux_sym__newline_token1] = ACTIONS(1646), + [sym__code_span_start] = ACTIONS(1616), + [sym__emphasis_open_star] = ACTIONS(1618), + [sym__emphasis_open_underscore] = ACTIONS(1620), + }, + [342] = { + [ts_builtin_sym_end] = ACTIONS(1648), [anon_sym_BANG] = ACTIONS(1648), [anon_sym_DQUOTE] = ACTIONS(1648), [anon_sym_POUND] = ACTIONS(1648), @@ -61734,8 +61825,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__word_no_digit] = ACTIONS(1648), [sym__digits] = ACTIONS(1648), [aux_sym__newline_token1] = ACTIONS(1648), - [sym__block_continuation] = ACTIONS(1648), - [sym__block_quote_continuation] = ACTIONS(1648), [sym__block_quote_start] = ACTIONS(1648), [sym__indented_chunk_start] = ACTIONS(1648), [sym_atx_h1_marker] = ACTIONS(1648), @@ -61744,6 +61833,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_atx_h4_marker] = ACTIONS(1648), [sym_atx_h5_marker] = ACTIONS(1648), [sym_atx_h6_marker] = ACTIONS(1648), + [sym_setext_h1_underline] = ACTIONS(1648), + [sym_setext_h2_underline] = ACTIONS(1648), [sym__thematic_break] = ACTIONS(1648), [sym__list_marker_minus] = ACTIONS(1648), [sym__list_marker_plus] = ACTIONS(1648), @@ -61761,124 +61852,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(1648), [sym__emphasis_open_star] = ACTIONS(1648), [sym__emphasis_open_underscore] = ACTIONS(1648), - [sym__last_token_whitespace] = ACTIONS(1648), - }, - [342] = { - [ts_builtin_sym_end] = ACTIONS(1624), - [anon_sym_BANG] = ACTIONS(1624), - [anon_sym_DQUOTE] = ACTIONS(1624), - [anon_sym_POUND] = ACTIONS(1624), - [anon_sym_DOLLAR] = ACTIONS(1624), - [anon_sym_PERCENT] = ACTIONS(1624), - [anon_sym_AMP] = ACTIONS(1626), - [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(1626), - [anon_sym_EQ] = ACTIONS(1624), - [anon_sym_GT] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1624), - [anon_sym_AT] = ACTIONS(1624), - [anon_sym_LBRACK] = ACTIONS(1624), - [anon_sym_BSLASH] = ACTIONS(1626), - [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), - [aux_sym__html_block_1_token1] = ACTIONS(1624), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1626), - [anon_sym_LT_QMARK] = ACTIONS(1626), - [aux_sym__html_block_4_token1] = ACTIONS(1626), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1624), - [aux_sym__html_block_6_token1] = ACTIONS(1626), - [aux_sym__html_block_6_token2] = ACTIONS(1624), - [sym__open_tag_html_block] = ACTIONS(1624), - [sym__open_tag_html_block_newline] = ACTIONS(1624), - [sym__closing_tag_html_block] = ACTIONS(1624), - [sym__closing_tag_html_block_newline] = ACTIONS(1624), - [sym_backslash_escape] = ACTIONS(1624), - [sym_entity_reference] = ACTIONS(1624), - [sym_numeric_character_reference] = ACTIONS(1624), - [sym_uri_autolink] = ACTIONS(1624), - [sym_email_autolink] = ACTIONS(1624), - [sym__whitespace_ge_2] = ACTIONS(1624), - [aux_sym__whitespace_token1] = ACTIONS(1626), - [sym__word_no_digit] = ACTIONS(1624), - [sym__digits] = ACTIONS(1624), - [aux_sym__newline_token1] = ACTIONS(1624), - [sym__block_quote_start] = ACTIONS(1624), - [sym__indented_chunk_start] = ACTIONS(1624), - [sym_atx_h1_marker] = ACTIONS(1624), - [sym_atx_h2_marker] = ACTIONS(1624), - [sym_atx_h3_marker] = ACTIONS(1624), - [sym_atx_h4_marker] = ACTIONS(1624), - [sym_atx_h5_marker] = ACTIONS(1624), - [sym_atx_h6_marker] = ACTIONS(1624), - [sym_setext_h1_underline] = ACTIONS(1652), - [sym_setext_h2_underline] = ACTIONS(1652), - [sym__thematic_break] = ACTIONS(1624), - [sym__list_marker_minus] = ACTIONS(1624), - [sym__list_marker_plus] = ACTIONS(1624), - [sym__list_marker_star] = ACTIONS(1624), - [sym__list_marker_parenthesis] = ACTIONS(1624), - [sym__list_marker_dot] = ACTIONS(1624), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1624), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1624), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1624), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1624), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1624), - [sym__fenced_code_block_start_backtick] = ACTIONS(1624), - [sym__fenced_code_block_start_tilde] = ACTIONS(1624), - [sym__blank_line_start] = ACTIONS(1624), - [sym__code_span_start] = ACTIONS(1624), - [sym__emphasis_open_star] = ACTIONS(1624), - [sym__emphasis_open_underscore] = ACTIONS(1624), }, [343] = { - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), - [sym_shortcut_link] = STATE(850), - [sym_full_reference_link] = STATE(850), - [sym_collapsed_reference_link] = STATE(850), - [sym_inline_link] = STATE(850), - [sym_image] = STATE(850), - [sym__image_inline_link] = STATE(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(850), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(850), - [sym__whitespace] = STATE(850), - [sym__word] = STATE(850), - [sym__newline] = STATE(720), - [sym__text_inline] = STATE(850), - [sym__inline_element_no_newline] = STATE(850), - [aux_sym__inline_no_newline] = STATE(345), - [sym__emphasis_star_no_newline] = STATE(833), - [sym__strong_emphasis_star_no_newline] = STATE(850), - [sym__emphasis_underscore_no_newline] = STATE(833), - [sym__strong_emphasis_underscore_no_newline] = STATE(850), - [sym__code_span_no_newline] = STATE(850), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), + [sym_shortcut_link] = STATE(827), + [sym_full_reference_link] = STATE(827), + [sym_collapsed_reference_link] = STATE(827), + [sym_inline_link] = STATE(827), + [sym_image] = STATE(827), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(827), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(827), + [sym__whitespace] = STATE(827), + [sym__word] = STATE(827), + [sym__newline] = STATE(918), + [sym__text_inline] = STATE(827), + [sym__inline_element_no_newline] = STATE(827), + [aux_sym__inline_no_newline] = STATE(358), + [sym__emphasis_star_no_newline] = STATE(828), + [sym__strong_emphasis_star_no_newline] = STATE(827), + [sym__emphasis_underscore_no_newline] = STATE(828), + [sym__strong_emphasis_underscore_no_newline] = STATE(827), + [sym__code_span_no_newline] = STATE(827), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -61901,7 +61908,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(7), [anon_sym_AT] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(971), [anon_sym_BSLASH] = ACTIONS(15), [anon_sym_RBRACK] = ACTIONS(7), [anon_sym_CARET] = ACTIONS(7), @@ -61911,57 +61918,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), [anon_sym_TILDE] = ACTIONS(7), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(848), - [anon_sym_LT_QMARK] = ACTIONS(850), - [aux_sym__html_block_4_token1] = ACTIONS(852), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(854), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(973), + [anon_sym_LT_QMARK] = ACTIONS(975), + [aux_sym__html_block_4_token1] = ACTIONS(977), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(979), [sym_backslash_escape] = ACTIONS(1612), [sym_entity_reference] = ACTIONS(1612), [sym_numeric_character_reference] = ACTIONS(1612), [sym_uri_autolink] = ACTIONS(1612), [sym_email_autolink] = ACTIONS(1612), - [sym__whitespace_ge_2] = ACTIONS(856), - [aux_sym__whitespace_token1] = ACTIONS(858), + [sym__whitespace_ge_2] = ACTIONS(981), + [aux_sym__whitespace_token1] = ACTIONS(983), [sym__word_no_digit] = ACTIONS(1612), [sym__digits] = ACTIONS(1612), - [aux_sym__newline_token1] = ACTIONS(1654), + [aux_sym__newline_token1] = ACTIONS(1652), [sym__code_span_start] = ACTIONS(1616), [sym__emphasis_open_star] = ACTIONS(1618), [sym__emphasis_open_underscore] = ACTIONS(1620), }, [344] = { - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), - [sym_shortcut_link] = STATE(850), - [sym_full_reference_link] = STATE(850), - [sym_collapsed_reference_link] = STATE(850), - [sym_inline_link] = STATE(850), - [sym_image] = STATE(850), - [sym__image_inline_link] = STATE(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(850), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(850), - [sym__whitespace] = STATE(850), - [sym__word] = STATE(850), - [sym__newline] = STATE(1839), - [sym__text_inline] = STATE(850), - [sym__inline_element_no_newline] = STATE(850), - [aux_sym__inline_no_newline] = STATE(331), - [sym__emphasis_star_no_newline] = STATE(833), - [sym__strong_emphasis_star_no_newline] = STATE(850), - [sym__emphasis_underscore_no_newline] = STATE(833), - [sym__strong_emphasis_underscore_no_newline] = STATE(850), - [sym__code_span_no_newline] = STATE(850), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), + [sym_shortcut_link] = STATE(827), + [sym_full_reference_link] = STATE(827), + [sym_collapsed_reference_link] = STATE(827), + [sym_inline_link] = STATE(827), + [sym_image] = STATE(827), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(827), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(827), + [sym__whitespace] = STATE(827), + [sym__word] = STATE(827), + [sym__newline] = STATE(749), + [sym__text_inline] = STATE(827), + [sym__inline_element_no_newline] = STATE(827), + [aux_sym__inline_no_newline] = STATE(341), + [sym__emphasis_star_no_newline] = STATE(828), + [sym__strong_emphasis_star_no_newline] = STATE(827), + [sym__emphasis_underscore_no_newline] = STATE(828), + [sym__strong_emphasis_underscore_no_newline] = STATE(827), + [sym__code_span_no_newline] = STATE(827), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -61984,7 +61991,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(7), [anon_sym_AT] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(971), [anon_sym_BSLASH] = ACTIONS(15), [anon_sym_RBRACK] = ACTIONS(7), [anon_sym_CARET] = ACTIONS(7), @@ -61994,57 +62001,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), [anon_sym_TILDE] = ACTIONS(7), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(848), - [anon_sym_LT_QMARK] = ACTIONS(850), - [aux_sym__html_block_4_token1] = ACTIONS(852), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(854), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(973), + [anon_sym_LT_QMARK] = ACTIONS(975), + [aux_sym__html_block_4_token1] = ACTIONS(977), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(979), [sym_backslash_escape] = ACTIONS(1612), [sym_entity_reference] = ACTIONS(1612), [sym_numeric_character_reference] = ACTIONS(1612), [sym_uri_autolink] = ACTIONS(1612), [sym_email_autolink] = ACTIONS(1612), - [sym__whitespace_ge_2] = ACTIONS(856), - [aux_sym__whitespace_token1] = ACTIONS(858), + [sym__whitespace_ge_2] = ACTIONS(981), + [aux_sym__whitespace_token1] = ACTIONS(983), [sym__word_no_digit] = ACTIONS(1612), [sym__digits] = ACTIONS(1612), - [aux_sym__newline_token1] = ACTIONS(1614), + [aux_sym__newline_token1] = ACTIONS(1646), [sym__code_span_start] = ACTIONS(1616), [sym__emphasis_open_star] = ACTIONS(1618), [sym__emphasis_open_underscore] = ACTIONS(1620), }, [345] = { - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), - [sym_shortcut_link] = STATE(850), - [sym_full_reference_link] = STATE(850), - [sym_collapsed_reference_link] = STATE(850), - [sym_inline_link] = STATE(850), - [sym_image] = STATE(850), - [sym__image_inline_link] = STATE(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(850), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(850), - [sym__whitespace] = STATE(850), - [sym__word] = STATE(850), - [sym__newline] = STATE(783), - [sym__text_inline] = STATE(850), - [sym__inline_element_no_newline] = STATE(850), - [aux_sym__inline_no_newline] = STATE(365), - [sym__emphasis_star_no_newline] = STATE(833), - [sym__strong_emphasis_star_no_newline] = STATE(850), - [sym__emphasis_underscore_no_newline] = STATE(833), - [sym__strong_emphasis_underscore_no_newline] = STATE(850), - [sym__code_span_no_newline] = STATE(850), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), + [sym_shortcut_link] = STATE(827), + [sym_full_reference_link] = STATE(827), + [sym_collapsed_reference_link] = STATE(827), + [sym_inline_link] = STATE(827), + [sym_image] = STATE(827), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(827), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(827), + [sym__whitespace] = STATE(827), + [sym__word] = STATE(827), + [sym__newline] = STATE(425), + [sym__text_inline] = STATE(827), + [sym__inline_element_no_newline] = STATE(827), + [aux_sym__inline_no_newline] = STATE(373), + [sym__emphasis_star_no_newline] = STATE(828), + [sym__strong_emphasis_star_no_newline] = STATE(827), + [sym__emphasis_underscore_no_newline] = STATE(828), + [sym__strong_emphasis_underscore_no_newline] = STATE(827), + [sym__code_span_no_newline] = STATE(827), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -62067,7 +62074,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(7), [anon_sym_AT] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(971), [anon_sym_BSLASH] = ACTIONS(15), [anon_sym_RBRACK] = ACTIONS(7), [anon_sym_CARET] = ACTIONS(7), @@ -62077,17 +62084,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), [anon_sym_TILDE] = ACTIONS(7), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(848), - [anon_sym_LT_QMARK] = ACTIONS(850), - [aux_sym__html_block_4_token1] = ACTIONS(852), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(854), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(973), + [anon_sym_LT_QMARK] = ACTIONS(975), + [aux_sym__html_block_4_token1] = ACTIONS(977), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(979), [sym_backslash_escape] = ACTIONS(1612), [sym_entity_reference] = ACTIONS(1612), [sym_numeric_character_reference] = ACTIONS(1612), [sym_uri_autolink] = ACTIONS(1612), [sym_email_autolink] = ACTIONS(1612), - [sym__whitespace_ge_2] = ACTIONS(856), - [aux_sym__whitespace_token1] = ACTIONS(858), + [sym__whitespace_ge_2] = ACTIONS(981), + [aux_sym__whitespace_token1] = ACTIONS(983), [sym__word_no_digit] = ACTIONS(1612), [sym__digits] = ACTIONS(1612), [aux_sym__newline_token1] = ACTIONS(1654), @@ -62096,38 +62103,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_underscore] = ACTIONS(1620), }, [346] = { - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), - [sym_shortcut_link] = STATE(850), - [sym_full_reference_link] = STATE(850), - [sym_collapsed_reference_link] = STATE(850), - [sym_inline_link] = STATE(850), - [sym_image] = STATE(850), - [sym__image_inline_link] = STATE(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(850), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(850), - [sym__whitespace] = STATE(850), - [sym__word] = STATE(850), - [sym__newline] = STATE(1652), - [sym__text_inline] = STATE(850), - [sym__inline_element_no_newline] = STATE(850), - [aux_sym__inline_no_newline] = STATE(360), - [sym__emphasis_star_no_newline] = STATE(833), - [sym__strong_emphasis_star_no_newline] = STATE(850), - [sym__emphasis_underscore_no_newline] = STATE(833), - [sym__strong_emphasis_underscore_no_newline] = STATE(850), - [sym__code_span_no_newline] = STATE(850), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), + [sym_shortcut_link] = STATE(827), + [sym_full_reference_link] = STATE(827), + [sym_collapsed_reference_link] = STATE(827), + [sym_inline_link] = STATE(827), + [sym_image] = STATE(827), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(827), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(827), + [sym__whitespace] = STATE(827), + [sym__word] = STATE(827), + [sym__newline] = STATE(719), + [sym__text_inline] = STATE(827), + [sym__inline_element_no_newline] = STATE(827), + [aux_sym__inline_no_newline] = STATE(353), + [sym__emphasis_star_no_newline] = STATE(828), + [sym__strong_emphasis_star_no_newline] = STATE(827), + [sym__emphasis_underscore_no_newline] = STATE(828), + [sym__strong_emphasis_underscore_no_newline] = STATE(827), + [sym__code_span_no_newline] = STATE(827), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -62150,7 +62157,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(7), [anon_sym_AT] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(971), [anon_sym_BSLASH] = ACTIONS(15), [anon_sym_RBRACK] = ACTIONS(7), [anon_sym_CARET] = ACTIONS(7), @@ -62160,17 +62167,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), [anon_sym_TILDE] = ACTIONS(7), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(848), - [anon_sym_LT_QMARK] = ACTIONS(850), - [aux_sym__html_block_4_token1] = ACTIONS(852), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(854), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(973), + [anon_sym_LT_QMARK] = ACTIONS(975), + [aux_sym__html_block_4_token1] = ACTIONS(977), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(979), [sym_backslash_escape] = ACTIONS(1612), [sym_entity_reference] = ACTIONS(1612), [sym_numeric_character_reference] = ACTIONS(1612), [sym_uri_autolink] = ACTIONS(1612), [sym_email_autolink] = ACTIONS(1612), - [sym__whitespace_ge_2] = ACTIONS(856), - [aux_sym__whitespace_token1] = ACTIONS(858), + [sym__whitespace_ge_2] = ACTIONS(981), + [aux_sym__whitespace_token1] = ACTIONS(983), [sym__word_no_digit] = ACTIONS(1612), [sym__digits] = ACTIONS(1612), [aux_sym__newline_token1] = ACTIONS(1656), @@ -62179,204 +62186,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_underscore] = ACTIONS(1620), }, [347] = { - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), - [sym_shortcut_link] = STATE(850), - [sym_full_reference_link] = STATE(850), - [sym_collapsed_reference_link] = STATE(850), - [sym_inline_link] = STATE(850), - [sym_image] = STATE(850), - [sym__image_inline_link] = STATE(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(850), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(850), - [sym__whitespace] = STATE(850), - [sym__word] = STATE(850), - [sym__newline] = STATE(2060), - [sym__text_inline] = STATE(850), - [sym__inline_element_no_newline] = STATE(850), - [aux_sym__inline_no_newline] = STATE(365), - [sym__emphasis_star_no_newline] = STATE(833), - [sym__strong_emphasis_star_no_newline] = STATE(850), - [sym__emphasis_underscore_no_newline] = STATE(833), - [sym__strong_emphasis_underscore_no_newline] = STATE(850), - [sym__code_span_no_newline] = STATE(850), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(7), - [anon_sym_DOLLAR] = ACTIONS(7), - [anon_sym_PERCENT] = ACTIONS(7), - [anon_sym_AMP] = ACTIONS(9), - [anon_sym_SQUOTE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(7), - [anon_sym_RPAREN] = ACTIONS(7), - [anon_sym_STAR] = ACTIONS(7), - [anon_sym_PLUS] = ACTIONS(7), - [anon_sym_COMMA] = ACTIONS(7), - [anon_sym_DASH] = ACTIONS(7), - [anon_sym_DOT] = ACTIONS(7), - [anon_sym_SLASH] = ACTIONS(7), - [anon_sym_COLON] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(7), - [anon_sym_LT] = ACTIONS(11), - [anon_sym_EQ] = ACTIONS(7), - [anon_sym_GT] = ACTIONS(7), - [anon_sym_QMARK] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(846), - [anon_sym_BSLASH] = ACTIONS(15), - [anon_sym_RBRACK] = ACTIONS(7), - [anon_sym_CARET] = ACTIONS(7), - [anon_sym__] = ACTIONS(7), - [anon_sym_BQUOTE] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_PIPE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(7), - [anon_sym_TILDE] = ACTIONS(7), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(848), - [anon_sym_LT_QMARK] = ACTIONS(850), - [aux_sym__html_block_4_token1] = ACTIONS(852), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(854), - [sym_backslash_escape] = ACTIONS(1612), - [sym_entity_reference] = ACTIONS(1612), - [sym_numeric_character_reference] = ACTIONS(1612), - [sym_uri_autolink] = ACTIONS(1612), - [sym_email_autolink] = ACTIONS(1612), - [sym__whitespace_ge_2] = ACTIONS(856), - [aux_sym__whitespace_token1] = ACTIONS(858), - [sym__word_no_digit] = ACTIONS(1612), - [sym__digits] = ACTIONS(1612), - [aux_sym__newline_token1] = ACTIONS(1636), - [sym__code_span_start] = ACTIONS(1616), - [sym__emphasis_open_star] = ACTIONS(1618), - [sym__emphasis_open_underscore] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1658), + [anon_sym_DQUOTE] = ACTIONS(1658), + [anon_sym_POUND] = ACTIONS(1658), + [anon_sym_DOLLAR] = ACTIONS(1658), + [anon_sym_PERCENT] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1660), + [anon_sym_SQUOTE] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(1658), + [anon_sym_RPAREN] = ACTIONS(1658), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_PLUS] = ACTIONS(1658), + [anon_sym_COMMA] = ACTIONS(1658), + [anon_sym_DASH] = ACTIONS(1658), + [anon_sym_DOT] = ACTIONS(1658), + [anon_sym_SLASH] = ACTIONS(1658), + [anon_sym_COLON] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(1658), + [anon_sym_LT] = ACTIONS(1660), + [anon_sym_EQ] = ACTIONS(1658), + [anon_sym_GT] = ACTIONS(1658), + [anon_sym_QMARK] = ACTIONS(1658), + [anon_sym_AT] = ACTIONS(1658), + [anon_sym_LBRACK] = ACTIONS(1658), + [anon_sym_BSLASH] = ACTIONS(1660), + [anon_sym_RBRACK] = ACTIONS(1658), + [anon_sym_CARET] = ACTIONS(1658), + [anon_sym__] = ACTIONS(1658), + [anon_sym_BQUOTE] = ACTIONS(1658), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_PIPE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1658), + [anon_sym_TILDE] = ACTIONS(1658), + [aux_sym__html_block_1_token1] = ACTIONS(1658), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1660), + [anon_sym_LT_QMARK] = ACTIONS(1660), + [aux_sym__html_block_4_token1] = ACTIONS(1660), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1658), + [aux_sym__html_block_6_token1] = ACTIONS(1660), + [aux_sym__html_block_6_token2] = ACTIONS(1658), + [sym__open_tag_html_block] = ACTIONS(1658), + [sym__open_tag_html_block_newline] = ACTIONS(1658), + [sym__closing_tag_html_block] = ACTIONS(1658), + [sym__closing_tag_html_block_newline] = ACTIONS(1658), + [sym_backslash_escape] = ACTIONS(1658), + [sym_entity_reference] = ACTIONS(1658), + [sym_numeric_character_reference] = ACTIONS(1658), + [sym_uri_autolink] = ACTIONS(1658), + [sym_email_autolink] = ACTIONS(1658), + [sym__whitespace_ge_2] = ACTIONS(1658), + [aux_sym__whitespace_token1] = ACTIONS(1660), + [sym__word_no_digit] = ACTIONS(1658), + [sym__digits] = ACTIONS(1658), + [aux_sym__newline_token1] = ACTIONS(1658), + [sym__block_continuation] = ACTIONS(1658), + [sym__block_quote_continuation] = ACTIONS(1658), + [sym__block_quote_start] = ACTIONS(1658), + [sym__indented_chunk_start] = ACTIONS(1658), + [sym_atx_h1_marker] = ACTIONS(1658), + [sym_atx_h2_marker] = ACTIONS(1658), + [sym_atx_h3_marker] = ACTIONS(1658), + [sym_atx_h4_marker] = ACTIONS(1658), + [sym_atx_h5_marker] = ACTIONS(1658), + [sym_atx_h6_marker] = ACTIONS(1658), + [sym__thematic_break] = ACTIONS(1658), + [sym__list_marker_minus] = ACTIONS(1658), + [sym__list_marker_plus] = ACTIONS(1658), + [sym__list_marker_star] = ACTIONS(1658), + [sym__list_marker_parenthesis] = ACTIONS(1658), + [sym__list_marker_dot] = ACTIONS(1658), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1658), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1658), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1658), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1658), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1658), + [sym__fenced_code_block_start_backtick] = ACTIONS(1658), + [sym__fenced_code_block_start_tilde] = ACTIONS(1658), + [sym__blank_line_start] = ACTIONS(1658), + [sym__code_span_start] = ACTIONS(1658), + [sym__emphasis_open_star] = ACTIONS(1658), + [sym__emphasis_open_underscore] = ACTIONS(1658), + [sym__last_token_whitespace] = ACTIONS(1658), }, [348] = { - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), - [sym_shortcut_link] = STATE(850), - [sym_full_reference_link] = STATE(850), - [sym_collapsed_reference_link] = STATE(850), - [sym_inline_link] = STATE(850), - [sym_image] = STATE(850), - [sym__image_inline_link] = STATE(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(850), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(850), - [sym__whitespace] = STATE(850), - [sym__word] = STATE(850), - [sym__newline] = STATE(1751), - [sym__text_inline] = STATE(850), - [sym__inline_element_no_newline] = STATE(850), - [aux_sym__inline_no_newline] = STATE(355), - [sym__emphasis_star_no_newline] = STATE(833), - [sym__strong_emphasis_star_no_newline] = STATE(850), - [sym__emphasis_underscore_no_newline] = STATE(833), - [sym__strong_emphasis_underscore_no_newline] = STATE(850), - [sym__code_span_no_newline] = STATE(850), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(7), - [anon_sym_DOLLAR] = ACTIONS(7), - [anon_sym_PERCENT] = ACTIONS(7), - [anon_sym_AMP] = ACTIONS(9), - [anon_sym_SQUOTE] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(7), - [anon_sym_RPAREN] = ACTIONS(7), - [anon_sym_STAR] = ACTIONS(7), - [anon_sym_PLUS] = ACTIONS(7), - [anon_sym_COMMA] = ACTIONS(7), - [anon_sym_DASH] = ACTIONS(7), - [anon_sym_DOT] = ACTIONS(7), - [anon_sym_SLASH] = ACTIONS(7), - [anon_sym_COLON] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(7), - [anon_sym_LT] = ACTIONS(11), - [anon_sym_EQ] = ACTIONS(7), - [anon_sym_GT] = ACTIONS(7), - [anon_sym_QMARK] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(846), - [anon_sym_BSLASH] = ACTIONS(15), - [anon_sym_RBRACK] = ACTIONS(7), - [anon_sym_CARET] = ACTIONS(7), - [anon_sym__] = ACTIONS(7), - [anon_sym_BQUOTE] = ACTIONS(7), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_PIPE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(7), - [anon_sym_TILDE] = ACTIONS(7), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(848), - [anon_sym_LT_QMARK] = ACTIONS(850), - [aux_sym__html_block_4_token1] = ACTIONS(852), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(854), - [sym_backslash_escape] = ACTIONS(1612), - [sym_entity_reference] = ACTIONS(1612), - [sym_numeric_character_reference] = ACTIONS(1612), - [sym_uri_autolink] = ACTIONS(1612), - [sym_email_autolink] = ACTIONS(1612), - [sym__whitespace_ge_2] = ACTIONS(856), - [aux_sym__whitespace_token1] = ACTIONS(858), - [sym__word_no_digit] = ACTIONS(1612), - [sym__digits] = ACTIONS(1612), - [aux_sym__newline_token1] = ACTIONS(1658), - [sym__code_span_start] = ACTIONS(1616), - [sym__emphasis_open_star] = ACTIONS(1618), - [sym__emphasis_open_underscore] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1662), + [anon_sym_DQUOTE] = ACTIONS(1662), + [anon_sym_POUND] = ACTIONS(1662), + [anon_sym_DOLLAR] = ACTIONS(1662), + [anon_sym_PERCENT] = ACTIONS(1662), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_SQUOTE] = ACTIONS(1662), + [anon_sym_LPAREN] = ACTIONS(1662), + [anon_sym_RPAREN] = ACTIONS(1662), + [anon_sym_STAR] = ACTIONS(1662), + [anon_sym_PLUS] = ACTIONS(1662), + [anon_sym_COMMA] = ACTIONS(1662), + [anon_sym_DASH] = ACTIONS(1662), + [anon_sym_DOT] = ACTIONS(1662), + [anon_sym_SLASH] = ACTIONS(1662), + [anon_sym_COLON] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym_LT] = ACTIONS(1664), + [anon_sym_EQ] = ACTIONS(1662), + [anon_sym_GT] = ACTIONS(1662), + [anon_sym_QMARK] = ACTIONS(1662), + [anon_sym_AT] = ACTIONS(1662), + [anon_sym_LBRACK] = ACTIONS(1662), + [anon_sym_BSLASH] = ACTIONS(1664), + [anon_sym_RBRACK] = ACTIONS(1662), + [anon_sym_CARET] = ACTIONS(1662), + [anon_sym__] = ACTIONS(1662), + [anon_sym_BQUOTE] = ACTIONS(1662), + [anon_sym_LBRACE] = ACTIONS(1662), + [anon_sym_PIPE] = ACTIONS(1662), + [anon_sym_RBRACE] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1662), + [aux_sym__html_block_1_token1] = ACTIONS(1662), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1664), + [anon_sym_LT_QMARK] = ACTIONS(1664), + [aux_sym__html_block_4_token1] = ACTIONS(1664), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1662), + [aux_sym__html_block_6_token1] = ACTIONS(1664), + [aux_sym__html_block_6_token2] = ACTIONS(1662), + [sym__open_tag_html_block] = ACTIONS(1662), + [sym__open_tag_html_block_newline] = ACTIONS(1662), + [sym__closing_tag_html_block] = ACTIONS(1662), + [sym__closing_tag_html_block_newline] = ACTIONS(1662), + [sym_backslash_escape] = ACTIONS(1662), + [sym_entity_reference] = ACTIONS(1662), + [sym_numeric_character_reference] = ACTIONS(1662), + [sym_uri_autolink] = ACTIONS(1662), + [sym_email_autolink] = ACTIONS(1662), + [sym__whitespace_ge_2] = ACTIONS(1662), + [aux_sym__whitespace_token1] = ACTIONS(1664), + [sym__word_no_digit] = ACTIONS(1662), + [sym__digits] = ACTIONS(1662), + [aux_sym__newline_token1] = ACTIONS(1662), + [sym__block_continuation] = ACTIONS(1662), + [sym__block_quote_continuation] = ACTIONS(1662), + [sym__block_quote_start] = ACTIONS(1662), + [sym__indented_chunk_start] = ACTIONS(1662), + [sym_atx_h1_marker] = ACTIONS(1662), + [sym_atx_h2_marker] = ACTIONS(1662), + [sym_atx_h3_marker] = ACTIONS(1662), + [sym_atx_h4_marker] = ACTIONS(1662), + [sym_atx_h5_marker] = ACTIONS(1662), + [sym_atx_h6_marker] = ACTIONS(1662), + [sym__thematic_break] = ACTIONS(1662), + [sym__list_marker_minus] = ACTIONS(1662), + [sym__list_marker_plus] = ACTIONS(1662), + [sym__list_marker_star] = ACTIONS(1662), + [sym__list_marker_parenthesis] = ACTIONS(1662), + [sym__list_marker_dot] = ACTIONS(1662), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1662), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1662), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1662), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1662), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1662), + [sym__fenced_code_block_start_backtick] = ACTIONS(1662), + [sym__fenced_code_block_start_tilde] = ACTIONS(1662), + [sym__blank_line_start] = ACTIONS(1662), + [sym__code_span_start] = ACTIONS(1662), + [sym__emphasis_open_star] = ACTIONS(1662), + [sym__emphasis_open_underscore] = ACTIONS(1662), + [sym__last_token_whitespace] = ACTIONS(1662), }, [349] = { - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), - [sym_shortcut_link] = STATE(850), - [sym_full_reference_link] = STATE(850), - [sym_collapsed_reference_link] = STATE(850), - [sym_inline_link] = STATE(850), - [sym_image] = STATE(850), - [sym__image_inline_link] = STATE(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(850), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(850), - [sym__whitespace] = STATE(850), - [sym__word] = STATE(850), - [sym__newline] = STATE(839), - [sym__text_inline] = STATE(850), - [sym__inline_element_no_newline] = STATE(850), - [aux_sym__inline_no_newline] = STATE(365), - [sym__emphasis_star_no_newline] = STATE(833), - [sym__strong_emphasis_star_no_newline] = STATE(850), - [sym__emphasis_underscore_no_newline] = STATE(833), - [sym__strong_emphasis_underscore_no_newline] = STATE(850), - [sym__code_span_no_newline] = STATE(850), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), + [sym_shortcut_link] = STATE(827), + [sym_full_reference_link] = STATE(827), + [sym_collapsed_reference_link] = STATE(827), + [sym_inline_link] = STATE(827), + [sym_image] = STATE(827), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(827), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(827), + [sym__whitespace] = STATE(827), + [sym__word] = STATE(827), + [sym__newline] = STATE(1761), + [sym__text_inline] = STATE(827), + [sym__inline_element_no_newline] = STATE(827), + [aux_sym__inline_no_newline] = STATE(373), + [sym__emphasis_star_no_newline] = STATE(828), + [sym__strong_emphasis_star_no_newline] = STATE(827), + [sym__emphasis_underscore_no_newline] = STATE(828), + [sym__strong_emphasis_underscore_no_newline] = STATE(827), + [sym__code_span_no_newline] = STATE(827), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -62399,7 +62406,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(7), [anon_sym_AT] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(971), [anon_sym_BSLASH] = ACTIONS(15), [anon_sym_RBRACK] = ACTIONS(7), [anon_sym_CARET] = ACTIONS(7), @@ -62409,57 +62416,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), [anon_sym_TILDE] = ACTIONS(7), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(848), - [anon_sym_LT_QMARK] = ACTIONS(850), - [aux_sym__html_block_4_token1] = ACTIONS(852), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(854), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(973), + [anon_sym_LT_QMARK] = ACTIONS(975), + [aux_sym__html_block_4_token1] = ACTIONS(977), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(979), [sym_backslash_escape] = ACTIONS(1612), [sym_entity_reference] = ACTIONS(1612), [sym_numeric_character_reference] = ACTIONS(1612), [sym_uri_autolink] = ACTIONS(1612), [sym_email_autolink] = ACTIONS(1612), - [sym__whitespace_ge_2] = ACTIONS(856), - [aux_sym__whitespace_token1] = ACTIONS(858), + [sym__whitespace_ge_2] = ACTIONS(981), + [aux_sym__whitespace_token1] = ACTIONS(983), [sym__word_no_digit] = ACTIONS(1612), [sym__digits] = ACTIONS(1612), - [aux_sym__newline_token1] = ACTIONS(1660), + [aux_sym__newline_token1] = ACTIONS(1642), [sym__code_span_start] = ACTIONS(1616), [sym__emphasis_open_star] = ACTIONS(1618), [sym__emphasis_open_underscore] = ACTIONS(1620), }, [350] = { - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), - [sym_shortcut_link] = STATE(850), - [sym_full_reference_link] = STATE(850), - [sym_collapsed_reference_link] = STATE(850), - [sym_inline_link] = STATE(850), - [sym_image] = STATE(850), - [sym__image_inline_link] = STATE(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(850), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(850), - [sym__whitespace] = STATE(850), - [sym__word] = STATE(850), - [sym__newline] = STATE(921), - [sym__text_inline] = STATE(850), - [sym__inline_element_no_newline] = STATE(850), - [aux_sym__inline_no_newline] = STATE(349), - [sym__emphasis_star_no_newline] = STATE(833), - [sym__strong_emphasis_star_no_newline] = STATE(850), - [sym__emphasis_underscore_no_newline] = STATE(833), - [sym__strong_emphasis_underscore_no_newline] = STATE(850), - [sym__code_span_no_newline] = STATE(850), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), + [sym_shortcut_link] = STATE(827), + [sym_full_reference_link] = STATE(827), + [sym_collapsed_reference_link] = STATE(827), + [sym_inline_link] = STATE(827), + [sym_image] = STATE(827), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(827), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(827), + [sym__whitespace] = STATE(827), + [sym__word] = STATE(827), + [sym__newline] = STATE(2043), + [sym__text_inline] = STATE(827), + [sym__inline_element_no_newline] = STATE(827), + [aux_sym__inline_no_newline] = STATE(359), + [sym__emphasis_star_no_newline] = STATE(828), + [sym__strong_emphasis_star_no_newline] = STATE(827), + [sym__emphasis_underscore_no_newline] = STATE(828), + [sym__strong_emphasis_underscore_no_newline] = STATE(827), + [sym__code_span_no_newline] = STATE(827), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -62482,7 +62489,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(7), [anon_sym_AT] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(971), [anon_sym_BSLASH] = ACTIONS(15), [anon_sym_RBRACK] = ACTIONS(7), [anon_sym_CARET] = ACTIONS(7), @@ -62492,57 +62499,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), [anon_sym_TILDE] = ACTIONS(7), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(848), - [anon_sym_LT_QMARK] = ACTIONS(850), - [aux_sym__html_block_4_token1] = ACTIONS(852), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(854), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(973), + [anon_sym_LT_QMARK] = ACTIONS(975), + [aux_sym__html_block_4_token1] = ACTIONS(977), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(979), [sym_backslash_escape] = ACTIONS(1612), [sym_entity_reference] = ACTIONS(1612), [sym_numeric_character_reference] = ACTIONS(1612), [sym_uri_autolink] = ACTIONS(1612), [sym_email_autolink] = ACTIONS(1612), - [sym__whitespace_ge_2] = ACTIONS(856), - [aux_sym__whitespace_token1] = ACTIONS(858), + [sym__whitespace_ge_2] = ACTIONS(981), + [aux_sym__whitespace_token1] = ACTIONS(983), [sym__word_no_digit] = ACTIONS(1612), [sym__digits] = ACTIONS(1612), - [aux_sym__newline_token1] = ACTIONS(1660), + [aux_sym__newline_token1] = ACTIONS(1666), [sym__code_span_start] = ACTIONS(1616), [sym__emphasis_open_star] = ACTIONS(1618), [sym__emphasis_open_underscore] = ACTIONS(1620), }, [351] = { - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), - [sym_shortcut_link] = STATE(850), - [sym_full_reference_link] = STATE(850), - [sym_collapsed_reference_link] = STATE(850), - [sym_inline_link] = STATE(850), - [sym_image] = STATE(850), - [sym__image_inline_link] = STATE(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(850), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(850), - [sym__whitespace] = STATE(850), - [sym__word] = STATE(850), - [sym__newline] = STATE(758), - [sym__text_inline] = STATE(850), - [sym__inline_element_no_newline] = STATE(850), - [aux_sym__inline_no_newline] = STATE(352), - [sym__emphasis_star_no_newline] = STATE(833), - [sym__strong_emphasis_star_no_newline] = STATE(850), - [sym__emphasis_underscore_no_newline] = STATE(833), - [sym__strong_emphasis_underscore_no_newline] = STATE(850), - [sym__code_span_no_newline] = STATE(850), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), + [sym_shortcut_link] = STATE(827), + [sym_full_reference_link] = STATE(827), + [sym_collapsed_reference_link] = STATE(827), + [sym_inline_link] = STATE(827), + [sym_image] = STATE(827), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(827), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(827), + [sym__whitespace] = STATE(827), + [sym__word] = STATE(827), + [sym__newline] = STATE(1834), + [sym__text_inline] = STATE(827), + [sym__inline_element_no_newline] = STATE(827), + [aux_sym__inline_no_newline] = STATE(334), + [sym__emphasis_star_no_newline] = STATE(828), + [sym__strong_emphasis_star_no_newline] = STATE(827), + [sym__emphasis_underscore_no_newline] = STATE(828), + [sym__strong_emphasis_underscore_no_newline] = STATE(827), + [sym__code_span_no_newline] = STATE(827), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -62565,7 +62572,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(7), [anon_sym_AT] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(971), [anon_sym_BSLASH] = ACTIONS(15), [anon_sym_RBRACK] = ACTIONS(7), [anon_sym_CARET] = ACTIONS(7), @@ -62575,57 +62582,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), [anon_sym_TILDE] = ACTIONS(7), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(848), - [anon_sym_LT_QMARK] = ACTIONS(850), - [aux_sym__html_block_4_token1] = ACTIONS(852), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(854), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(973), + [anon_sym_LT_QMARK] = ACTIONS(975), + [aux_sym__html_block_4_token1] = ACTIONS(977), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(979), [sym_backslash_escape] = ACTIONS(1612), [sym_entity_reference] = ACTIONS(1612), [sym_numeric_character_reference] = ACTIONS(1612), [sym_uri_autolink] = ACTIONS(1612), [sym_email_autolink] = ACTIONS(1612), - [sym__whitespace_ge_2] = ACTIONS(856), - [aux_sym__whitespace_token1] = ACTIONS(858), + [sym__whitespace_ge_2] = ACTIONS(981), + [aux_sym__whitespace_token1] = ACTIONS(983), [sym__word_no_digit] = ACTIONS(1612), [sym__digits] = ACTIONS(1612), - [aux_sym__newline_token1] = ACTIONS(1662), + [aux_sym__newline_token1] = ACTIONS(1628), [sym__code_span_start] = ACTIONS(1616), [sym__emphasis_open_star] = ACTIONS(1618), [sym__emphasis_open_underscore] = ACTIONS(1620), }, [352] = { - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), - [sym_shortcut_link] = STATE(850), - [sym_full_reference_link] = STATE(850), - [sym_collapsed_reference_link] = STATE(850), - [sym_inline_link] = STATE(850), - [sym_image] = STATE(850), - [sym__image_inline_link] = STATE(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(850), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(850), - [sym__whitespace] = STATE(850), - [sym__word] = STATE(850), - [sym__newline] = STATE(681), - [sym__text_inline] = STATE(850), - [sym__inline_element_no_newline] = STATE(850), - [aux_sym__inline_no_newline] = STATE(365), - [sym__emphasis_star_no_newline] = STATE(833), - [sym__strong_emphasis_star_no_newline] = STATE(850), - [sym__emphasis_underscore_no_newline] = STATE(833), - [sym__strong_emphasis_underscore_no_newline] = STATE(850), - [sym__code_span_no_newline] = STATE(850), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), + [sym_shortcut_link] = STATE(827), + [sym_full_reference_link] = STATE(827), + [sym_collapsed_reference_link] = STATE(827), + [sym_inline_link] = STATE(827), + [sym_image] = STATE(827), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(827), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(827), + [sym__whitespace] = STATE(827), + [sym__word] = STATE(827), + [sym__newline] = STATE(422), + [sym__text_inline] = STATE(827), + [sym__inline_element_no_newline] = STATE(827), + [aux_sym__inline_no_newline] = STATE(373), + [sym__emphasis_star_no_newline] = STATE(828), + [sym__strong_emphasis_star_no_newline] = STATE(827), + [sym__emphasis_underscore_no_newline] = STATE(828), + [sym__strong_emphasis_underscore_no_newline] = STATE(827), + [sym__code_span_no_newline] = STATE(827), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -62648,7 +62655,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(7), [anon_sym_AT] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(971), [anon_sym_BSLASH] = ACTIONS(15), [anon_sym_RBRACK] = ACTIONS(7), [anon_sym_CARET] = ACTIONS(7), @@ -62658,140 +62665,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), [anon_sym_TILDE] = ACTIONS(7), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(848), - [anon_sym_LT_QMARK] = ACTIONS(850), - [aux_sym__html_block_4_token1] = ACTIONS(852), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(854), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(973), + [anon_sym_LT_QMARK] = ACTIONS(975), + [aux_sym__html_block_4_token1] = ACTIONS(977), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(979), [sym_backslash_escape] = ACTIONS(1612), [sym_entity_reference] = ACTIONS(1612), [sym_numeric_character_reference] = ACTIONS(1612), [sym_uri_autolink] = ACTIONS(1612), [sym_email_autolink] = ACTIONS(1612), - [sym__whitespace_ge_2] = ACTIONS(856), - [aux_sym__whitespace_token1] = ACTIONS(858), + [sym__whitespace_ge_2] = ACTIONS(981), + [aux_sym__whitespace_token1] = ACTIONS(983), [sym__word_no_digit] = ACTIONS(1612), [sym__digits] = ACTIONS(1612), - [aux_sym__newline_token1] = ACTIONS(1662), + [aux_sym__newline_token1] = ACTIONS(1644), [sym__code_span_start] = ACTIONS(1616), [sym__emphasis_open_star] = ACTIONS(1618), [sym__emphasis_open_underscore] = ACTIONS(1620), }, [353] = { - [anon_sym_BANG] = ACTIONS(1664), - [anon_sym_DQUOTE] = ACTIONS(1664), - [anon_sym_POUND] = ACTIONS(1664), - [anon_sym_DOLLAR] = ACTIONS(1664), - [anon_sym_PERCENT] = ACTIONS(1664), - [anon_sym_AMP] = ACTIONS(1666), - [anon_sym_SQUOTE] = ACTIONS(1664), - [anon_sym_LPAREN] = ACTIONS(1664), - [anon_sym_RPAREN] = ACTIONS(1664), - [anon_sym_STAR] = ACTIONS(1664), - [anon_sym_PLUS] = ACTIONS(1664), - [anon_sym_COMMA] = ACTIONS(1664), - [anon_sym_DASH] = ACTIONS(1664), - [anon_sym_DOT] = ACTIONS(1664), - [anon_sym_SLASH] = ACTIONS(1664), - [anon_sym_COLON] = ACTIONS(1664), - [anon_sym_SEMI] = ACTIONS(1664), - [anon_sym_LT] = ACTIONS(1666), - [anon_sym_EQ] = ACTIONS(1664), - [anon_sym_GT] = ACTIONS(1664), - [anon_sym_QMARK] = ACTIONS(1664), - [anon_sym_AT] = ACTIONS(1664), - [anon_sym_LBRACK] = ACTIONS(1664), - [anon_sym_BSLASH] = ACTIONS(1666), - [anon_sym_RBRACK] = ACTIONS(1664), - [anon_sym_CARET] = ACTIONS(1664), - [anon_sym__] = ACTIONS(1664), - [anon_sym_BQUOTE] = ACTIONS(1664), - [anon_sym_LBRACE] = ACTIONS(1664), - [anon_sym_PIPE] = ACTIONS(1664), - [anon_sym_RBRACE] = ACTIONS(1664), - [anon_sym_TILDE] = ACTIONS(1664), - [aux_sym__html_block_1_token1] = ACTIONS(1664), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1666), - [anon_sym_LT_QMARK] = ACTIONS(1666), - [aux_sym__html_block_4_token1] = ACTIONS(1666), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1664), - [aux_sym__html_block_6_token1] = ACTIONS(1666), - [aux_sym__html_block_6_token2] = ACTIONS(1664), - [sym__open_tag_html_block] = ACTIONS(1664), - [sym__open_tag_html_block_newline] = ACTIONS(1664), - [sym__closing_tag_html_block] = ACTIONS(1664), - [sym__closing_tag_html_block_newline] = ACTIONS(1664), - [sym_backslash_escape] = ACTIONS(1664), - [sym_entity_reference] = ACTIONS(1664), - [sym_numeric_character_reference] = ACTIONS(1664), - [sym_uri_autolink] = ACTIONS(1664), - [sym_email_autolink] = ACTIONS(1664), - [sym__whitespace_ge_2] = ACTIONS(1664), - [aux_sym__whitespace_token1] = ACTIONS(1666), - [sym__word_no_digit] = ACTIONS(1664), - [sym__digits] = ACTIONS(1664), - [aux_sym__newline_token1] = ACTIONS(1664), - [sym__block_continuation] = ACTIONS(1664), - [sym__block_quote_continuation] = ACTIONS(1664), - [sym__block_quote_start] = ACTIONS(1664), - [sym__indented_chunk_start] = ACTIONS(1664), - [sym_atx_h1_marker] = ACTIONS(1664), - [sym_atx_h2_marker] = ACTIONS(1664), - [sym_atx_h3_marker] = ACTIONS(1664), - [sym_atx_h4_marker] = ACTIONS(1664), - [sym_atx_h5_marker] = ACTIONS(1664), - [sym_atx_h6_marker] = ACTIONS(1664), - [sym__thematic_break] = ACTIONS(1664), - [sym__list_marker_minus] = ACTIONS(1664), - [sym__list_marker_plus] = ACTIONS(1664), - [sym__list_marker_star] = ACTIONS(1664), - [sym__list_marker_parenthesis] = ACTIONS(1664), - [sym__list_marker_dot] = ACTIONS(1664), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1664), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1664), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1664), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1664), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1664), - [sym__fenced_code_block_start_backtick] = ACTIONS(1664), - [sym__fenced_code_block_start_tilde] = ACTIONS(1664), - [sym__blank_line_start] = ACTIONS(1664), - [sym__code_span_start] = ACTIONS(1664), - [sym__emphasis_open_star] = ACTIONS(1664), - [sym__emphasis_open_underscore] = ACTIONS(1664), - [sym__last_token_whitespace] = ACTIONS(1664), - }, - [354] = { - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), - [sym_shortcut_link] = STATE(850), - [sym_full_reference_link] = STATE(850), - [sym_collapsed_reference_link] = STATE(850), - [sym_inline_link] = STATE(850), - [sym_image] = STATE(850), - [sym__image_inline_link] = STATE(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(850), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(850), - [sym__whitespace] = STATE(850), - [sym__word] = STATE(850), - [sym__newline] = STATE(1839), - [sym__text_inline] = STATE(850), - [sym__inline_element_no_newline] = STATE(850), - [aux_sym__inline_no_newline] = STATE(340), - [sym__emphasis_star_no_newline] = STATE(833), - [sym__strong_emphasis_star_no_newline] = STATE(850), - [sym__emphasis_underscore_no_newline] = STATE(833), - [sym__strong_emphasis_underscore_no_newline] = STATE(850), - [sym__code_span_no_newline] = STATE(850), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), + [sym_shortcut_link] = STATE(827), + [sym_full_reference_link] = STATE(827), + [sym_collapsed_reference_link] = STATE(827), + [sym_inline_link] = STATE(827), + [sym_image] = STATE(827), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(827), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(827), + [sym__whitespace] = STATE(827), + [sym__word] = STATE(827), + [sym__newline] = STATE(734), + [sym__text_inline] = STATE(827), + [sym__inline_element_no_newline] = STATE(827), + [aux_sym__inline_no_newline] = STATE(373), + [sym__emphasis_star_no_newline] = STATE(828), + [sym__strong_emphasis_star_no_newline] = STATE(827), + [sym__emphasis_underscore_no_newline] = STATE(828), + [sym__strong_emphasis_underscore_no_newline] = STATE(827), + [sym__code_span_no_newline] = STATE(827), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -62814,7 +62738,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(7), [anon_sym_AT] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(971), [anon_sym_BSLASH] = ACTIONS(15), [anon_sym_RBRACK] = ACTIONS(7), [anon_sym_CARET] = ACTIONS(7), @@ -62824,57 +62748,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), [anon_sym_TILDE] = ACTIONS(7), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(848), - [anon_sym_LT_QMARK] = ACTIONS(850), - [aux_sym__html_block_4_token1] = ACTIONS(852), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(854), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(973), + [anon_sym_LT_QMARK] = ACTIONS(975), + [aux_sym__html_block_4_token1] = ACTIONS(977), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(979), [sym_backslash_escape] = ACTIONS(1612), [sym_entity_reference] = ACTIONS(1612), [sym_numeric_character_reference] = ACTIONS(1612), [sym_uri_autolink] = ACTIONS(1612), [sym_email_autolink] = ACTIONS(1612), - [sym__whitespace_ge_2] = ACTIONS(856), - [aux_sym__whitespace_token1] = ACTIONS(858), + [sym__whitespace_ge_2] = ACTIONS(981), + [aux_sym__whitespace_token1] = ACTIONS(983), [sym__word_no_digit] = ACTIONS(1612), [sym__digits] = ACTIONS(1612), - [aux_sym__newline_token1] = ACTIONS(1646), + [aux_sym__newline_token1] = ACTIONS(1656), [sym__code_span_start] = ACTIONS(1616), [sym__emphasis_open_star] = ACTIONS(1618), [sym__emphasis_open_underscore] = ACTIONS(1620), }, - [355] = { - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), - [sym_shortcut_link] = STATE(850), - [sym_full_reference_link] = STATE(850), - [sym_collapsed_reference_link] = STATE(850), - [sym_inline_link] = STATE(850), - [sym_image] = STATE(850), - [sym__image_inline_link] = STATE(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(850), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(850), - [sym__whitespace] = STATE(850), - [sym__word] = STATE(850), - [sym__newline] = STATE(1750), - [sym__text_inline] = STATE(850), - [sym__inline_element_no_newline] = STATE(850), - [aux_sym__inline_no_newline] = STATE(365), - [sym__emphasis_star_no_newline] = STATE(833), - [sym__strong_emphasis_star_no_newline] = STATE(850), - [sym__emphasis_underscore_no_newline] = STATE(833), - [sym__strong_emphasis_underscore_no_newline] = STATE(850), - [sym__code_span_no_newline] = STATE(850), + [354] = { + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), + [sym_shortcut_link] = STATE(827), + [sym_full_reference_link] = STATE(827), + [sym_collapsed_reference_link] = STATE(827), + [sym_inline_link] = STATE(827), + [sym_image] = STATE(827), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(827), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(827), + [sym__whitespace] = STATE(827), + [sym__word] = STATE(827), + [sym__newline] = STATE(1740), + [sym__text_inline] = STATE(827), + [sym__inline_element_no_newline] = STATE(827), + [aux_sym__inline_no_newline] = STATE(335), + [sym__emphasis_star_no_newline] = STATE(828), + [sym__strong_emphasis_star_no_newline] = STATE(827), + [sym__emphasis_underscore_no_newline] = STATE(828), + [sym__strong_emphasis_underscore_no_newline] = STATE(827), + [sym__code_span_no_newline] = STATE(827), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -62897,7 +62821,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(7), [anon_sym_AT] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(971), [anon_sym_BSLASH] = ACTIONS(15), [anon_sym_RBRACK] = ACTIONS(7), [anon_sym_CARET] = ACTIONS(7), @@ -62907,140 +62831,223 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), [anon_sym_TILDE] = ACTIONS(7), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(848), - [anon_sym_LT_QMARK] = ACTIONS(850), - [aux_sym__html_block_4_token1] = ACTIONS(852), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(854), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(973), + [anon_sym_LT_QMARK] = ACTIONS(975), + [aux_sym__html_block_4_token1] = ACTIONS(977), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(979), [sym_backslash_escape] = ACTIONS(1612), [sym_entity_reference] = ACTIONS(1612), [sym_numeric_character_reference] = ACTIONS(1612), [sym_uri_autolink] = ACTIONS(1612), [sym_email_autolink] = ACTIONS(1612), - [sym__whitespace_ge_2] = ACTIONS(856), - [aux_sym__whitespace_token1] = ACTIONS(858), + [sym__whitespace_ge_2] = ACTIONS(981), + [aux_sym__whitespace_token1] = ACTIONS(983), [sym__word_no_digit] = ACTIONS(1612), [sym__digits] = ACTIONS(1612), - [aux_sym__newline_token1] = ACTIONS(1658), + [aux_sym__newline_token1] = ACTIONS(1630), [sym__code_span_start] = ACTIONS(1616), [sym__emphasis_open_star] = ACTIONS(1618), [sym__emphasis_open_underscore] = ACTIONS(1620), }, + [355] = { + [anon_sym_BANG] = ACTIONS(1636), + [anon_sym_DQUOTE] = ACTIONS(1636), + [anon_sym_POUND] = ACTIONS(1636), + [anon_sym_DOLLAR] = ACTIONS(1636), + [anon_sym_PERCENT] = ACTIONS(1636), + [anon_sym_AMP] = ACTIONS(1638), + [anon_sym_SQUOTE] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1636), + [anon_sym_RPAREN] = ACTIONS(1636), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_COMMA] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_DOT] = ACTIONS(1636), + [anon_sym_SLASH] = ACTIONS(1636), + [anon_sym_COLON] = ACTIONS(1636), + [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_LT] = ACTIONS(1638), + [anon_sym_EQ] = ACTIONS(1636), + [anon_sym_GT] = ACTIONS(1636), + [anon_sym_QMARK] = ACTIONS(1636), + [anon_sym_AT] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(1636), + [anon_sym_BSLASH] = ACTIONS(1638), + [anon_sym_RBRACK] = ACTIONS(1636), + [anon_sym_CARET] = ACTIONS(1636), + [anon_sym__] = ACTIONS(1636), + [anon_sym_BQUOTE] = ACTIONS(1636), + [anon_sym_LBRACE] = ACTIONS(1636), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_RBRACE] = ACTIONS(1636), + [anon_sym_TILDE] = ACTIONS(1636), + [aux_sym__html_block_1_token1] = ACTIONS(1636), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1638), + [anon_sym_LT_QMARK] = ACTIONS(1638), + [aux_sym__html_block_4_token1] = ACTIONS(1638), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1636), + [aux_sym__html_block_6_token1] = ACTIONS(1638), + [aux_sym__html_block_6_token2] = ACTIONS(1636), + [sym__open_tag_html_block] = ACTIONS(1636), + [sym__open_tag_html_block_newline] = ACTIONS(1636), + [sym__closing_tag_html_block] = ACTIONS(1636), + [sym__closing_tag_html_block_newline] = ACTIONS(1636), + [sym_backslash_escape] = ACTIONS(1636), + [sym_entity_reference] = ACTIONS(1636), + [sym_numeric_character_reference] = ACTIONS(1636), + [sym_uri_autolink] = ACTIONS(1636), + [sym_email_autolink] = ACTIONS(1636), + [sym__whitespace_ge_2] = ACTIONS(1636), + [aux_sym__whitespace_token1] = ACTIONS(1638), + [sym__word_no_digit] = ACTIONS(1636), + [sym__digits] = ACTIONS(1636), + [aux_sym__newline_token1] = ACTIONS(1636), + [sym__block_close] = ACTIONS(1636), + [sym__block_quote_start] = ACTIONS(1636), + [sym__indented_chunk_start] = ACTIONS(1636), + [sym_atx_h1_marker] = ACTIONS(1636), + [sym_atx_h2_marker] = ACTIONS(1636), + [sym_atx_h3_marker] = ACTIONS(1636), + [sym_atx_h4_marker] = ACTIONS(1636), + [sym_atx_h5_marker] = ACTIONS(1636), + [sym_atx_h6_marker] = ACTIONS(1636), + [sym_setext_h1_underline] = ACTIONS(1668), + [sym_setext_h2_underline] = ACTIONS(1668), + [sym__thematic_break] = ACTIONS(1636), + [sym__list_marker_minus] = ACTIONS(1636), + [sym__list_marker_plus] = ACTIONS(1636), + [sym__list_marker_star] = ACTIONS(1636), + [sym__list_marker_parenthesis] = ACTIONS(1636), + [sym__list_marker_dot] = ACTIONS(1636), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1636), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1636), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1636), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1636), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1636), + [sym__fenced_code_block_start_backtick] = ACTIONS(1636), + [sym__fenced_code_block_start_tilde] = ACTIONS(1636), + [sym__blank_line_start] = ACTIONS(1636), + [sym__code_span_start] = ACTIONS(1636), + [sym__emphasis_open_star] = ACTIONS(1636), + [sym__emphasis_open_underscore] = ACTIONS(1636), + }, [356] = { - [anon_sym_BANG] = ACTIONS(1668), - [anon_sym_DQUOTE] = ACTIONS(1668), - [anon_sym_POUND] = ACTIONS(1668), - [anon_sym_DOLLAR] = ACTIONS(1668), - [anon_sym_PERCENT] = ACTIONS(1668), - [anon_sym_AMP] = ACTIONS(1670), - [anon_sym_SQUOTE] = ACTIONS(1668), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_RPAREN] = ACTIONS(1668), - [anon_sym_STAR] = ACTIONS(1668), - [anon_sym_PLUS] = ACTIONS(1668), - [anon_sym_COMMA] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1668), - [anon_sym_DOT] = ACTIONS(1668), - [anon_sym_SLASH] = ACTIONS(1668), - [anon_sym_COLON] = ACTIONS(1668), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_LT] = ACTIONS(1670), - [anon_sym_EQ] = ACTIONS(1668), - [anon_sym_GT] = ACTIONS(1668), - [anon_sym_QMARK] = ACTIONS(1668), - [anon_sym_AT] = ACTIONS(1668), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_BSLASH] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(1668), - [anon_sym_CARET] = ACTIONS(1668), - [anon_sym__] = ACTIONS(1668), - [anon_sym_BQUOTE] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1668), - [aux_sym__html_block_1_token1] = ACTIONS(1668), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1670), - [anon_sym_LT_QMARK] = ACTIONS(1670), - [aux_sym__html_block_4_token1] = ACTIONS(1670), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1668), - [aux_sym__html_block_6_token1] = ACTIONS(1670), - [aux_sym__html_block_6_token2] = ACTIONS(1668), - [sym__open_tag_html_block] = ACTIONS(1668), - [sym__open_tag_html_block_newline] = ACTIONS(1668), - [sym__closing_tag_html_block] = ACTIONS(1668), - [sym__closing_tag_html_block_newline] = ACTIONS(1668), - [sym_backslash_escape] = ACTIONS(1668), - [sym_entity_reference] = ACTIONS(1668), - [sym_numeric_character_reference] = ACTIONS(1668), - [sym_uri_autolink] = ACTIONS(1668), - [sym_email_autolink] = ACTIONS(1668), - [sym__whitespace_ge_2] = ACTIONS(1668), - [aux_sym__whitespace_token1] = ACTIONS(1670), - [sym__word_no_digit] = ACTIONS(1668), - [sym__digits] = ACTIONS(1668), - [aux_sym__newline_token1] = ACTIONS(1668), - [sym__block_continuation] = ACTIONS(1668), - [sym__block_quote_continuation] = ACTIONS(1668), - [sym__block_quote_start] = ACTIONS(1668), - [sym__indented_chunk_start] = ACTIONS(1668), - [sym_atx_h1_marker] = ACTIONS(1668), - [sym_atx_h2_marker] = ACTIONS(1668), - [sym_atx_h3_marker] = ACTIONS(1668), - [sym_atx_h4_marker] = ACTIONS(1668), - [sym_atx_h5_marker] = ACTIONS(1668), - [sym_atx_h6_marker] = ACTIONS(1668), - [sym__thematic_break] = ACTIONS(1668), - [sym__list_marker_minus] = ACTIONS(1668), - [sym__list_marker_plus] = ACTIONS(1668), - [sym__list_marker_star] = ACTIONS(1668), - [sym__list_marker_parenthesis] = ACTIONS(1668), - [sym__list_marker_dot] = ACTIONS(1668), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1668), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1668), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1668), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1668), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1668), - [sym__fenced_code_block_start_backtick] = ACTIONS(1668), - [sym__fenced_code_block_start_tilde] = ACTIONS(1668), - [sym__blank_line_start] = ACTIONS(1668), - [sym__code_span_start] = ACTIONS(1668), - [sym__emphasis_open_star] = ACTIONS(1668), - [sym__emphasis_open_underscore] = ACTIONS(1668), - [sym__last_token_whitespace] = ACTIONS(1668), + [anon_sym_BANG] = ACTIONS(1648), + [anon_sym_DQUOTE] = ACTIONS(1648), + [anon_sym_POUND] = ACTIONS(1648), + [anon_sym_DOLLAR] = ACTIONS(1648), + [anon_sym_PERCENT] = ACTIONS(1648), + [anon_sym_AMP] = ACTIONS(1650), + [anon_sym_SQUOTE] = ACTIONS(1648), + [anon_sym_LPAREN] = ACTIONS(1648), + [anon_sym_RPAREN] = ACTIONS(1648), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_COMMA] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_DOT] = ACTIONS(1648), + [anon_sym_SLASH] = ACTIONS(1648), + [anon_sym_COLON] = ACTIONS(1648), + [anon_sym_SEMI] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1650), + [anon_sym_EQ] = ACTIONS(1648), + [anon_sym_GT] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(1648), + [anon_sym_AT] = ACTIONS(1648), + [anon_sym_LBRACK] = ACTIONS(1648), + [anon_sym_BSLASH] = ACTIONS(1650), + [anon_sym_RBRACK] = ACTIONS(1648), + [anon_sym_CARET] = ACTIONS(1648), + [anon_sym__] = ACTIONS(1648), + [anon_sym_BQUOTE] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1648), + [anon_sym_PIPE] = ACTIONS(1648), + [anon_sym_RBRACE] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [aux_sym__html_block_1_token1] = ACTIONS(1648), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1650), + [anon_sym_LT_QMARK] = ACTIONS(1650), + [aux_sym__html_block_4_token1] = ACTIONS(1650), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1648), + [aux_sym__html_block_6_token1] = ACTIONS(1650), + [aux_sym__html_block_6_token2] = ACTIONS(1648), + [sym__open_tag_html_block] = ACTIONS(1648), + [sym__open_tag_html_block_newline] = ACTIONS(1648), + [sym__closing_tag_html_block] = ACTIONS(1648), + [sym__closing_tag_html_block_newline] = ACTIONS(1648), + [sym_backslash_escape] = ACTIONS(1648), + [sym_entity_reference] = ACTIONS(1648), + [sym_numeric_character_reference] = ACTIONS(1648), + [sym_uri_autolink] = ACTIONS(1648), + [sym_email_autolink] = ACTIONS(1648), + [sym__whitespace_ge_2] = ACTIONS(1648), + [aux_sym__whitespace_token1] = ACTIONS(1650), + [sym__word_no_digit] = ACTIONS(1648), + [sym__digits] = ACTIONS(1648), + [aux_sym__newline_token1] = ACTIONS(1648), + [sym__block_close] = ACTIONS(1648), + [sym__block_quote_start] = ACTIONS(1648), + [sym__indented_chunk_start] = ACTIONS(1648), + [sym_atx_h1_marker] = ACTIONS(1648), + [sym_atx_h2_marker] = ACTIONS(1648), + [sym_atx_h3_marker] = ACTIONS(1648), + [sym_atx_h4_marker] = ACTIONS(1648), + [sym_atx_h5_marker] = ACTIONS(1648), + [sym_atx_h6_marker] = ACTIONS(1648), + [sym_setext_h1_underline] = ACTIONS(1648), + [sym_setext_h2_underline] = ACTIONS(1648), + [sym__thematic_break] = ACTIONS(1648), + [sym__list_marker_minus] = ACTIONS(1648), + [sym__list_marker_plus] = ACTIONS(1648), + [sym__list_marker_star] = ACTIONS(1648), + [sym__list_marker_parenthesis] = ACTIONS(1648), + [sym__list_marker_dot] = ACTIONS(1648), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1648), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1648), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1648), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1648), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1648), + [sym__fenced_code_block_start_backtick] = ACTIONS(1648), + [sym__fenced_code_block_start_tilde] = ACTIONS(1648), + [sym__blank_line_start] = ACTIONS(1648), + [sym__code_span_start] = ACTIONS(1648), + [sym__emphasis_open_star] = ACTIONS(1648), + [sym__emphasis_open_underscore] = ACTIONS(1648), }, [357] = { - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), - [sym_shortcut_link] = STATE(850), - [sym_full_reference_link] = STATE(850), - [sym_collapsed_reference_link] = STATE(850), - [sym_inline_link] = STATE(850), - [sym_image] = STATE(850), - [sym__image_inline_link] = STATE(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(850), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(850), - [sym__whitespace] = STATE(850), - [sym__word] = STATE(850), - [sym__newline] = STATE(400), - [sym__text_inline] = STATE(850), - [sym__inline_element_no_newline] = STATE(850), - [aux_sym__inline_no_newline] = STATE(332), - [sym__emphasis_star_no_newline] = STATE(833), - [sym__strong_emphasis_star_no_newline] = STATE(850), - [sym__emphasis_underscore_no_newline] = STATE(833), - [sym__strong_emphasis_underscore_no_newline] = STATE(850), - [sym__code_span_no_newline] = STATE(850), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), + [sym_shortcut_link] = STATE(827), + [sym_full_reference_link] = STATE(827), + [sym_collapsed_reference_link] = STATE(827), + [sym_inline_link] = STATE(827), + [sym_image] = STATE(827), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(827), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(827), + [sym__whitespace] = STATE(827), + [sym__word] = STATE(827), + [sym__newline] = STATE(415), + [sym__text_inline] = STATE(827), + [sym__inline_element_no_newline] = STATE(827), + [aux_sym__inline_no_newline] = STATE(345), + [sym__emphasis_star_no_newline] = STATE(828), + [sym__strong_emphasis_star_no_newline] = STATE(827), + [sym__emphasis_underscore_no_newline] = STATE(828), + [sym__strong_emphasis_underscore_no_newline] = STATE(827), + [sym__code_span_no_newline] = STATE(827), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -63063,7 +63070,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(7), [anon_sym_AT] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(971), [anon_sym_BSLASH] = ACTIONS(15), [anon_sym_RBRACK] = ACTIONS(7), [anon_sym_CARET] = ACTIONS(7), @@ -63073,140 +63080,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), [anon_sym_TILDE] = ACTIONS(7), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(848), - [anon_sym_LT_QMARK] = ACTIONS(850), - [aux_sym__html_block_4_token1] = ACTIONS(852), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(854), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(973), + [anon_sym_LT_QMARK] = ACTIONS(975), + [aux_sym__html_block_4_token1] = ACTIONS(977), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(979), [sym_backslash_escape] = ACTIONS(1612), [sym_entity_reference] = ACTIONS(1612), [sym_numeric_character_reference] = ACTIONS(1612), [sym_uri_autolink] = ACTIONS(1612), [sym_email_autolink] = ACTIONS(1612), - [sym__whitespace_ge_2] = ACTIONS(856), - [aux_sym__whitespace_token1] = ACTIONS(858), + [sym__whitespace_ge_2] = ACTIONS(981), + [aux_sym__whitespace_token1] = ACTIONS(983), [sym__word_no_digit] = ACTIONS(1612), [sym__digits] = ACTIONS(1612), - [aux_sym__newline_token1] = ACTIONS(1622), + [aux_sym__newline_token1] = ACTIONS(1654), [sym__code_span_start] = ACTIONS(1616), [sym__emphasis_open_star] = ACTIONS(1618), [sym__emphasis_open_underscore] = ACTIONS(1620), }, [358] = { - [ts_builtin_sym_end] = ACTIONS(1638), - [anon_sym_BANG] = ACTIONS(1638), - [anon_sym_DQUOTE] = ACTIONS(1638), - [anon_sym_POUND] = ACTIONS(1638), - [anon_sym_DOLLAR] = ACTIONS(1638), - [anon_sym_PERCENT] = ACTIONS(1638), - [anon_sym_AMP] = ACTIONS(1640), - [anon_sym_SQUOTE] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(1638), - [anon_sym_RPAREN] = ACTIONS(1638), - [anon_sym_STAR] = ACTIONS(1638), - [anon_sym_PLUS] = ACTIONS(1638), - [anon_sym_COMMA] = ACTIONS(1638), - [anon_sym_DASH] = ACTIONS(1638), - [anon_sym_DOT] = ACTIONS(1638), - [anon_sym_SLASH] = ACTIONS(1638), - [anon_sym_COLON] = ACTIONS(1638), - [anon_sym_SEMI] = ACTIONS(1638), - [anon_sym_LT] = ACTIONS(1640), - [anon_sym_EQ] = ACTIONS(1638), - [anon_sym_GT] = ACTIONS(1638), - [anon_sym_QMARK] = ACTIONS(1638), - [anon_sym_AT] = ACTIONS(1638), - [anon_sym_LBRACK] = ACTIONS(1638), - [anon_sym_BSLASH] = ACTIONS(1640), - [anon_sym_RBRACK] = ACTIONS(1638), - [anon_sym_CARET] = ACTIONS(1638), - [anon_sym__] = ACTIONS(1638), - [anon_sym_BQUOTE] = ACTIONS(1638), - [anon_sym_LBRACE] = ACTIONS(1638), - [anon_sym_PIPE] = ACTIONS(1638), - [anon_sym_RBRACE] = ACTIONS(1638), - [anon_sym_TILDE] = ACTIONS(1638), - [aux_sym__html_block_1_token1] = ACTIONS(1638), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1640), - [anon_sym_LT_QMARK] = ACTIONS(1640), - [aux_sym__html_block_4_token1] = ACTIONS(1640), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1638), - [aux_sym__html_block_6_token1] = ACTIONS(1640), - [aux_sym__html_block_6_token2] = ACTIONS(1638), - [sym__open_tag_html_block] = ACTIONS(1638), - [sym__open_tag_html_block_newline] = ACTIONS(1638), - [sym__closing_tag_html_block] = ACTIONS(1638), - [sym__closing_tag_html_block_newline] = ACTIONS(1638), - [sym_backslash_escape] = ACTIONS(1638), - [sym_entity_reference] = ACTIONS(1638), - [sym_numeric_character_reference] = ACTIONS(1638), - [sym_uri_autolink] = ACTIONS(1638), - [sym_email_autolink] = ACTIONS(1638), - [sym__whitespace_ge_2] = ACTIONS(1638), - [aux_sym__whitespace_token1] = ACTIONS(1640), - [sym__word_no_digit] = ACTIONS(1638), - [sym__digits] = ACTIONS(1638), - [aux_sym__newline_token1] = ACTIONS(1638), - [sym__block_quote_start] = ACTIONS(1638), - [sym__indented_chunk_start] = ACTIONS(1638), - [sym_atx_h1_marker] = ACTIONS(1638), - [sym_atx_h2_marker] = ACTIONS(1638), - [sym_atx_h3_marker] = ACTIONS(1638), - [sym_atx_h4_marker] = ACTIONS(1638), - [sym_atx_h5_marker] = ACTIONS(1638), - [sym_atx_h6_marker] = ACTIONS(1638), - [sym_setext_h1_underline] = ACTIONS(1638), - [sym_setext_h2_underline] = ACTIONS(1638), - [sym__thematic_break] = ACTIONS(1638), - [sym__list_marker_minus] = ACTIONS(1638), - [sym__list_marker_plus] = ACTIONS(1638), - [sym__list_marker_star] = ACTIONS(1638), - [sym__list_marker_parenthesis] = ACTIONS(1638), - [sym__list_marker_dot] = ACTIONS(1638), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1638), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1638), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1638), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1638), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1638), - [sym__fenced_code_block_start_backtick] = ACTIONS(1638), - [sym__fenced_code_block_start_tilde] = ACTIONS(1638), - [sym__blank_line_start] = ACTIONS(1638), - [sym__code_span_start] = ACTIONS(1638), - [sym__emphasis_open_star] = ACTIONS(1638), - [sym__emphasis_open_underscore] = ACTIONS(1638), - }, - [359] = { - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), - [sym_shortcut_link] = STATE(850), - [sym_full_reference_link] = STATE(850), - [sym_collapsed_reference_link] = STATE(850), - [sym_inline_link] = STATE(850), - [sym_image] = STATE(850), - [sym__image_inline_link] = STATE(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(850), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(850), - [sym__whitespace] = STATE(850), - [sym__word] = STATE(850), - [sym__newline] = STATE(404), - [sym__text_inline] = STATE(850), - [sym__inline_element_no_newline] = STATE(850), - [aux_sym__inline_no_newline] = STATE(361), - [sym__emphasis_star_no_newline] = STATE(833), - [sym__strong_emphasis_star_no_newline] = STATE(850), - [sym__emphasis_underscore_no_newline] = STATE(833), - [sym__strong_emphasis_underscore_no_newline] = STATE(850), - [sym__code_span_no_newline] = STATE(850), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), + [sym_shortcut_link] = STATE(827), + [sym_full_reference_link] = STATE(827), + [sym_collapsed_reference_link] = STATE(827), + [sym_inline_link] = STATE(827), + [sym_image] = STATE(827), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(827), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(827), + [sym__whitespace] = STATE(827), + [sym__word] = STATE(827), + [sym__newline] = STATE(814), + [sym__text_inline] = STATE(827), + [sym__inline_element_no_newline] = STATE(827), + [aux_sym__inline_no_newline] = STATE(373), + [sym__emphasis_star_no_newline] = STATE(828), + [sym__strong_emphasis_star_no_newline] = STATE(827), + [sym__emphasis_underscore_no_newline] = STATE(828), + [sym__strong_emphasis_underscore_no_newline] = STATE(827), + [sym__code_span_no_newline] = STATE(827), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -63229,7 +63153,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(7), [anon_sym_AT] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(971), [anon_sym_BSLASH] = ACTIONS(15), [anon_sym_RBRACK] = ACTIONS(7), [anon_sym_CARET] = ACTIONS(7), @@ -63239,57 +63163,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), [anon_sym_TILDE] = ACTIONS(7), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(848), - [anon_sym_LT_QMARK] = ACTIONS(850), - [aux_sym__html_block_4_token1] = ACTIONS(852), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(854), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(973), + [anon_sym_LT_QMARK] = ACTIONS(975), + [aux_sym__html_block_4_token1] = ACTIONS(977), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(979), [sym_backslash_escape] = ACTIONS(1612), [sym_entity_reference] = ACTIONS(1612), [sym_numeric_character_reference] = ACTIONS(1612), [sym_uri_autolink] = ACTIONS(1612), [sym_email_autolink] = ACTIONS(1612), - [sym__whitespace_ge_2] = ACTIONS(856), - [aux_sym__whitespace_token1] = ACTIONS(858), + [sym__whitespace_ge_2] = ACTIONS(981), + [aux_sym__whitespace_token1] = ACTIONS(983), [sym__word_no_digit] = ACTIONS(1612), [sym__digits] = ACTIONS(1612), - [aux_sym__newline_token1] = ACTIONS(1672), + [aux_sym__newline_token1] = ACTIONS(1652), [sym__code_span_start] = ACTIONS(1616), [sym__emphasis_open_star] = ACTIONS(1618), [sym__emphasis_open_underscore] = ACTIONS(1620), }, - [360] = { - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), - [sym_shortcut_link] = STATE(850), - [sym_full_reference_link] = STATE(850), - [sym_collapsed_reference_link] = STATE(850), - [sym_inline_link] = STATE(850), - [sym_image] = STATE(850), - [sym__image_inline_link] = STATE(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(850), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(850), - [sym__whitespace] = STATE(850), - [sym__word] = STATE(850), - [sym__newline] = STATE(1669), - [sym__text_inline] = STATE(850), - [sym__inline_element_no_newline] = STATE(850), - [aux_sym__inline_no_newline] = STATE(365), - [sym__emphasis_star_no_newline] = STATE(833), - [sym__strong_emphasis_star_no_newline] = STATE(850), - [sym__emphasis_underscore_no_newline] = STATE(833), - [sym__strong_emphasis_underscore_no_newline] = STATE(850), - [sym__code_span_no_newline] = STATE(850), + [359] = { + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), + [sym_shortcut_link] = STATE(827), + [sym_full_reference_link] = STATE(827), + [sym_collapsed_reference_link] = STATE(827), + [sym_inline_link] = STATE(827), + [sym_image] = STATE(827), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(827), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(827), + [sym__whitespace] = STATE(827), + [sym__word] = STATE(827), + [sym__newline] = STATE(2049), + [sym__text_inline] = STATE(827), + [sym__inline_element_no_newline] = STATE(827), + [aux_sym__inline_no_newline] = STATE(373), + [sym__emphasis_star_no_newline] = STATE(828), + [sym__strong_emphasis_star_no_newline] = STATE(827), + [sym__emphasis_underscore_no_newline] = STATE(828), + [sym__strong_emphasis_underscore_no_newline] = STATE(827), + [sym__code_span_no_newline] = STATE(827), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -63312,7 +63236,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(7), [anon_sym_AT] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(971), [anon_sym_BSLASH] = ACTIONS(15), [anon_sym_RBRACK] = ACTIONS(7), [anon_sym_CARET] = ACTIONS(7), @@ -63322,57 +63246,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), [anon_sym_TILDE] = ACTIONS(7), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(848), - [anon_sym_LT_QMARK] = ACTIONS(850), - [aux_sym__html_block_4_token1] = ACTIONS(852), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(854), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(973), + [anon_sym_LT_QMARK] = ACTIONS(975), + [aux_sym__html_block_4_token1] = ACTIONS(977), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(979), [sym_backslash_escape] = ACTIONS(1612), [sym_entity_reference] = ACTIONS(1612), [sym_numeric_character_reference] = ACTIONS(1612), [sym_uri_autolink] = ACTIONS(1612), [sym_email_autolink] = ACTIONS(1612), - [sym__whitespace_ge_2] = ACTIONS(856), - [aux_sym__whitespace_token1] = ACTIONS(858), + [sym__whitespace_ge_2] = ACTIONS(981), + [aux_sym__whitespace_token1] = ACTIONS(983), [sym__word_no_digit] = ACTIONS(1612), [sym__digits] = ACTIONS(1612), - [aux_sym__newline_token1] = ACTIONS(1656), + [aux_sym__newline_token1] = ACTIONS(1666), [sym__code_span_start] = ACTIONS(1616), [sym__emphasis_open_star] = ACTIONS(1618), [sym__emphasis_open_underscore] = ACTIONS(1620), }, + [360] = { + [anon_sym_BANG] = ACTIONS(1670), + [anon_sym_DQUOTE] = ACTIONS(1670), + [anon_sym_POUND] = ACTIONS(1670), + [anon_sym_DOLLAR] = ACTIONS(1670), + [anon_sym_PERCENT] = ACTIONS(1670), + [anon_sym_AMP] = ACTIONS(1672), + [anon_sym_SQUOTE] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(1670), + [anon_sym_RPAREN] = ACTIONS(1670), + [anon_sym_STAR] = ACTIONS(1670), + [anon_sym_PLUS] = ACTIONS(1670), + [anon_sym_COMMA] = ACTIONS(1670), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_DOT] = ACTIONS(1670), + [anon_sym_SLASH] = ACTIONS(1670), + [anon_sym_COLON] = ACTIONS(1670), + [anon_sym_SEMI] = ACTIONS(1670), + [anon_sym_LT] = ACTIONS(1672), + [anon_sym_EQ] = ACTIONS(1670), + [anon_sym_GT] = ACTIONS(1670), + [anon_sym_QMARK] = ACTIONS(1670), + [anon_sym_AT] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_BSLASH] = ACTIONS(1672), + [anon_sym_RBRACK] = ACTIONS(1670), + [anon_sym_CARET] = ACTIONS(1670), + [anon_sym__] = ACTIONS(1670), + [anon_sym_BQUOTE] = ACTIONS(1670), + [anon_sym_LBRACE] = ACTIONS(1670), + [anon_sym_PIPE] = ACTIONS(1670), + [anon_sym_RBRACE] = ACTIONS(1670), + [anon_sym_TILDE] = ACTIONS(1670), + [aux_sym__html_block_1_token1] = ACTIONS(1670), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1672), + [anon_sym_LT_QMARK] = ACTIONS(1672), + [aux_sym__html_block_4_token1] = ACTIONS(1672), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1670), + [aux_sym__html_block_6_token1] = ACTIONS(1672), + [aux_sym__html_block_6_token2] = ACTIONS(1670), + [sym__open_tag_html_block] = ACTIONS(1670), + [sym__open_tag_html_block_newline] = ACTIONS(1670), + [sym__closing_tag_html_block] = ACTIONS(1670), + [sym__closing_tag_html_block_newline] = ACTIONS(1670), + [sym_backslash_escape] = ACTIONS(1670), + [sym_entity_reference] = ACTIONS(1670), + [sym_numeric_character_reference] = ACTIONS(1670), + [sym_uri_autolink] = ACTIONS(1670), + [sym_email_autolink] = ACTIONS(1670), + [sym__whitespace_ge_2] = ACTIONS(1670), + [aux_sym__whitespace_token1] = ACTIONS(1672), + [sym__word_no_digit] = ACTIONS(1670), + [sym__digits] = ACTIONS(1670), + [aux_sym__newline_token1] = ACTIONS(1670), + [sym__block_continuation] = ACTIONS(1670), + [sym__block_quote_continuation] = ACTIONS(1670), + [sym__block_quote_start] = ACTIONS(1670), + [sym__indented_chunk_start] = ACTIONS(1670), + [sym_atx_h1_marker] = ACTIONS(1670), + [sym_atx_h2_marker] = ACTIONS(1670), + [sym_atx_h3_marker] = ACTIONS(1670), + [sym_atx_h4_marker] = ACTIONS(1670), + [sym_atx_h5_marker] = ACTIONS(1670), + [sym_atx_h6_marker] = ACTIONS(1670), + [sym__thematic_break] = ACTIONS(1670), + [sym__list_marker_minus] = ACTIONS(1670), + [sym__list_marker_plus] = ACTIONS(1670), + [sym__list_marker_star] = ACTIONS(1670), + [sym__list_marker_parenthesis] = ACTIONS(1670), + [sym__list_marker_dot] = ACTIONS(1670), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1670), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1670), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1670), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1670), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1670), + [sym__fenced_code_block_start_backtick] = ACTIONS(1670), + [sym__fenced_code_block_start_tilde] = ACTIONS(1670), + [sym__blank_line_start] = ACTIONS(1670), + [sym__code_span_start] = ACTIONS(1670), + [sym__emphasis_open_star] = ACTIONS(1670), + [sym__emphasis_open_underscore] = ACTIONS(1670), + [sym__last_token_whitespace] = ACTIONS(1670), + }, [361] = { - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), - [sym_shortcut_link] = STATE(850), - [sym_full_reference_link] = STATE(850), - [sym_collapsed_reference_link] = STATE(850), - [sym_inline_link] = STATE(850), - [sym_image] = STATE(850), - [sym__image_inline_link] = STATE(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(850), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(850), - [sym__whitespace] = STATE(850), - [sym__word] = STATE(850), - [sym__newline] = STATE(377), - [sym__text_inline] = STATE(850), - [sym__inline_element_no_newline] = STATE(850), - [aux_sym__inline_no_newline] = STATE(365), - [sym__emphasis_star_no_newline] = STATE(833), - [sym__strong_emphasis_star_no_newline] = STATE(850), - [sym__emphasis_underscore_no_newline] = STATE(833), - [sym__strong_emphasis_underscore_no_newline] = STATE(850), - [sym__code_span_no_newline] = STATE(850), + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), + [sym_shortcut_link] = STATE(827), + [sym_full_reference_link] = STATE(827), + [sym_collapsed_reference_link] = STATE(827), + [sym_inline_link] = STATE(827), + [sym_image] = STATE(827), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(827), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(827), + [sym__whitespace] = STATE(827), + [sym__word] = STATE(827), + [sym__newline] = STATE(1834), + [sym__text_inline] = STATE(827), + [sym__inline_element_no_newline] = STATE(827), + [aux_sym__inline_no_newline] = STATE(331), + [sym__emphasis_star_no_newline] = STATE(828), + [sym__strong_emphasis_star_no_newline] = STATE(827), + [sym__emphasis_underscore_no_newline] = STATE(828), + [sym__strong_emphasis_underscore_no_newline] = STATE(827), + [sym__code_span_no_newline] = STATE(827), [anon_sym_BANG] = ACTIONS(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), @@ -63395,7 +63402,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(7), [anon_sym_QMARK] = ACTIONS(7), [anon_sym_AT] = ACTIONS(7), - [anon_sym_LBRACK] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(971), [anon_sym_BSLASH] = ACTIONS(15), [anon_sym_RBRACK] = ACTIONS(7), [anon_sym_CARET] = ACTIONS(7), @@ -63405,88 +63412,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), [anon_sym_TILDE] = ACTIONS(7), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(848), - [anon_sym_LT_QMARK] = ACTIONS(850), - [aux_sym__html_block_4_token1] = ACTIONS(852), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(854), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(973), + [anon_sym_LT_QMARK] = ACTIONS(975), + [aux_sym__html_block_4_token1] = ACTIONS(977), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(979), [sym_backslash_escape] = ACTIONS(1612), [sym_entity_reference] = ACTIONS(1612), [sym_numeric_character_reference] = ACTIONS(1612), [sym_uri_autolink] = ACTIONS(1612), [sym_email_autolink] = ACTIONS(1612), - [sym__whitespace_ge_2] = ACTIONS(856), - [aux_sym__whitespace_token1] = ACTIONS(858), + [sym__whitespace_ge_2] = ACTIONS(981), + [aux_sym__whitespace_token1] = ACTIONS(983), [sym__word_no_digit] = ACTIONS(1612), [sym__digits] = ACTIONS(1612), - [aux_sym__newline_token1] = ACTIONS(1672), + [aux_sym__newline_token1] = ACTIONS(1614), [sym__code_span_start] = ACTIONS(1616), [sym__emphasis_open_star] = ACTIONS(1618), [sym__emphasis_open_underscore] = ACTIONS(1620), }, [362] = { - [sym__link_text] = STATE(2133), - [sym__link_text_non_empty] = STATE(795), - [sym_shortcut_link] = STATE(366), - [sym_full_reference_link] = STATE(366), - [sym_collapsed_reference_link] = STATE(366), - [sym_inline_link] = STATE(366), - [sym_image] = STATE(366), - [sym__image_inline_link] = STATE(801), - [sym__image_shortcut_link] = STATE(801), - [sym__image_full_reference_link] = STATE(801), - [sym__image_collapsed_reference_link] = STATE(801), - [sym__image_description] = STATE(2122), - [sym__image_description_non_empty] = STATE(802), - [sym_html_tag] = STATE(366), - [sym__open_tag] = STATE(683), - [sym__closing_tag] = STATE(683), - [sym__html_comment] = STATE(683), - [sym__processing_instruction] = STATE(683), - [sym__declaration] = STATE(683), - [sym__cdata_section] = STATE(683), - [sym_hard_line_break] = STATE(366), - [sym__whitespace] = STATE(366), - [sym__word] = STATE(366), - [sym__text_inline_no_underscore] = STATE(366), - [sym__inline_element_no_newline_no_underscore] = STATE(366), - [aux_sym__inline_no_newline_no_underscore] = STATE(366), - [sym__emphasis_star_no_newline] = STATE(816), - [sym__strong_emphasis_star_no_newline] = STATE(366), - [sym__emphasis_underscore_no_newline] = STATE(816), - [sym__strong_emphasis_underscore_no_newline] = STATE(366), - [sym__code_span_no_newline] = STATE(366), + [sym__link_text] = STATE(2126), + [sym__link_text_non_empty] = STATE(716), + [sym_shortcut_link] = STATE(372), + [sym_full_reference_link] = STATE(372), + [sym_collapsed_reference_link] = STATE(372), + [sym_inline_link] = STATE(372), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(663), + [sym__image_shortcut_link] = STATE(663), + [sym__image_full_reference_link] = STATE(663), + [sym__image_collapsed_reference_link] = STATE(663), + [sym__image_description] = STATE(2134), + [sym__image_description_non_empty] = STATE(705), + [sym_html_tag] = STATE(372), + [sym__open_tag] = STATE(702), + [sym__closing_tag] = STATE(702), + [sym__html_comment] = STATE(702), + [sym__processing_instruction] = STATE(702), + [sym__declaration] = STATE(702), + [sym__cdata_section] = STATE(702), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(372), + [sym__word] = STATE(372), + [sym__text_inline_no_underscore] = STATE(372), + [sym__inline_element_no_newline_no_underscore] = STATE(372), + [aux_sym__inline_no_newline_no_underscore] = STATE(372), + [sym__emphasis_star_no_newline] = STATE(848), + [sym__strong_emphasis_star_no_newline] = STATE(372), + [sym__emphasis_underscore_no_newline] = STATE(848), + [sym__strong_emphasis_underscore_no_newline] = STATE(372), + [sym__code_span_no_newline] = STATE(372), [anon_sym_BANG] = ACTIONS(1674), - [anon_sym_DQUOTE] = ACTIONS(713), - [anon_sym_POUND] = ACTIONS(713), - [anon_sym_DOLLAR] = ACTIONS(713), - [anon_sym_PERCENT] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(713), - [anon_sym_LPAREN] = ACTIONS(713), - [anon_sym_RPAREN] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(713), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_COMMA] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_DOT] = ACTIONS(713), - [anon_sym_SLASH] = ACTIONS(713), - [anon_sym_COLON] = ACTIONS(713), - [anon_sym_SEMI] = ACTIONS(713), - [anon_sym_LT] = ACTIONS(717), - [anon_sym_EQ] = ACTIONS(713), - [anon_sym_GT] = ACTIONS(713), - [anon_sym_QMARK] = ACTIONS(713), - [anon_sym_AT] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(561), + [anon_sym_POUND] = ACTIONS(561), + [anon_sym_DOLLAR] = ACTIONS(561), + [anon_sym_PERCENT] = ACTIONS(561), + [anon_sym_AMP] = ACTIONS(563), + [anon_sym_SQUOTE] = ACTIONS(561), + [anon_sym_LPAREN] = ACTIONS(561), + [anon_sym_RPAREN] = ACTIONS(561), + [anon_sym_STAR] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_COMMA] = ACTIONS(561), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_DOT] = ACTIONS(561), + [anon_sym_SLASH] = ACTIONS(561), + [anon_sym_COLON] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(561), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_EQ] = ACTIONS(561), + [anon_sym_GT] = ACTIONS(561), + [anon_sym_QMARK] = ACTIONS(561), + [anon_sym_AT] = ACTIONS(561), [anon_sym_LBRACK] = ACTIONS(1676), [anon_sym_BSLASH] = ACTIONS(1678), - [anon_sym_RBRACK] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym__] = ACTIONS(713), - [anon_sym_BQUOTE] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(713), - [anon_sym_PIPE] = ACTIONS(713), - [anon_sym_RBRACE] = ACTIONS(713), - [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_RBRACK] = ACTIONS(561), + [anon_sym_CARET] = ACTIONS(561), + [anon_sym__] = ACTIONS(561), + [anon_sym_BQUOTE] = ACTIONS(561), + [anon_sym_LBRACE] = ACTIONS(561), + [anon_sym_PIPE] = ACTIONS(561), + [anon_sym_RBRACE] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1680), [anon_sym_LT_QMARK] = ACTIONS(1682), [aux_sym__html_block_4_token1] = ACTIONS(1684), @@ -63497,7 +63504,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_uri_autolink] = ACTIONS(1688), [sym_email_autolink] = ACTIONS(1688), [sym__whitespace_ge_2] = ACTIONS(1690), - [aux_sym__whitespace_token1] = ACTIONS(735), + [aux_sym__whitespace_token1] = ACTIONS(583), [sym__word_no_digit] = ACTIONS(1688), [sym__digits] = ACTIONS(1688), [sym__code_span_start] = ACTIONS(1692), @@ -63506,479 +63513,233 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_close_underscore] = ACTIONS(1698), }, [363] = { - [sym__link_text] = STATE(2135), - [sym__link_text_non_empty] = STATE(707), - [sym_shortcut_link] = STATE(369), - [sym_full_reference_link] = STATE(369), - [sym_collapsed_reference_link] = STATE(369), - [sym_inline_link] = STATE(369), - [sym_image] = STATE(369), - [sym__image_inline_link] = STATE(708), - [sym__image_shortcut_link] = STATE(708), - [sym__image_full_reference_link] = STATE(708), - [sym__image_collapsed_reference_link] = STATE(708), - [sym__image_description] = STATE(2137), - [sym__image_description_non_empty] = STATE(709), - [sym_html_tag] = STATE(369), - [sym__open_tag] = STATE(710), - [sym__closing_tag] = STATE(710), - [sym__html_comment] = STATE(710), - [sym__processing_instruction] = STATE(710), - [sym__declaration] = STATE(710), - [sym__cdata_section] = STATE(710), - [sym_hard_line_break] = STATE(369), - [sym__whitespace] = STATE(369), - [sym__word] = STATE(369), - [sym__text_inline_no_star] = STATE(369), - [sym__inline_element_no_newline_no_star] = STATE(369), - [aux_sym__inline_no_newline_no_star] = STATE(369), - [sym__emphasis_star_no_newline] = STATE(815), - [sym__strong_emphasis_star_no_newline] = STATE(369), - [sym__emphasis_underscore_no_newline] = STATE(823), - [sym__strong_emphasis_underscore_no_newline] = STATE(369), - [sym__code_span_no_newline] = STATE(369), + [sym__link_text] = STATE(2124), + [sym__link_text_non_empty] = STATE(712), + [sym_shortcut_link] = STATE(363), + [sym_full_reference_link] = STATE(363), + [sym_collapsed_reference_link] = STATE(363), + [sym_inline_link] = STATE(363), + [sym_image] = STATE(363), + [sym__image_inline_link] = STATE(713), + [sym__image_shortcut_link] = STATE(713), + [sym__image_full_reference_link] = STATE(713), + [sym__image_collapsed_reference_link] = STATE(713), + [sym__image_description] = STATE(2120), + [sym__image_description_non_empty] = STATE(714), + [sym_html_tag] = STATE(363), + [sym__open_tag] = STATE(715), + [sym__closing_tag] = STATE(715), + [sym__html_comment] = STATE(715), + [sym__processing_instruction] = STATE(715), + [sym__declaration] = STATE(715), + [sym__cdata_section] = STATE(715), + [sym_hard_line_break] = STATE(363), + [sym__whitespace] = STATE(363), + [sym__word] = STATE(363), + [sym__text_inline_no_star] = STATE(363), + [sym__inline_element_no_newline_no_star] = STATE(363), + [aux_sym__inline_no_newline_no_star] = STATE(363), + [sym__emphasis_star_no_newline] = STATE(846), + [sym__strong_emphasis_star_no_newline] = STATE(363), + [sym__emphasis_underscore_no_newline] = STATE(846), + [sym__strong_emphasis_underscore_no_newline] = STATE(363), + [sym__code_span_no_newline] = STATE(363), [anon_sym_BANG] = ACTIONS(1700), - [anon_sym_DQUOTE] = ACTIONS(1504), - [anon_sym_POUND] = ACTIONS(1504), - [anon_sym_DOLLAR] = ACTIONS(1504), - [anon_sym_PERCENT] = ACTIONS(1504), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_SQUOTE] = ACTIONS(1504), - [anon_sym_LPAREN] = ACTIONS(1504), - [anon_sym_RPAREN] = ACTIONS(1504), - [anon_sym_STAR] = ACTIONS(1504), - [anon_sym_PLUS] = ACTIONS(1504), - [anon_sym_COMMA] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1504), - [anon_sym_DOT] = ACTIONS(1504), - [anon_sym_SLASH] = ACTIONS(1504), - [anon_sym_COLON] = ACTIONS(1504), - [anon_sym_SEMI] = ACTIONS(1504), - [anon_sym_LT] = ACTIONS(1510), - [anon_sym_EQ] = ACTIONS(1504), - [anon_sym_GT] = ACTIONS(1504), - [anon_sym_QMARK] = ACTIONS(1504), - [anon_sym_AT] = ACTIONS(1504), - [anon_sym_LBRACK] = ACTIONS(1703), - [anon_sym_BSLASH] = ACTIONS(1706), - [anon_sym_RBRACK] = ACTIONS(1504), - [anon_sym_CARET] = ACTIONS(1504), - [anon_sym__] = ACTIONS(1504), - [anon_sym_BQUOTE] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(1504), - [anon_sym_PIPE] = ACTIONS(1504), - [anon_sym_RBRACE] = ACTIONS(1504), - [anon_sym_TILDE] = ACTIONS(1504), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1709), - [anon_sym_LT_QMARK] = ACTIONS(1712), - [aux_sym__html_block_4_token1] = ACTIONS(1715), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1718), - [sym_backslash_escape] = ACTIONS(1721), - [sym_entity_reference] = ACTIONS(1721), - [sym_numeric_character_reference] = ACTIONS(1721), - [sym_uri_autolink] = ACTIONS(1721), - [sym_email_autolink] = ACTIONS(1721), - [sym__whitespace_ge_2] = ACTIONS(1724), - [aux_sym__whitespace_token1] = ACTIONS(1537), - [sym__word_no_digit] = ACTIONS(1721), - [sym__digits] = ACTIONS(1721), - [aux_sym__newline_token1] = ACTIONS(1727), - [sym__code_span_start] = ACTIONS(1729), - [sym__emphasis_open_star] = ACTIONS(1732), - [sym__emphasis_open_underscore] = ACTIONS(1735), + [anon_sym_DQUOTE] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1703), + [anon_sym_PERCENT] = ACTIONS(1703), + [anon_sym_AMP] = ACTIONS(1706), + [anon_sym_SQUOTE] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_RPAREN] = ACTIONS(1703), + [anon_sym_STAR] = ACTIONS(1703), + [anon_sym_PLUS] = ACTIONS(1703), + [anon_sym_COMMA] = ACTIONS(1703), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_DOT] = ACTIONS(1703), + [anon_sym_SLASH] = ACTIONS(1703), + [anon_sym_COLON] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_LT] = ACTIONS(1709), + [anon_sym_EQ] = ACTIONS(1703), + [anon_sym_GT] = ACTIONS(1703), + [anon_sym_QMARK] = ACTIONS(1703), + [anon_sym_AT] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1712), + [anon_sym_BSLASH] = ACTIONS(1715), + [anon_sym_RBRACK] = ACTIONS(1703), + [anon_sym_CARET] = ACTIONS(1703), + [anon_sym__] = ACTIONS(1703), + [anon_sym_BQUOTE] = ACTIONS(1703), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_TILDE] = ACTIONS(1703), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1718), + [anon_sym_LT_QMARK] = ACTIONS(1721), + [aux_sym__html_block_4_token1] = ACTIONS(1724), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1727), + [sym_backslash_escape] = ACTIONS(1730), + [sym_entity_reference] = ACTIONS(1730), + [sym_numeric_character_reference] = ACTIONS(1730), + [sym_uri_autolink] = ACTIONS(1730), + [sym_email_autolink] = ACTIONS(1730), + [sym__whitespace_ge_2] = ACTIONS(1733), + [aux_sym__whitespace_token1] = ACTIONS(1736), + [sym__word_no_digit] = ACTIONS(1730), + [sym__digits] = ACTIONS(1730), + [sym__code_span_start] = ACTIONS(1739), + [sym__emphasis_open_star] = ACTIONS(1742), + [sym__emphasis_open_underscore] = ACTIONS(1745), + [sym__emphasis_close_star] = ACTIONS(1748), }, [364] = { - [sym__link_text] = STATE(2135), - [sym__link_text_non_empty] = STATE(707), - [sym_shortcut_link] = STATE(375), - [sym_full_reference_link] = STATE(375), - [sym_collapsed_reference_link] = STATE(375), - [sym_inline_link] = STATE(375), - [sym_image] = STATE(375), - [sym__image_inline_link] = STATE(708), - [sym__image_shortcut_link] = STATE(708), - [sym__image_full_reference_link] = STATE(708), - [sym__image_collapsed_reference_link] = STATE(708), - [sym__image_description] = STATE(2137), - [sym__image_description_non_empty] = STATE(709), - [sym_html_tag] = STATE(375), - [sym__open_tag] = STATE(710), - [sym__closing_tag] = STATE(710), - [sym__html_comment] = STATE(710), - [sym__processing_instruction] = STATE(710), - [sym__declaration] = STATE(710), - [sym__cdata_section] = STATE(710), - [sym_hard_line_break] = STATE(375), - [sym__whitespace] = STATE(375), - [sym__word] = STATE(375), - [sym__text_inline_no_star] = STATE(375), - [sym__inline_element_no_newline_no_star] = STATE(375), - [aux_sym__inline_no_newline_no_star] = STATE(375), - [sym__emphasis_star_no_newline] = STATE(823), - [sym__strong_emphasis_star_no_newline] = STATE(375), - [sym__emphasis_underscore_no_newline] = STATE(823), - [sym__strong_emphasis_underscore_no_newline] = STATE(375), - [sym__code_span_no_newline] = STATE(375), - [anon_sym_BANG] = ACTIONS(1738), - [anon_sym_DQUOTE] = ACTIONS(580), - [anon_sym_POUND] = ACTIONS(580), - [anon_sym_DOLLAR] = ACTIONS(580), - [anon_sym_PERCENT] = ACTIONS(580), - [anon_sym_AMP] = ACTIONS(582), - [anon_sym_SQUOTE] = ACTIONS(580), - [anon_sym_LPAREN] = ACTIONS(580), - [anon_sym_RPAREN] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(580), - [anon_sym_COMMA] = ACTIONS(580), - [anon_sym_DASH] = ACTIONS(580), - [anon_sym_DOT] = ACTIONS(580), - [anon_sym_SLASH] = ACTIONS(580), - [anon_sym_COLON] = ACTIONS(580), - [anon_sym_SEMI] = ACTIONS(580), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_EQ] = ACTIONS(580), - [anon_sym_GT] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(580), - [anon_sym_AT] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_BSLASH] = ACTIONS(1742), - [anon_sym_RBRACK] = ACTIONS(580), - [anon_sym_CARET] = ACTIONS(580), - [anon_sym__] = ACTIONS(580), - [anon_sym_BQUOTE] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(580), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_RBRACE] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(580), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1744), - [anon_sym_LT_QMARK] = ACTIONS(1746), - [aux_sym__html_block_4_token1] = ACTIONS(1748), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1750), - [sym_backslash_escape] = ACTIONS(1752), - [sym_entity_reference] = ACTIONS(1752), - [sym_numeric_character_reference] = ACTIONS(1752), - [sym_uri_autolink] = ACTIONS(1752), - [sym_email_autolink] = ACTIONS(1752), - [sym__whitespace_ge_2] = ACTIONS(1754), - [aux_sym__whitespace_token1] = ACTIONS(602), - [sym__word_no_digit] = ACTIONS(1752), - [sym__digits] = ACTIONS(1752), - [sym__code_span_start] = ACTIONS(1756), - [sym__emphasis_open_star] = ACTIONS(1758), - [sym__emphasis_open_underscore] = ACTIONS(1760), - [sym__emphasis_close_star] = ACTIONS(1762), + [sym__blank_line] = STATE(2433), + [anon_sym_BANG] = ACTIONS(1636), + [anon_sym_DQUOTE] = ACTIONS(1636), + [anon_sym_POUND] = ACTIONS(1636), + [anon_sym_DOLLAR] = ACTIONS(1636), + [anon_sym_PERCENT] = ACTIONS(1636), + [anon_sym_AMP] = ACTIONS(1638), + [anon_sym_SQUOTE] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1636), + [anon_sym_RPAREN] = ACTIONS(1636), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_COMMA] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_DOT] = ACTIONS(1636), + [anon_sym_SLASH] = ACTIONS(1636), + [anon_sym_COLON] = ACTIONS(1636), + [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_LT] = ACTIONS(1638), + [anon_sym_EQ] = ACTIONS(1636), + [anon_sym_GT] = ACTIONS(1636), + [anon_sym_QMARK] = ACTIONS(1636), + [anon_sym_AT] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(1636), + [anon_sym_BSLASH] = ACTIONS(1638), + [anon_sym_RBRACK] = ACTIONS(1636), + [anon_sym_CARET] = ACTIONS(1636), + [anon_sym__] = ACTIONS(1636), + [anon_sym_BQUOTE] = ACTIONS(1636), + [anon_sym_LBRACE] = ACTIONS(1636), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_RBRACE] = ACTIONS(1636), + [anon_sym_TILDE] = ACTIONS(1636), + [aux_sym__html_block_1_token1] = ACTIONS(1636), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1638), + [anon_sym_LT_QMARK] = ACTIONS(1638), + [aux_sym__html_block_4_token1] = ACTIONS(1638), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1636), + [aux_sym__html_block_6_token1] = ACTIONS(1638), + [aux_sym__html_block_6_token2] = ACTIONS(1636), + [sym__open_tag_html_block] = ACTIONS(1636), + [sym__open_tag_html_block_newline] = ACTIONS(1636), + [sym__closing_tag_html_block] = ACTIONS(1636), + [sym__closing_tag_html_block_newline] = ACTIONS(1636), + [sym_backslash_escape] = ACTIONS(1636), + [sym_entity_reference] = ACTIONS(1636), + [sym_numeric_character_reference] = ACTIONS(1636), + [sym_uri_autolink] = ACTIONS(1636), + [sym_email_autolink] = ACTIONS(1636), + [sym__whitespace_ge_2] = ACTIONS(1636), + [aux_sym__whitespace_token1] = ACTIONS(1638), + [sym__word_no_digit] = ACTIONS(1636), + [sym__digits] = ACTIONS(1636), + [aux_sym__newline_token1] = ACTIONS(1636), + [sym__block_close] = ACTIONS(1636), + [sym__block_quote_start] = ACTIONS(1636), + [sym__indented_chunk_start] = ACTIONS(1636), + [sym_atx_h1_marker] = ACTIONS(1636), + [sym_atx_h2_marker] = ACTIONS(1636), + [sym_atx_h3_marker] = ACTIONS(1636), + [sym_atx_h4_marker] = ACTIONS(1636), + [sym_atx_h5_marker] = ACTIONS(1636), + [sym_atx_h6_marker] = ACTIONS(1636), + [sym__thematic_break] = ACTIONS(1636), + [sym__list_marker_minus] = ACTIONS(1636), + [sym__list_marker_plus] = ACTIONS(1636), + [sym__list_marker_star] = ACTIONS(1636), + [sym__list_marker_parenthesis] = ACTIONS(1636), + [sym__list_marker_dot] = ACTIONS(1636), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1636), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1636), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1636), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1636), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1636), + [sym__fenced_code_block_start_backtick] = ACTIONS(1636), + [sym__fenced_code_block_start_tilde] = ACTIONS(1636), + [sym__blank_line_start] = ACTIONS(1750), + [sym__code_span_start] = ACTIONS(1636), + [sym__emphasis_open_star] = ACTIONS(1636), + [sym__emphasis_open_underscore] = ACTIONS(1636), }, [365] = { - [sym__link_text] = STATE(2132), - [sym__link_text_non_empty] = STATE(873), - [sym_shortcut_link] = STATE(850), - [sym_full_reference_link] = STATE(850), - [sym_collapsed_reference_link] = STATE(850), - [sym_inline_link] = STATE(850), - [sym_image] = STATE(850), - [sym__image_inline_link] = STATE(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(905), - [sym_html_tag] = STATE(850), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(850), - [sym__whitespace] = STATE(850), - [sym__word] = STATE(850), - [sym__text_inline] = STATE(850), - [sym__inline_element_no_newline] = STATE(850), - [aux_sym__inline_no_newline] = STATE(365), - [sym__emphasis_star_no_newline] = STATE(833), - [sym__strong_emphasis_star_no_newline] = STATE(850), - [sym__emphasis_underscore_no_newline] = STATE(833), - [sym__strong_emphasis_underscore_no_newline] = STATE(850), - [sym__code_span_no_newline] = STATE(850), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_DQUOTE] = ACTIONS(1767), - [anon_sym_POUND] = ACTIONS(1767), - [anon_sym_DOLLAR] = ACTIONS(1767), - [anon_sym_PERCENT] = ACTIONS(1767), - [anon_sym_AMP] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1767), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_RPAREN] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1767), - [anon_sym_PLUS] = ACTIONS(1767), - [anon_sym_COMMA] = ACTIONS(1767), - [anon_sym_DASH] = ACTIONS(1767), - [anon_sym_DOT] = ACTIONS(1767), - [anon_sym_SLASH] = ACTIONS(1767), - [anon_sym_COLON] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_LT] = ACTIONS(1773), - [anon_sym_EQ] = ACTIONS(1767), - [anon_sym_GT] = ACTIONS(1767), - [anon_sym_QMARK] = ACTIONS(1767), - [anon_sym_AT] = ACTIONS(1767), - [anon_sym_LBRACK] = ACTIONS(1776), - [anon_sym_BSLASH] = ACTIONS(1779), - [anon_sym_RBRACK] = ACTIONS(1767), - [anon_sym_CARET] = ACTIONS(1767), - [anon_sym__] = ACTIONS(1767), - [anon_sym_BQUOTE] = ACTIONS(1767), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_TILDE] = ACTIONS(1767), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1782), - [anon_sym_LT_QMARK] = ACTIONS(1785), - [aux_sym__html_block_4_token1] = ACTIONS(1788), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1791), - [sym_backslash_escape] = ACTIONS(1794), - [sym_entity_reference] = ACTIONS(1794), - [sym_numeric_character_reference] = ACTIONS(1794), - [sym_uri_autolink] = ACTIONS(1794), - [sym_email_autolink] = ACTIONS(1794), - [sym__whitespace_ge_2] = ACTIONS(1797), - [aux_sym__whitespace_token1] = ACTIONS(1800), - [sym__word_no_digit] = ACTIONS(1794), - [sym__digits] = ACTIONS(1794), - [aux_sym__newline_token1] = ACTIONS(1803), - [sym__code_span_start] = ACTIONS(1805), - [sym__emphasis_open_star] = ACTIONS(1808), - [sym__emphasis_open_underscore] = ACTIONS(1811), - }, - [366] = { - [sym__link_text] = STATE(2133), - [sym__link_text_non_empty] = STATE(795), - [sym_shortcut_link] = STATE(366), - [sym_full_reference_link] = STATE(366), - [sym_collapsed_reference_link] = STATE(366), - [sym_inline_link] = STATE(366), - [sym_image] = STATE(366), - [sym__image_inline_link] = STATE(801), - [sym__image_shortcut_link] = STATE(801), - [sym__image_full_reference_link] = STATE(801), - [sym__image_collapsed_reference_link] = STATE(801), - [sym__image_description] = STATE(2122), - [sym__image_description_non_empty] = STATE(802), - [sym_html_tag] = STATE(366), - [sym__open_tag] = STATE(683), - [sym__closing_tag] = STATE(683), - [sym__html_comment] = STATE(683), - [sym__processing_instruction] = STATE(683), - [sym__declaration] = STATE(683), - [sym__cdata_section] = STATE(683), - [sym_hard_line_break] = STATE(366), - [sym__whitespace] = STATE(366), - [sym__word] = STATE(366), - [sym__text_inline_no_underscore] = STATE(366), - [sym__inline_element_no_newline_no_underscore] = STATE(366), - [aux_sym__inline_no_newline_no_underscore] = STATE(366), - [sym__emphasis_star_no_newline] = STATE(816), - [sym__strong_emphasis_star_no_newline] = STATE(366), - [sym__emphasis_underscore_no_newline] = STATE(816), - [sym__strong_emphasis_underscore_no_newline] = STATE(366), - [sym__code_span_no_newline] = STATE(366), - [anon_sym_BANG] = ACTIONS(1814), - [anon_sym_DQUOTE] = ACTIONS(1817), - [anon_sym_POUND] = ACTIONS(1817), - [anon_sym_DOLLAR] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1820), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_LPAREN] = ACTIONS(1817), - [anon_sym_RPAREN] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_COMMA] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), - [anon_sym_COLON] = ACTIONS(1817), - [anon_sym_SEMI] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_EQ] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_QMARK] = ACTIONS(1817), - [anon_sym_AT] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1826), - [anon_sym_BSLASH] = ACTIONS(1829), - [anon_sym_RBRACK] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym__] = ACTIONS(1817), - [anon_sym_BQUOTE] = ACTIONS(1817), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_RBRACE] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1832), - [anon_sym_LT_QMARK] = ACTIONS(1835), - [aux_sym__html_block_4_token1] = ACTIONS(1838), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1841), - [sym_backslash_escape] = ACTIONS(1844), - [sym_entity_reference] = ACTIONS(1844), - [sym_numeric_character_reference] = ACTIONS(1844), - [sym_uri_autolink] = ACTIONS(1844), - [sym_email_autolink] = ACTIONS(1844), - [sym__whitespace_ge_2] = ACTIONS(1847), - [aux_sym__whitespace_token1] = ACTIONS(1850), - [sym__word_no_digit] = ACTIONS(1844), - [sym__digits] = ACTIONS(1844), - [sym__code_span_start] = ACTIONS(1853), - [sym__emphasis_open_star] = ACTIONS(1856), - [sym__emphasis_open_underscore] = ACTIONS(1859), - [sym__emphasis_close_underscore] = ACTIONS(1862), - }, - [367] = { - [sym__link_text] = STATE(2133), - [sym__link_text_non_empty] = STATE(795), - [sym_shortcut_link] = STATE(362), - [sym_full_reference_link] = STATE(362), - [sym_collapsed_reference_link] = STATE(362), - [sym_inline_link] = STATE(362), - [sym_image] = STATE(362), - [sym__image_inline_link] = STATE(801), - [sym__image_shortcut_link] = STATE(801), - [sym__image_full_reference_link] = STATE(801), - [sym__image_collapsed_reference_link] = STATE(801), - [sym__image_description] = STATE(2122), - [sym__image_description_non_empty] = STATE(802), - [sym_html_tag] = STATE(362), - [sym__open_tag] = STATE(683), - [sym__closing_tag] = STATE(683), - [sym__html_comment] = STATE(683), - [sym__processing_instruction] = STATE(683), - [sym__declaration] = STATE(683), - [sym__cdata_section] = STATE(683), - [sym_hard_line_break] = STATE(362), - [sym__whitespace] = STATE(362), - [sym__word] = STATE(362), - [sym__text_inline_no_underscore] = STATE(362), - [sym__inline_element_no_newline_no_underscore] = STATE(362), - [aux_sym__inline_no_newline_no_underscore] = STATE(362), - [sym__emphasis_star_no_newline] = STATE(816), - [sym__strong_emphasis_star_no_newline] = STATE(362), - [sym__emphasis_underscore_no_newline] = STATE(898), - [sym__strong_emphasis_underscore_no_newline] = STATE(362), - [sym__code_span_no_newline] = STATE(362), - [anon_sym_BANG] = ACTIONS(1864), - [anon_sym_DQUOTE] = ACTIONS(883), - [anon_sym_POUND] = ACTIONS(883), - [anon_sym_DOLLAR] = ACTIONS(883), - [anon_sym_PERCENT] = ACTIONS(883), - [anon_sym_AMP] = ACTIONS(886), - [anon_sym_SQUOTE] = ACTIONS(883), - [anon_sym_LPAREN] = ACTIONS(883), - [anon_sym_RPAREN] = ACTIONS(883), - [anon_sym_STAR] = ACTIONS(883), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_COMMA] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_DOT] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(883), - [anon_sym_SEMI] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(889), - [anon_sym_EQ] = ACTIONS(883), - [anon_sym_GT] = ACTIONS(883), - [anon_sym_QMARK] = ACTIONS(883), - [anon_sym_AT] = ACTIONS(883), - [anon_sym_LBRACK] = ACTIONS(1867), - [anon_sym_BSLASH] = ACTIONS(1870), - [anon_sym_RBRACK] = ACTIONS(883), - [anon_sym_CARET] = ACTIONS(883), - [anon_sym__] = ACTIONS(883), - [anon_sym_BQUOTE] = ACTIONS(883), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_PIPE] = ACTIONS(883), - [anon_sym_RBRACE] = ACTIONS(883), - [anon_sym_TILDE] = ACTIONS(883), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1873), - [anon_sym_LT_QMARK] = ACTIONS(1876), - [aux_sym__html_block_4_token1] = ACTIONS(1879), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1882), - [sym_backslash_escape] = ACTIONS(1885), - [sym_entity_reference] = ACTIONS(1885), - [sym_numeric_character_reference] = ACTIONS(1885), - [sym_uri_autolink] = ACTIONS(1885), - [sym_email_autolink] = ACTIONS(1885), - [sym__whitespace_ge_2] = ACTIONS(1888), - [aux_sym__whitespace_token1] = ACTIONS(916), - [sym__word_no_digit] = ACTIONS(1885), - [sym__digits] = ACTIONS(1885), - [sym__code_span_start] = ACTIONS(1891), - [sym__emphasis_open_star] = ACTIONS(1894), - [sym__emphasis_open_underscore] = ACTIONS(1897), - [sym__emphasis_close_star] = ACTIONS(931), - }, - [368] = { - [sym__link_text] = STATE(2133), - [sym__link_text_non_empty] = STATE(795), - [sym_shortcut_link] = STATE(366), - [sym_full_reference_link] = STATE(366), - [sym_collapsed_reference_link] = STATE(366), - [sym_inline_link] = STATE(366), - [sym_image] = STATE(366), - [sym__image_inline_link] = STATE(801), - [sym__image_shortcut_link] = STATE(801), - [sym__image_full_reference_link] = STATE(801), - [sym__image_collapsed_reference_link] = STATE(801), - [sym__image_description] = STATE(2122), - [sym__image_description_non_empty] = STATE(802), - [sym_html_tag] = STATE(366), - [sym__open_tag] = STATE(683), - [sym__closing_tag] = STATE(683), - [sym__html_comment] = STATE(683), - [sym__processing_instruction] = STATE(683), - [sym__declaration] = STATE(683), - [sym__cdata_section] = STATE(683), - [sym_hard_line_break] = STATE(366), - [sym__whitespace] = STATE(366), - [sym__word] = STATE(366), - [sym__text_inline_no_underscore] = STATE(366), - [sym__inline_element_no_newline_no_underscore] = STATE(366), - [aux_sym__inline_no_newline_no_underscore] = STATE(366), - [sym__emphasis_star_no_newline] = STATE(816), - [sym__strong_emphasis_star_no_newline] = STATE(366), - [sym__emphasis_underscore_no_newline] = STATE(816), - [sym__strong_emphasis_underscore_no_newline] = STATE(366), - [sym__code_span_no_newline] = STATE(366), + [sym__link_text] = STATE(2126), + [sym__link_text_non_empty] = STATE(716), + [sym_shortcut_link] = STATE(372), + [sym_full_reference_link] = STATE(372), + [sym_collapsed_reference_link] = STATE(372), + [sym_inline_link] = STATE(372), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(663), + [sym__image_shortcut_link] = STATE(663), + [sym__image_full_reference_link] = STATE(663), + [sym__image_collapsed_reference_link] = STATE(663), + [sym__image_description] = STATE(2134), + [sym__image_description_non_empty] = STATE(705), + [sym_html_tag] = STATE(372), + [sym__open_tag] = STATE(702), + [sym__closing_tag] = STATE(702), + [sym__html_comment] = STATE(702), + [sym__processing_instruction] = STATE(702), + [sym__declaration] = STATE(702), + [sym__cdata_section] = STATE(702), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(372), + [sym__word] = STATE(372), + [sym__text_inline_no_underscore] = STATE(372), + [sym__inline_element_no_newline_no_underscore] = STATE(372), + [aux_sym__inline_no_newline_no_underscore] = STATE(372), + [sym__emphasis_star_no_newline] = STATE(848), + [sym__strong_emphasis_star_no_newline] = STATE(372), + [sym__emphasis_underscore_no_newline] = STATE(848), + [sym__strong_emphasis_underscore_no_newline] = STATE(372), + [sym__code_span_no_newline] = STATE(372), [anon_sym_BANG] = ACTIONS(1674), - [anon_sym_DQUOTE] = ACTIONS(713), - [anon_sym_POUND] = ACTIONS(713), - [anon_sym_DOLLAR] = ACTIONS(713), - [anon_sym_PERCENT] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(713), - [anon_sym_LPAREN] = ACTIONS(713), - [anon_sym_RPAREN] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(713), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_COMMA] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_DOT] = ACTIONS(713), - [anon_sym_SLASH] = ACTIONS(713), - [anon_sym_COLON] = ACTIONS(713), - [anon_sym_SEMI] = ACTIONS(713), - [anon_sym_LT] = ACTIONS(717), - [anon_sym_EQ] = ACTIONS(713), - [anon_sym_GT] = ACTIONS(713), - [anon_sym_QMARK] = ACTIONS(713), - [anon_sym_AT] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(561), + [anon_sym_POUND] = ACTIONS(561), + [anon_sym_DOLLAR] = ACTIONS(561), + [anon_sym_PERCENT] = ACTIONS(561), + [anon_sym_AMP] = ACTIONS(563), + [anon_sym_SQUOTE] = ACTIONS(561), + [anon_sym_LPAREN] = ACTIONS(561), + [anon_sym_RPAREN] = ACTIONS(561), + [anon_sym_STAR] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_COMMA] = ACTIONS(561), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_DOT] = ACTIONS(561), + [anon_sym_SLASH] = ACTIONS(561), + [anon_sym_COLON] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(561), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_EQ] = ACTIONS(561), + [anon_sym_GT] = ACTIONS(561), + [anon_sym_QMARK] = ACTIONS(561), + [anon_sym_AT] = ACTIONS(561), [anon_sym_LBRACK] = ACTIONS(1676), [anon_sym_BSLASH] = ACTIONS(1678), - [anon_sym_RBRACK] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym__] = ACTIONS(713), - [anon_sym_BQUOTE] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(713), - [anon_sym_PIPE] = ACTIONS(713), - [anon_sym_RBRACE] = ACTIONS(713), - [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_RBRACK] = ACTIONS(561), + [anon_sym_CARET] = ACTIONS(561), + [anon_sym__] = ACTIONS(561), + [anon_sym_BQUOTE] = ACTIONS(561), + [anon_sym_LBRACE] = ACTIONS(561), + [anon_sym_PIPE] = ACTIONS(561), + [anon_sym_RBRACE] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1680), [anon_sym_LT_QMARK] = ACTIONS(1682), [aux_sym__html_block_4_token1] = ACTIONS(1684), @@ -63989,242 +63750,816 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_uri_autolink] = ACTIONS(1688), [sym_email_autolink] = ACTIONS(1688), [sym__whitespace_ge_2] = ACTIONS(1690), - [aux_sym__whitespace_token1] = ACTIONS(735), + [aux_sym__whitespace_token1] = ACTIONS(583), [sym__word_no_digit] = ACTIONS(1688), [sym__digits] = ACTIONS(1688), [sym__code_span_start] = ACTIONS(1692), [sym__emphasis_open_star] = ACTIONS(1694), [sym__emphasis_open_underscore] = ACTIONS(1696), - [sym__emphasis_close_underscore] = ACTIONS(1900), + [sym__emphasis_close_underscore] = ACTIONS(1752), + }, + [366] = { + [sym__link_text] = STATE(2124), + [sym__link_text_non_empty] = STATE(712), + [sym_shortcut_link] = STATE(363), + [sym_full_reference_link] = STATE(363), + [sym_collapsed_reference_link] = STATE(363), + [sym_inline_link] = STATE(363), + [sym_image] = STATE(363), + [sym__image_inline_link] = STATE(713), + [sym__image_shortcut_link] = STATE(713), + [sym__image_full_reference_link] = STATE(713), + [sym__image_collapsed_reference_link] = STATE(713), + [sym__image_description] = STATE(2120), + [sym__image_description_non_empty] = STATE(714), + [sym_html_tag] = STATE(363), + [sym__open_tag] = STATE(715), + [sym__closing_tag] = STATE(715), + [sym__html_comment] = STATE(715), + [sym__processing_instruction] = STATE(715), + [sym__declaration] = STATE(715), + [sym__cdata_section] = STATE(715), + [sym_hard_line_break] = STATE(363), + [sym__whitespace] = STATE(363), + [sym__word] = STATE(363), + [sym__text_inline_no_star] = STATE(363), + [sym__inline_element_no_newline_no_star] = STATE(363), + [aux_sym__inline_no_newline_no_star] = STATE(363), + [sym__emphasis_star_no_newline] = STATE(846), + [sym__strong_emphasis_star_no_newline] = STATE(363), + [sym__emphasis_underscore_no_newline] = STATE(846), + [sym__strong_emphasis_underscore_no_newline] = STATE(363), + [sym__code_span_no_newline] = STATE(363), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_DQUOTE] = ACTIONS(599), + [anon_sym_POUND] = ACTIONS(599), + [anon_sym_DOLLAR] = ACTIONS(599), + [anon_sym_PERCENT] = ACTIONS(599), + [anon_sym_AMP] = ACTIONS(601), + [anon_sym_SQUOTE] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_RPAREN] = ACTIONS(599), + [anon_sym_STAR] = ACTIONS(599), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_COMMA] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_DOT] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(599), + [anon_sym_COLON] = ACTIONS(599), + [anon_sym_SEMI] = ACTIONS(599), + [anon_sym_LT] = ACTIONS(603), + [anon_sym_EQ] = ACTIONS(599), + [anon_sym_GT] = ACTIONS(599), + [anon_sym_QMARK] = ACTIONS(599), + [anon_sym_AT] = ACTIONS(599), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_BSLASH] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(599), + [anon_sym_CARET] = ACTIONS(599), + [anon_sym__] = ACTIONS(599), + [anon_sym_BQUOTE] = ACTIONS(599), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_PIPE] = ACTIONS(599), + [anon_sym_RBRACE] = ACTIONS(599), + [anon_sym_TILDE] = ACTIONS(599), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1760), + [anon_sym_LT_QMARK] = ACTIONS(1762), + [aux_sym__html_block_4_token1] = ACTIONS(1764), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1766), + [sym_backslash_escape] = ACTIONS(1768), + [sym_entity_reference] = ACTIONS(1768), + [sym_numeric_character_reference] = ACTIONS(1768), + [sym_uri_autolink] = ACTIONS(1768), + [sym_email_autolink] = ACTIONS(1768), + [sym__whitespace_ge_2] = ACTIONS(1770), + [aux_sym__whitespace_token1] = ACTIONS(621), + [sym__word_no_digit] = ACTIONS(1768), + [sym__digits] = ACTIONS(1768), + [sym__code_span_start] = ACTIONS(1772), + [sym__emphasis_open_star] = ACTIONS(1774), + [sym__emphasis_open_underscore] = ACTIONS(1776), + [sym__emphasis_close_star] = ACTIONS(1778), + }, + [367] = { + [sym__link_text] = STATE(2126), + [sym__link_text_non_empty] = STATE(716), + [sym_shortcut_link] = STATE(365), + [sym_full_reference_link] = STATE(365), + [sym_collapsed_reference_link] = STATE(365), + [sym_inline_link] = STATE(365), + [sym_image] = STATE(365), + [sym__image_inline_link] = STATE(663), + [sym__image_shortcut_link] = STATE(663), + [sym__image_full_reference_link] = STATE(663), + [sym__image_collapsed_reference_link] = STATE(663), + [sym__image_description] = STATE(2134), + [sym__image_description_non_empty] = STATE(705), + [sym_html_tag] = STATE(365), + [sym__open_tag] = STATE(702), + [sym__closing_tag] = STATE(702), + [sym__html_comment] = STATE(702), + [sym__processing_instruction] = STATE(702), + [sym__declaration] = STATE(702), + [sym__cdata_section] = STATE(702), + [sym_hard_line_break] = STATE(365), + [sym__whitespace] = STATE(365), + [sym__word] = STATE(365), + [sym__text_inline_no_underscore] = STATE(365), + [sym__inline_element_no_newline_no_underscore] = STATE(365), + [aux_sym__inline_no_newline_no_underscore] = STATE(365), + [sym__emphasis_star_no_newline] = STATE(848), + [sym__strong_emphasis_star_no_newline] = STATE(365), + [sym__emphasis_underscore_no_newline] = STATE(920), + [sym__strong_emphasis_underscore_no_newline] = STATE(365), + [sym__code_span_no_newline] = STATE(365), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_DQUOTE] = ACTIONS(994), + [anon_sym_POUND] = ACTIONS(994), + [anon_sym_DOLLAR] = ACTIONS(994), + [anon_sym_PERCENT] = ACTIONS(994), + [anon_sym_AMP] = ACTIONS(997), + [anon_sym_SQUOTE] = ACTIONS(994), + [anon_sym_LPAREN] = ACTIONS(994), + [anon_sym_RPAREN] = ACTIONS(994), + [anon_sym_STAR] = ACTIONS(994), + [anon_sym_PLUS] = ACTIONS(994), + [anon_sym_COMMA] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(994), + [anon_sym_DOT] = ACTIONS(994), + [anon_sym_SLASH] = ACTIONS(994), + [anon_sym_COLON] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_LT] = ACTIONS(1000), + [anon_sym_EQ] = ACTIONS(994), + [anon_sym_GT] = ACTIONS(994), + [anon_sym_QMARK] = ACTIONS(994), + [anon_sym_AT] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(1783), + [anon_sym_BSLASH] = ACTIONS(1786), + [anon_sym_RBRACK] = ACTIONS(994), + [anon_sym_CARET] = ACTIONS(994), + [anon_sym__] = ACTIONS(994), + [anon_sym_BQUOTE] = ACTIONS(994), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(994), + [anon_sym_TILDE] = ACTIONS(994), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1789), + [anon_sym_LT_QMARK] = ACTIONS(1792), + [aux_sym__html_block_4_token1] = ACTIONS(1795), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1798), + [sym_backslash_escape] = ACTIONS(1801), + [sym_entity_reference] = ACTIONS(1801), + [sym_numeric_character_reference] = ACTIONS(1801), + [sym_uri_autolink] = ACTIONS(1801), + [sym_email_autolink] = ACTIONS(1801), + [sym__whitespace_ge_2] = ACTIONS(1804), + [aux_sym__whitespace_token1] = ACTIONS(1027), + [sym__word_no_digit] = ACTIONS(1801), + [sym__digits] = ACTIONS(1801), + [sym__code_span_start] = ACTIONS(1807), + [sym__emphasis_open_star] = ACTIONS(1810), + [sym__emphasis_open_underscore] = ACTIONS(1813), + [sym__emphasis_close_star] = ACTIONS(1042), + }, + [368] = { + [sym__link_text] = STATE(2124), + [sym__link_text_non_empty] = STATE(712), + [sym_shortcut_link] = STATE(363), + [sym_full_reference_link] = STATE(363), + [sym_collapsed_reference_link] = STATE(363), + [sym_inline_link] = STATE(363), + [sym_image] = STATE(363), + [sym__image_inline_link] = STATE(713), + [sym__image_shortcut_link] = STATE(713), + [sym__image_full_reference_link] = STATE(713), + [sym__image_collapsed_reference_link] = STATE(713), + [sym__image_description] = STATE(2120), + [sym__image_description_non_empty] = STATE(714), + [sym_html_tag] = STATE(363), + [sym__open_tag] = STATE(715), + [sym__closing_tag] = STATE(715), + [sym__html_comment] = STATE(715), + [sym__processing_instruction] = STATE(715), + [sym__declaration] = STATE(715), + [sym__cdata_section] = STATE(715), + [sym_hard_line_break] = STATE(363), + [sym__whitespace] = STATE(363), + [sym__word] = STATE(363), + [sym__text_inline_no_star] = STATE(363), + [sym__inline_element_no_newline_no_star] = STATE(363), + [aux_sym__inline_no_newline_no_star] = STATE(363), + [sym__emphasis_star_no_newline] = STATE(846), + [sym__strong_emphasis_star_no_newline] = STATE(363), + [sym__emphasis_underscore_no_newline] = STATE(846), + [sym__strong_emphasis_underscore_no_newline] = STATE(363), + [sym__code_span_no_newline] = STATE(363), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_DQUOTE] = ACTIONS(599), + [anon_sym_POUND] = ACTIONS(599), + [anon_sym_DOLLAR] = ACTIONS(599), + [anon_sym_PERCENT] = ACTIONS(599), + [anon_sym_AMP] = ACTIONS(601), + [anon_sym_SQUOTE] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_RPAREN] = ACTIONS(599), + [anon_sym_STAR] = ACTIONS(599), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_COMMA] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_DOT] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(599), + [anon_sym_COLON] = ACTIONS(599), + [anon_sym_SEMI] = ACTIONS(599), + [anon_sym_LT] = ACTIONS(603), + [anon_sym_EQ] = ACTIONS(599), + [anon_sym_GT] = ACTIONS(599), + [anon_sym_QMARK] = ACTIONS(599), + [anon_sym_AT] = ACTIONS(599), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_BSLASH] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(599), + [anon_sym_CARET] = ACTIONS(599), + [anon_sym__] = ACTIONS(599), + [anon_sym_BQUOTE] = ACTIONS(599), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_PIPE] = ACTIONS(599), + [anon_sym_RBRACE] = ACTIONS(599), + [anon_sym_TILDE] = ACTIONS(599), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1760), + [anon_sym_LT_QMARK] = ACTIONS(1762), + [aux_sym__html_block_4_token1] = ACTIONS(1764), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1766), + [sym_backslash_escape] = ACTIONS(1768), + [sym_entity_reference] = ACTIONS(1768), + [sym_numeric_character_reference] = ACTIONS(1768), + [sym_uri_autolink] = ACTIONS(1768), + [sym_email_autolink] = ACTIONS(1768), + [sym__whitespace_ge_2] = ACTIONS(1770), + [aux_sym__whitespace_token1] = ACTIONS(621), + [sym__word_no_digit] = ACTIONS(1768), + [sym__digits] = ACTIONS(1768), + [sym__code_span_start] = ACTIONS(1772), + [sym__emphasis_open_star] = ACTIONS(1774), + [sym__emphasis_open_underscore] = ACTIONS(1776), + [sym__emphasis_close_star] = ACTIONS(1816), }, [369] = { - [sym__link_text] = STATE(2135), - [sym__link_text_non_empty] = STATE(707), + [sym__link_text] = STATE(2124), + [sym__link_text_non_empty] = STATE(712), + [sym_shortcut_link] = STATE(371), + [sym_full_reference_link] = STATE(371), + [sym_collapsed_reference_link] = STATE(371), + [sym_inline_link] = STATE(371), + [sym_image] = STATE(371), + [sym__image_inline_link] = STATE(713), + [sym__image_shortcut_link] = STATE(713), + [sym__image_full_reference_link] = STATE(713), + [sym__image_collapsed_reference_link] = STATE(713), + [sym__image_description] = STATE(2120), + [sym__image_description_non_empty] = STATE(714), + [sym_html_tag] = STATE(371), + [sym__open_tag] = STATE(715), + [sym__closing_tag] = STATE(715), + [sym__html_comment] = STATE(715), + [sym__processing_instruction] = STATE(715), + [sym__declaration] = STATE(715), + [sym__cdata_section] = STATE(715), + [sym_hard_line_break] = STATE(371), + [sym__whitespace] = STATE(371), + [sym__word] = STATE(371), + [sym__text_inline_no_star] = STATE(371), + [sym__inline_element_no_newline_no_star] = STATE(371), + [aux_sym__inline_no_newline_no_star] = STATE(371), + [sym__emphasis_star_no_newline] = STATE(845), + [sym__strong_emphasis_star_no_newline] = STATE(371), + [sym__emphasis_underscore_no_newline] = STATE(846), + [sym__strong_emphasis_underscore_no_newline] = STATE(371), + [sym__code_span_no_newline] = STATE(371), + [anon_sym_BANG] = ACTIONS(1818), + [anon_sym_DQUOTE] = ACTIONS(1431), + [anon_sym_POUND] = ACTIONS(1431), + [anon_sym_DOLLAR] = ACTIONS(1431), + [anon_sym_PERCENT] = ACTIONS(1431), + [anon_sym_AMP] = ACTIONS(1434), + [anon_sym_SQUOTE] = ACTIONS(1431), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_RPAREN] = ACTIONS(1431), + [anon_sym_STAR] = ACTIONS(1431), + [anon_sym_PLUS] = ACTIONS(1431), + [anon_sym_COMMA] = ACTIONS(1431), + [anon_sym_DASH] = ACTIONS(1431), + [anon_sym_DOT] = ACTIONS(1431), + [anon_sym_SLASH] = ACTIONS(1431), + [anon_sym_COLON] = ACTIONS(1431), + [anon_sym_SEMI] = ACTIONS(1431), + [anon_sym_LT] = ACTIONS(1437), + [anon_sym_EQ] = ACTIONS(1431), + [anon_sym_GT] = ACTIONS(1431), + [anon_sym_QMARK] = ACTIONS(1431), + [anon_sym_AT] = ACTIONS(1431), + [anon_sym_LBRACK] = ACTIONS(1821), + [anon_sym_BSLASH] = ACTIONS(1824), + [anon_sym_RBRACK] = ACTIONS(1431), + [anon_sym_CARET] = ACTIONS(1431), + [anon_sym__] = ACTIONS(1431), + [anon_sym_BQUOTE] = ACTIONS(1431), + [anon_sym_LBRACE] = ACTIONS(1431), + [anon_sym_PIPE] = ACTIONS(1431), + [anon_sym_RBRACE] = ACTIONS(1431), + [anon_sym_TILDE] = ACTIONS(1431), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1827), + [anon_sym_LT_QMARK] = ACTIONS(1830), + [aux_sym__html_block_4_token1] = ACTIONS(1833), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1836), + [sym_backslash_escape] = ACTIONS(1839), + [sym_entity_reference] = ACTIONS(1839), + [sym_numeric_character_reference] = ACTIONS(1839), + [sym_uri_autolink] = ACTIONS(1839), + [sym_email_autolink] = ACTIONS(1839), + [sym__whitespace_ge_2] = ACTIONS(1842), + [aux_sym__whitespace_token1] = ACTIONS(1464), + [sym__word_no_digit] = ACTIONS(1839), + [sym__digits] = ACTIONS(1839), + [aux_sym__newline_token1] = ACTIONS(1845), + [sym__code_span_start] = ACTIONS(1847), + [sym__emphasis_open_star] = ACTIONS(1850), + [sym__emphasis_open_underscore] = ACTIONS(1853), + }, + [370] = { + [sym__link_text] = STATE(2126), + [sym__link_text_non_empty] = STATE(716), [sym_shortcut_link] = STATE(375), [sym_full_reference_link] = STATE(375), [sym_collapsed_reference_link] = STATE(375), [sym_inline_link] = STATE(375), [sym_image] = STATE(375), - [sym__image_inline_link] = STATE(708), - [sym__image_shortcut_link] = STATE(708), - [sym__image_full_reference_link] = STATE(708), - [sym__image_collapsed_reference_link] = STATE(708), - [sym__image_description] = STATE(2137), - [sym__image_description_non_empty] = STATE(709), + [sym__image_inline_link] = STATE(663), + [sym__image_shortcut_link] = STATE(663), + [sym__image_full_reference_link] = STATE(663), + [sym__image_collapsed_reference_link] = STATE(663), + [sym__image_description] = STATE(2134), + [sym__image_description_non_empty] = STATE(705), [sym_html_tag] = STATE(375), - [sym__open_tag] = STATE(710), - [sym__closing_tag] = STATE(710), - [sym__html_comment] = STATE(710), - [sym__processing_instruction] = STATE(710), - [sym__declaration] = STATE(710), - [sym__cdata_section] = STATE(710), + [sym__open_tag] = STATE(702), + [sym__closing_tag] = STATE(702), + [sym__html_comment] = STATE(702), + [sym__processing_instruction] = STATE(702), + [sym__declaration] = STATE(702), + [sym__cdata_section] = STATE(702), [sym_hard_line_break] = STATE(375), [sym__whitespace] = STATE(375), [sym__word] = STATE(375), - [sym__text_inline_no_star] = STATE(375), - [sym__inline_element_no_newline_no_star] = STATE(375), - [aux_sym__inline_no_newline_no_star] = STATE(375), - [sym__emphasis_star_no_newline] = STATE(823), + [sym__text_inline_no_underscore] = STATE(375), + [sym__inline_element_no_newline_no_underscore] = STATE(375), + [aux_sym__inline_no_newline_no_underscore] = STATE(375), + [sym__emphasis_star_no_newline] = STATE(848), [sym__strong_emphasis_star_no_newline] = STATE(375), - [sym__emphasis_underscore_no_newline] = STATE(823), + [sym__emphasis_underscore_no_newline] = STATE(849), [sym__strong_emphasis_underscore_no_newline] = STATE(375), [sym__code_span_no_newline] = STATE(375), - [anon_sym_BANG] = ACTIONS(1738), - [anon_sym_DQUOTE] = ACTIONS(580), - [anon_sym_POUND] = ACTIONS(580), - [anon_sym_DOLLAR] = ACTIONS(580), - [anon_sym_PERCENT] = ACTIONS(580), - [anon_sym_AMP] = ACTIONS(582), - [anon_sym_SQUOTE] = ACTIONS(580), - [anon_sym_LPAREN] = ACTIONS(580), - [anon_sym_RPAREN] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(580), - [anon_sym_COMMA] = ACTIONS(580), - [anon_sym_DASH] = ACTIONS(580), - [anon_sym_DOT] = ACTIONS(580), - [anon_sym_SLASH] = ACTIONS(580), - [anon_sym_COLON] = ACTIONS(580), - [anon_sym_SEMI] = ACTIONS(580), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_EQ] = ACTIONS(580), - [anon_sym_GT] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(580), - [anon_sym_AT] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_BSLASH] = ACTIONS(1742), - [anon_sym_RBRACK] = ACTIONS(580), - [anon_sym_CARET] = ACTIONS(580), - [anon_sym__] = ACTIONS(580), - [anon_sym_BQUOTE] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(580), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_RBRACE] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(580), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1744), - [anon_sym_LT_QMARK] = ACTIONS(1746), - [aux_sym__html_block_4_token1] = ACTIONS(1748), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1750), - [sym_backslash_escape] = ACTIONS(1752), - [sym_entity_reference] = ACTIONS(1752), - [sym_numeric_character_reference] = ACTIONS(1752), - [sym_uri_autolink] = ACTIONS(1752), - [sym_email_autolink] = ACTIONS(1752), - [sym__whitespace_ge_2] = ACTIONS(1754), - [aux_sym__whitespace_token1] = ACTIONS(602), - [sym__word_no_digit] = ACTIONS(1752), - [sym__digits] = ACTIONS(1752), - [sym__code_span_start] = ACTIONS(1756), - [sym__emphasis_open_star] = ACTIONS(1758), - [sym__emphasis_open_underscore] = ACTIONS(1760), - [sym__emphasis_close_star] = ACTIONS(1902), - }, - [370] = { - [sym__blank_line] = STATE(2515), - [anon_sym_BANG] = ACTIONS(1624), - [anon_sym_DQUOTE] = ACTIONS(1624), - [anon_sym_POUND] = ACTIONS(1624), - [anon_sym_DOLLAR] = ACTIONS(1624), - [anon_sym_PERCENT] = ACTIONS(1624), - [anon_sym_AMP] = ACTIONS(1626), - [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(1626), - [anon_sym_EQ] = ACTIONS(1624), - [anon_sym_GT] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1624), - [anon_sym_AT] = ACTIONS(1624), - [anon_sym_LBRACK] = ACTIONS(1624), - [anon_sym_BSLASH] = ACTIONS(1626), - [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), - [aux_sym__html_block_1_token1] = ACTIONS(1624), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1626), - [anon_sym_LT_QMARK] = ACTIONS(1626), - [aux_sym__html_block_4_token1] = ACTIONS(1626), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1624), - [aux_sym__html_block_6_token1] = ACTIONS(1626), - [aux_sym__html_block_6_token2] = ACTIONS(1624), - [sym__open_tag_html_block] = ACTIONS(1624), - [sym__open_tag_html_block_newline] = ACTIONS(1624), - [sym__closing_tag_html_block] = ACTIONS(1624), - [sym__closing_tag_html_block_newline] = ACTIONS(1624), - [sym_backslash_escape] = ACTIONS(1624), - [sym_entity_reference] = ACTIONS(1624), - [sym_numeric_character_reference] = ACTIONS(1624), - [sym_uri_autolink] = ACTIONS(1624), - [sym_email_autolink] = ACTIONS(1624), - [sym__whitespace_ge_2] = ACTIONS(1624), - [aux_sym__whitespace_token1] = ACTIONS(1626), - [sym__word_no_digit] = ACTIONS(1624), - [sym__digits] = ACTIONS(1624), - [aux_sym__newline_token1] = ACTIONS(1624), - [sym__block_close] = ACTIONS(1624), - [sym__block_quote_start] = ACTIONS(1624), - [sym__indented_chunk_start] = ACTIONS(1624), - [sym_atx_h1_marker] = ACTIONS(1624), - [sym_atx_h2_marker] = ACTIONS(1624), - [sym_atx_h3_marker] = ACTIONS(1624), - [sym_atx_h4_marker] = ACTIONS(1624), - [sym_atx_h5_marker] = ACTIONS(1624), - [sym_atx_h6_marker] = ACTIONS(1624), - [sym__thematic_break] = ACTIONS(1624), - [sym__list_marker_minus] = ACTIONS(1624), - [sym__list_marker_plus] = ACTIONS(1624), - [sym__list_marker_star] = ACTIONS(1624), - [sym__list_marker_parenthesis] = ACTIONS(1624), - [sym__list_marker_dot] = ACTIONS(1624), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1624), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1624), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1624), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1624), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1624), - [sym__fenced_code_block_start_backtick] = ACTIONS(1624), - [sym__fenced_code_block_start_tilde] = ACTIONS(1624), - [sym__blank_line_start] = ACTIONS(1904), - [sym__code_span_start] = ACTIONS(1624), - [sym__emphasis_open_star] = ACTIONS(1624), - [sym__emphasis_open_underscore] = ACTIONS(1624), + [anon_sym_BANG] = ACTIONS(1856), + [anon_sym_DQUOTE] = ACTIONS(1482), + [anon_sym_POUND] = ACTIONS(1482), + [anon_sym_DOLLAR] = ACTIONS(1482), + [anon_sym_PERCENT] = ACTIONS(1482), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_SQUOTE] = ACTIONS(1482), + [anon_sym_LPAREN] = ACTIONS(1482), + [anon_sym_RPAREN] = ACTIONS(1482), + [anon_sym_STAR] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_COMMA] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_DOT] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1482), + [anon_sym_COLON] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1482), + [anon_sym_LT] = ACTIONS(1488), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_GT] = ACTIONS(1482), + [anon_sym_QMARK] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1482), + [anon_sym_LBRACK] = ACTIONS(1859), + [anon_sym_BSLASH] = ACTIONS(1862), + [anon_sym_RBRACK] = ACTIONS(1482), + [anon_sym_CARET] = ACTIONS(1482), + [anon_sym__] = ACTIONS(1482), + [anon_sym_BQUOTE] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_PIPE] = ACTIONS(1482), + [anon_sym_RBRACE] = ACTIONS(1482), + [anon_sym_TILDE] = ACTIONS(1482), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1865), + [anon_sym_LT_QMARK] = ACTIONS(1868), + [aux_sym__html_block_4_token1] = ACTIONS(1871), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1874), + [sym_backslash_escape] = ACTIONS(1877), + [sym_entity_reference] = ACTIONS(1877), + [sym_numeric_character_reference] = ACTIONS(1877), + [sym_uri_autolink] = ACTIONS(1877), + [sym_email_autolink] = ACTIONS(1877), + [sym__whitespace_ge_2] = ACTIONS(1880), + [aux_sym__whitespace_token1] = ACTIONS(1515), + [sym__word_no_digit] = ACTIONS(1877), + [sym__digits] = ACTIONS(1877), + [aux_sym__newline_token1] = ACTIONS(1845), + [sym__code_span_start] = ACTIONS(1883), + [sym__emphasis_open_star] = ACTIONS(1886), + [sym__emphasis_open_underscore] = ACTIONS(1889), }, [371] = { - [sym__link_text] = STATE(2133), - [sym__link_text_non_empty] = STATE(795), + [sym__link_text] = STATE(2124), + [sym__link_text_non_empty] = STATE(712), + [sym_shortcut_link] = STATE(363), + [sym_full_reference_link] = STATE(363), + [sym_collapsed_reference_link] = STATE(363), + [sym_inline_link] = STATE(363), + [sym_image] = STATE(363), + [sym__image_inline_link] = STATE(713), + [sym__image_shortcut_link] = STATE(713), + [sym__image_full_reference_link] = STATE(713), + [sym__image_collapsed_reference_link] = STATE(713), + [sym__image_description] = STATE(2120), + [sym__image_description_non_empty] = STATE(714), + [sym_html_tag] = STATE(363), + [sym__open_tag] = STATE(715), + [sym__closing_tag] = STATE(715), + [sym__html_comment] = STATE(715), + [sym__processing_instruction] = STATE(715), + [sym__declaration] = STATE(715), + [sym__cdata_section] = STATE(715), + [sym_hard_line_break] = STATE(363), + [sym__whitespace] = STATE(363), + [sym__word] = STATE(363), + [sym__text_inline_no_star] = STATE(363), + [sym__inline_element_no_newline_no_star] = STATE(363), + [aux_sym__inline_no_newline_no_star] = STATE(363), + [sym__emphasis_star_no_newline] = STATE(846), + [sym__strong_emphasis_star_no_newline] = STATE(363), + [sym__emphasis_underscore_no_newline] = STATE(846), + [sym__strong_emphasis_underscore_no_newline] = STATE(363), + [sym__code_span_no_newline] = STATE(363), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_DQUOTE] = ACTIONS(599), + [anon_sym_POUND] = ACTIONS(599), + [anon_sym_DOLLAR] = ACTIONS(599), + [anon_sym_PERCENT] = ACTIONS(599), + [anon_sym_AMP] = ACTIONS(601), + [anon_sym_SQUOTE] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_RPAREN] = ACTIONS(599), + [anon_sym_STAR] = ACTIONS(599), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_COMMA] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_DOT] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(599), + [anon_sym_COLON] = ACTIONS(599), + [anon_sym_SEMI] = ACTIONS(599), + [anon_sym_LT] = ACTIONS(603), + [anon_sym_EQ] = ACTIONS(599), + [anon_sym_GT] = ACTIONS(599), + [anon_sym_QMARK] = ACTIONS(599), + [anon_sym_AT] = ACTIONS(599), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_BSLASH] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(599), + [anon_sym_CARET] = ACTIONS(599), + [anon_sym__] = ACTIONS(599), + [anon_sym_BQUOTE] = ACTIONS(599), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_PIPE] = ACTIONS(599), + [anon_sym_RBRACE] = ACTIONS(599), + [anon_sym_TILDE] = ACTIONS(599), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1760), + [anon_sym_LT_QMARK] = ACTIONS(1762), + [aux_sym__html_block_4_token1] = ACTIONS(1764), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1766), + [sym_backslash_escape] = ACTIONS(1768), + [sym_entity_reference] = ACTIONS(1768), + [sym_numeric_character_reference] = ACTIONS(1768), + [sym_uri_autolink] = ACTIONS(1768), + [sym_email_autolink] = ACTIONS(1768), + [sym__whitespace_ge_2] = ACTIONS(1770), + [aux_sym__whitespace_token1] = ACTIONS(621), + [sym__word_no_digit] = ACTIONS(1768), + [sym__digits] = ACTIONS(1768), + [sym__code_span_start] = ACTIONS(1772), + [sym__emphasis_open_star] = ACTIONS(1774), + [sym__emphasis_open_underscore] = ACTIONS(1776), + [sym__emphasis_close_star] = ACTIONS(1892), + }, + [372] = { + [sym__link_text] = STATE(2126), + [sym__link_text_non_empty] = STATE(716), + [sym_shortcut_link] = STATE(372), + [sym_full_reference_link] = STATE(372), + [sym_collapsed_reference_link] = STATE(372), + [sym_inline_link] = STATE(372), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(663), + [sym__image_shortcut_link] = STATE(663), + [sym__image_full_reference_link] = STATE(663), + [sym__image_collapsed_reference_link] = STATE(663), + [sym__image_description] = STATE(2134), + [sym__image_description_non_empty] = STATE(705), + [sym_html_tag] = STATE(372), + [sym__open_tag] = STATE(702), + [sym__closing_tag] = STATE(702), + [sym__html_comment] = STATE(702), + [sym__processing_instruction] = STATE(702), + [sym__declaration] = STATE(702), + [sym__cdata_section] = STATE(702), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(372), + [sym__word] = STATE(372), + [sym__text_inline_no_underscore] = STATE(372), + [sym__inline_element_no_newline_no_underscore] = STATE(372), + [aux_sym__inline_no_newline_no_underscore] = STATE(372), + [sym__emphasis_star_no_newline] = STATE(848), + [sym__strong_emphasis_star_no_newline] = STATE(372), + [sym__emphasis_underscore_no_newline] = STATE(848), + [sym__strong_emphasis_underscore_no_newline] = STATE(372), + [sym__code_span_no_newline] = STATE(372), + [anon_sym_BANG] = ACTIONS(1894), + [anon_sym_DQUOTE] = ACTIONS(1897), + [anon_sym_POUND] = ACTIONS(1897), + [anon_sym_DOLLAR] = ACTIONS(1897), + [anon_sym_PERCENT] = ACTIONS(1897), + [anon_sym_AMP] = ACTIONS(1900), + [anon_sym_SQUOTE] = ACTIONS(1897), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_RPAREN] = ACTIONS(1897), + [anon_sym_STAR] = ACTIONS(1897), + [anon_sym_PLUS] = ACTIONS(1897), + [anon_sym_COMMA] = ACTIONS(1897), + [anon_sym_DASH] = ACTIONS(1897), + [anon_sym_DOT] = ACTIONS(1897), + [anon_sym_SLASH] = ACTIONS(1897), + [anon_sym_COLON] = ACTIONS(1897), + [anon_sym_SEMI] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1903), + [anon_sym_EQ] = ACTIONS(1897), + [anon_sym_GT] = ACTIONS(1897), + [anon_sym_QMARK] = ACTIONS(1897), + [anon_sym_AT] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1906), + [anon_sym_BSLASH] = ACTIONS(1909), + [anon_sym_RBRACK] = ACTIONS(1897), + [anon_sym_CARET] = ACTIONS(1897), + [anon_sym__] = ACTIONS(1897), + [anon_sym_BQUOTE] = ACTIONS(1897), + [anon_sym_LBRACE] = ACTIONS(1897), + [anon_sym_PIPE] = ACTIONS(1897), + [anon_sym_RBRACE] = ACTIONS(1897), + [anon_sym_TILDE] = ACTIONS(1897), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1912), + [anon_sym_LT_QMARK] = ACTIONS(1915), + [aux_sym__html_block_4_token1] = ACTIONS(1918), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1921), + [sym_backslash_escape] = ACTIONS(1924), + [sym_entity_reference] = ACTIONS(1924), + [sym_numeric_character_reference] = ACTIONS(1924), + [sym_uri_autolink] = ACTIONS(1924), + [sym_email_autolink] = ACTIONS(1924), + [sym__whitespace_ge_2] = ACTIONS(1927), + [aux_sym__whitespace_token1] = ACTIONS(1930), + [sym__word_no_digit] = ACTIONS(1924), + [sym__digits] = ACTIONS(1924), + [sym__code_span_start] = ACTIONS(1933), + [sym__emphasis_open_star] = ACTIONS(1936), + [sym__emphasis_open_underscore] = ACTIONS(1939), + [sym__emphasis_close_underscore] = ACTIONS(1942), + }, + [373] = { + [sym__link_text] = STATE(2139), + [sym__link_text_non_empty] = STATE(819), + [sym_shortcut_link] = STATE(827), + [sym_full_reference_link] = STATE(827), + [sym_collapsed_reference_link] = STATE(827), + [sym_inline_link] = STATE(827), + [sym_image] = STATE(827), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(821), + [sym_html_tag] = STATE(827), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(827), + [sym__whitespace] = STATE(827), + [sym__word] = STATE(827), + [sym__text_inline] = STATE(827), + [sym__inline_element_no_newline] = STATE(827), + [aux_sym__inline_no_newline] = STATE(373), + [sym__emphasis_star_no_newline] = STATE(828), + [sym__strong_emphasis_star_no_newline] = STATE(827), + [sym__emphasis_underscore_no_newline] = STATE(828), + [sym__strong_emphasis_underscore_no_newline] = STATE(827), + [sym__code_span_no_newline] = STATE(827), + [anon_sym_BANG] = ACTIONS(1944), + [anon_sym_DQUOTE] = ACTIONS(1947), + [anon_sym_POUND] = ACTIONS(1947), + [anon_sym_DOLLAR] = ACTIONS(1947), + [anon_sym_PERCENT] = ACTIONS(1947), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_SQUOTE] = ACTIONS(1947), + [anon_sym_LPAREN] = ACTIONS(1947), + [anon_sym_RPAREN] = ACTIONS(1947), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_PLUS] = ACTIONS(1947), + [anon_sym_COMMA] = ACTIONS(1947), + [anon_sym_DASH] = ACTIONS(1947), + [anon_sym_DOT] = ACTIONS(1947), + [anon_sym_SLASH] = ACTIONS(1947), + [anon_sym_COLON] = ACTIONS(1947), + [anon_sym_SEMI] = ACTIONS(1947), + [anon_sym_LT] = ACTIONS(1953), + [anon_sym_EQ] = ACTIONS(1947), + [anon_sym_GT] = ACTIONS(1947), + [anon_sym_QMARK] = ACTIONS(1947), + [anon_sym_AT] = ACTIONS(1947), + [anon_sym_LBRACK] = ACTIONS(1956), + [anon_sym_BSLASH] = ACTIONS(1959), + [anon_sym_RBRACK] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(1947), + [anon_sym__] = ACTIONS(1947), + [anon_sym_BQUOTE] = ACTIONS(1947), + [anon_sym_LBRACE] = ACTIONS(1947), + [anon_sym_PIPE] = ACTIONS(1947), + [anon_sym_RBRACE] = ACTIONS(1947), + [anon_sym_TILDE] = ACTIONS(1947), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1962), + [anon_sym_LT_QMARK] = ACTIONS(1965), + [aux_sym__html_block_4_token1] = ACTIONS(1968), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1971), + [sym_backslash_escape] = ACTIONS(1974), + [sym_entity_reference] = ACTIONS(1974), + [sym_numeric_character_reference] = ACTIONS(1974), + [sym_uri_autolink] = ACTIONS(1974), + [sym_email_autolink] = ACTIONS(1974), + [sym__whitespace_ge_2] = ACTIONS(1977), + [aux_sym__whitespace_token1] = ACTIONS(1980), + [sym__word_no_digit] = ACTIONS(1974), + [sym__digits] = ACTIONS(1974), + [aux_sym__newline_token1] = ACTIONS(1983), + [sym__code_span_start] = ACTIONS(1985), + [sym__emphasis_open_star] = ACTIONS(1988), + [sym__emphasis_open_underscore] = ACTIONS(1991), + }, + [374] = { + [sym__link_text] = STATE(2124), + [sym__link_text_non_empty] = STATE(712), [sym_shortcut_link] = STATE(366), [sym_full_reference_link] = STATE(366), [sym_collapsed_reference_link] = STATE(366), [sym_inline_link] = STATE(366), [sym_image] = STATE(366), - [sym__image_inline_link] = STATE(801), - [sym__image_shortcut_link] = STATE(801), - [sym__image_full_reference_link] = STATE(801), - [sym__image_collapsed_reference_link] = STATE(801), - [sym__image_description] = STATE(2122), - [sym__image_description_non_empty] = STATE(802), + [sym__image_inline_link] = STATE(713), + [sym__image_shortcut_link] = STATE(713), + [sym__image_full_reference_link] = STATE(713), + [sym__image_collapsed_reference_link] = STATE(713), + [sym__image_description] = STATE(2120), + [sym__image_description_non_empty] = STATE(714), [sym_html_tag] = STATE(366), - [sym__open_tag] = STATE(683), - [sym__closing_tag] = STATE(683), - [sym__html_comment] = STATE(683), - [sym__processing_instruction] = STATE(683), - [sym__declaration] = STATE(683), - [sym__cdata_section] = STATE(683), + [sym__open_tag] = STATE(715), + [sym__closing_tag] = STATE(715), + [sym__html_comment] = STATE(715), + [sym__processing_instruction] = STATE(715), + [sym__declaration] = STATE(715), + [sym__cdata_section] = STATE(715), [sym_hard_line_break] = STATE(366), [sym__whitespace] = STATE(366), [sym__word] = STATE(366), - [sym__text_inline_no_underscore] = STATE(366), - [sym__inline_element_no_newline_no_underscore] = STATE(366), - [aux_sym__inline_no_newline_no_underscore] = STATE(366), - [sym__emphasis_star_no_newline] = STATE(816), + [sym__text_inline_no_star] = STATE(366), + [sym__inline_element_no_newline_no_star] = STATE(366), + [aux_sym__inline_no_newline_no_star] = STATE(366), + [sym__emphasis_star_no_newline] = STATE(865), [sym__strong_emphasis_star_no_newline] = STATE(366), - [sym__emphasis_underscore_no_newline] = STATE(816), + [sym__emphasis_underscore_no_newline] = STATE(846), [sym__strong_emphasis_underscore_no_newline] = STATE(366), [sym__code_span_no_newline] = STATE(366), + [anon_sym_BANG] = ACTIONS(1994), + [anon_sym_DQUOTE] = ACTIONS(646), + [anon_sym_POUND] = ACTIONS(646), + [anon_sym_DOLLAR] = ACTIONS(646), + [anon_sym_PERCENT] = ACTIONS(646), + [anon_sym_AMP] = ACTIONS(649), + [anon_sym_SQUOTE] = ACTIONS(646), + [anon_sym_LPAREN] = ACTIONS(646), + [anon_sym_RPAREN] = ACTIONS(646), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_COMMA] = ACTIONS(646), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_DOT] = ACTIONS(646), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_COLON] = ACTIONS(646), + [anon_sym_SEMI] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(652), + [anon_sym_EQ] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_QMARK] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(646), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_BSLASH] = ACTIONS(2000), + [anon_sym_RBRACK] = ACTIONS(646), + [anon_sym_CARET] = ACTIONS(646), + [anon_sym__] = ACTIONS(646), + [anon_sym_BQUOTE] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(646), + [anon_sym_PIPE] = ACTIONS(646), + [anon_sym_RBRACE] = ACTIONS(646), + [anon_sym_TILDE] = ACTIONS(646), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2003), + [anon_sym_LT_QMARK] = ACTIONS(2006), + [aux_sym__html_block_4_token1] = ACTIONS(2009), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2012), + [sym_backslash_escape] = ACTIONS(2015), + [sym_entity_reference] = ACTIONS(2015), + [sym_numeric_character_reference] = ACTIONS(2015), + [sym_uri_autolink] = ACTIONS(2015), + [sym_email_autolink] = ACTIONS(2015), + [sym__whitespace_ge_2] = ACTIONS(2018), + [aux_sym__whitespace_token1] = ACTIONS(679), + [sym__word_no_digit] = ACTIONS(2015), + [sym__digits] = ACTIONS(2015), + [sym__code_span_start] = ACTIONS(2021), + [sym__emphasis_open_star] = ACTIONS(2024), + [sym__emphasis_open_underscore] = ACTIONS(2027), + [sym__emphasis_close_underscore] = ACTIONS(694), + }, + [375] = { + [sym__link_text] = STATE(2126), + [sym__link_text_non_empty] = STATE(716), + [sym_shortcut_link] = STATE(372), + [sym_full_reference_link] = STATE(372), + [sym_collapsed_reference_link] = STATE(372), + [sym_inline_link] = STATE(372), + [sym_image] = STATE(372), + [sym__image_inline_link] = STATE(663), + [sym__image_shortcut_link] = STATE(663), + [sym__image_full_reference_link] = STATE(663), + [sym__image_collapsed_reference_link] = STATE(663), + [sym__image_description] = STATE(2134), + [sym__image_description_non_empty] = STATE(705), + [sym_html_tag] = STATE(372), + [sym__open_tag] = STATE(702), + [sym__closing_tag] = STATE(702), + [sym__html_comment] = STATE(702), + [sym__processing_instruction] = STATE(702), + [sym__declaration] = STATE(702), + [sym__cdata_section] = STATE(702), + [sym_hard_line_break] = STATE(372), + [sym__whitespace] = STATE(372), + [sym__word] = STATE(372), + [sym__text_inline_no_underscore] = STATE(372), + [sym__inline_element_no_newline_no_underscore] = STATE(372), + [aux_sym__inline_no_newline_no_underscore] = STATE(372), + [sym__emphasis_star_no_newline] = STATE(848), + [sym__strong_emphasis_star_no_newline] = STATE(372), + [sym__emphasis_underscore_no_newline] = STATE(848), + [sym__strong_emphasis_underscore_no_newline] = STATE(372), + [sym__code_span_no_newline] = STATE(372), [anon_sym_BANG] = ACTIONS(1674), - [anon_sym_DQUOTE] = ACTIONS(713), - [anon_sym_POUND] = ACTIONS(713), - [anon_sym_DOLLAR] = ACTIONS(713), - [anon_sym_PERCENT] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(713), - [anon_sym_LPAREN] = ACTIONS(713), - [anon_sym_RPAREN] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(713), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_COMMA] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_DOT] = ACTIONS(713), - [anon_sym_SLASH] = ACTIONS(713), - [anon_sym_COLON] = ACTIONS(713), - [anon_sym_SEMI] = ACTIONS(713), - [anon_sym_LT] = ACTIONS(717), - [anon_sym_EQ] = ACTIONS(713), - [anon_sym_GT] = ACTIONS(713), - [anon_sym_QMARK] = ACTIONS(713), - [anon_sym_AT] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(561), + [anon_sym_POUND] = ACTIONS(561), + [anon_sym_DOLLAR] = ACTIONS(561), + [anon_sym_PERCENT] = ACTIONS(561), + [anon_sym_AMP] = ACTIONS(563), + [anon_sym_SQUOTE] = ACTIONS(561), + [anon_sym_LPAREN] = ACTIONS(561), + [anon_sym_RPAREN] = ACTIONS(561), + [anon_sym_STAR] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_COMMA] = ACTIONS(561), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_DOT] = ACTIONS(561), + [anon_sym_SLASH] = ACTIONS(561), + [anon_sym_COLON] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(561), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_EQ] = ACTIONS(561), + [anon_sym_GT] = ACTIONS(561), + [anon_sym_QMARK] = ACTIONS(561), + [anon_sym_AT] = ACTIONS(561), [anon_sym_LBRACK] = ACTIONS(1676), [anon_sym_BSLASH] = ACTIONS(1678), - [anon_sym_RBRACK] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym__] = ACTIONS(713), - [anon_sym_BQUOTE] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(713), - [anon_sym_PIPE] = ACTIONS(713), - [anon_sym_RBRACE] = ACTIONS(713), - [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_RBRACK] = ACTIONS(561), + [anon_sym_CARET] = ACTIONS(561), + [anon_sym__] = ACTIONS(561), + [anon_sym_BQUOTE] = ACTIONS(561), + [anon_sym_LBRACE] = ACTIONS(561), + [anon_sym_PIPE] = ACTIONS(561), + [anon_sym_RBRACE] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1680), [anon_sym_LT_QMARK] = ACTIONS(1682), [aux_sym__html_block_4_token1] = ACTIONS(1684), @@ -64235,344 +64570,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_uri_autolink] = ACTIONS(1688), [sym_email_autolink] = ACTIONS(1688), [sym__whitespace_ge_2] = ACTIONS(1690), - [aux_sym__whitespace_token1] = ACTIONS(735), + [aux_sym__whitespace_token1] = ACTIONS(583), [sym__word_no_digit] = ACTIONS(1688), [sym__digits] = ACTIONS(1688), [sym__code_span_start] = ACTIONS(1692), [sym__emphasis_open_star] = ACTIONS(1694), [sym__emphasis_open_underscore] = ACTIONS(1696), - [sym__emphasis_close_underscore] = ACTIONS(1906), - }, - [372] = { - [sym__link_text] = STATE(2133), - [sym__link_text_non_empty] = STATE(795), - [sym_shortcut_link] = STATE(371), - [sym_full_reference_link] = STATE(371), - [sym_collapsed_reference_link] = STATE(371), - [sym_inline_link] = STATE(371), - [sym_image] = STATE(371), - [sym__image_inline_link] = STATE(801), - [sym__image_shortcut_link] = STATE(801), - [sym__image_full_reference_link] = STATE(801), - [sym__image_collapsed_reference_link] = STATE(801), - [sym__image_description] = STATE(2122), - [sym__image_description_non_empty] = STATE(802), - [sym_html_tag] = STATE(371), - [sym__open_tag] = STATE(683), - [sym__closing_tag] = STATE(683), - [sym__html_comment] = STATE(683), - [sym__processing_instruction] = STATE(683), - [sym__declaration] = STATE(683), - [sym__cdata_section] = STATE(683), - [sym_hard_line_break] = STATE(371), - [sym__whitespace] = STATE(371), - [sym__word] = STATE(371), - [sym__text_inline_no_underscore] = STATE(371), - [sym__inline_element_no_newline_no_underscore] = STATE(371), - [aux_sym__inline_no_newline_no_underscore] = STATE(371), - [sym__emphasis_star_no_newline] = STATE(816), - [sym__strong_emphasis_star_no_newline] = STATE(371), - [sym__emphasis_underscore_no_newline] = STATE(825), - [sym__strong_emphasis_underscore_no_newline] = STATE(371), - [sym__code_span_no_newline] = STATE(371), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_POUND] = ACTIONS(1561), - [anon_sym_DOLLAR] = ACTIONS(1561), - [anon_sym_PERCENT] = ACTIONS(1561), - [anon_sym_AMP] = ACTIONS(1564), - [anon_sym_SQUOTE] = ACTIONS(1561), - [anon_sym_LPAREN] = ACTIONS(1561), - [anon_sym_RPAREN] = ACTIONS(1561), - [anon_sym_STAR] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1561), - [anon_sym_COMMA] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1561), - [anon_sym_DOT] = ACTIONS(1561), - [anon_sym_SLASH] = ACTIONS(1561), - [anon_sym_COLON] = ACTIONS(1561), - [anon_sym_SEMI] = ACTIONS(1561), - [anon_sym_LT] = ACTIONS(1567), - [anon_sym_EQ] = ACTIONS(1561), - [anon_sym_GT] = ACTIONS(1561), - [anon_sym_QMARK] = ACTIONS(1561), - [anon_sym_AT] = ACTIONS(1561), - [anon_sym_LBRACK] = ACTIONS(1911), - [anon_sym_BSLASH] = ACTIONS(1914), - [anon_sym_RBRACK] = ACTIONS(1561), - [anon_sym_CARET] = ACTIONS(1561), - [anon_sym__] = ACTIONS(1561), - [anon_sym_BQUOTE] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_PIPE] = ACTIONS(1561), - [anon_sym_RBRACE] = ACTIONS(1561), - [anon_sym_TILDE] = ACTIONS(1561), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1917), - [anon_sym_LT_QMARK] = ACTIONS(1920), - [aux_sym__html_block_4_token1] = ACTIONS(1923), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1926), - [sym_backslash_escape] = ACTIONS(1929), - [sym_entity_reference] = ACTIONS(1929), - [sym_numeric_character_reference] = ACTIONS(1929), - [sym_uri_autolink] = ACTIONS(1929), - [sym_email_autolink] = ACTIONS(1929), - [sym__whitespace_ge_2] = ACTIONS(1932), - [aux_sym__whitespace_token1] = ACTIONS(1594), - [sym__word_no_digit] = ACTIONS(1929), - [sym__digits] = ACTIONS(1929), - [aux_sym__newline_token1] = ACTIONS(1727), - [sym__code_span_start] = ACTIONS(1935), - [sym__emphasis_open_star] = ACTIONS(1938), - [sym__emphasis_open_underscore] = ACTIONS(1941), - }, - [373] = { - [sym__link_text] = STATE(2135), - [sym__link_text_non_empty] = STATE(707), - [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(708), - [sym__image_shortcut_link] = STATE(708), - [sym__image_full_reference_link] = STATE(708), - [sym__image_collapsed_reference_link] = STATE(708), - [sym__image_description] = STATE(2137), - [sym__image_description_non_empty] = STATE(709), - [sym_html_tag] = STATE(374), - [sym__open_tag] = STATE(710), - [sym__closing_tag] = STATE(710), - [sym__html_comment] = STATE(710), - [sym__processing_instruction] = STATE(710), - [sym__declaration] = STATE(710), - [sym__cdata_section] = STATE(710), - [sym_hard_line_break] = STATE(374), - [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(913), - [sym__strong_emphasis_star_no_newline] = STATE(374), - [sym__emphasis_underscore_no_newline] = STATE(823), - [sym__strong_emphasis_underscore_no_newline] = STATE(374), - [sym__code_span_no_newline] = STATE(374), - [anon_sym_BANG] = ACTIONS(1944), - [anon_sym_DQUOTE] = ACTIONS(627), - [anon_sym_POUND] = ACTIONS(627), - [anon_sym_DOLLAR] = ACTIONS(627), - [anon_sym_PERCENT] = ACTIONS(627), - [anon_sym_AMP] = ACTIONS(630), - [anon_sym_SQUOTE] = ACTIONS(627), - [anon_sym_LPAREN] = ACTIONS(627), - [anon_sym_RPAREN] = ACTIONS(627), - [anon_sym_STAR] = ACTIONS(627), - [anon_sym_PLUS] = ACTIONS(627), - [anon_sym_COMMA] = ACTIONS(627), - [anon_sym_DASH] = ACTIONS(627), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_COLON] = ACTIONS(627), - [anon_sym_SEMI] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(633), - [anon_sym_EQ] = ACTIONS(627), - [anon_sym_GT] = ACTIONS(627), - [anon_sym_QMARK] = ACTIONS(627), - [anon_sym_AT] = ACTIONS(627), - [anon_sym_LBRACK] = ACTIONS(1947), - [anon_sym_BSLASH] = ACTIONS(1950), - [anon_sym_RBRACK] = ACTIONS(627), - [anon_sym_CARET] = ACTIONS(627), - [anon_sym__] = ACTIONS(627), - [anon_sym_BQUOTE] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_PIPE] = ACTIONS(627), - [anon_sym_RBRACE] = ACTIONS(627), - [anon_sym_TILDE] = ACTIONS(627), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1953), - [anon_sym_LT_QMARK] = ACTIONS(1956), - [aux_sym__html_block_4_token1] = ACTIONS(1959), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1962), - [sym_backslash_escape] = ACTIONS(1965), - [sym_entity_reference] = ACTIONS(1965), - [sym_numeric_character_reference] = ACTIONS(1965), - [sym_uri_autolink] = ACTIONS(1965), - [sym_email_autolink] = ACTIONS(1965), - [sym__whitespace_ge_2] = ACTIONS(1968), - [aux_sym__whitespace_token1] = ACTIONS(660), - [sym__word_no_digit] = ACTIONS(1965), - [sym__digits] = ACTIONS(1965), - [sym__code_span_start] = ACTIONS(1971), - [sym__emphasis_open_star] = ACTIONS(1974), - [sym__emphasis_open_underscore] = ACTIONS(1977), - [sym__emphasis_close_underscore] = ACTIONS(675), - }, - [374] = { - [sym__link_text] = STATE(2135), - [sym__link_text_non_empty] = STATE(707), - [sym_shortcut_link] = STATE(375), - [sym_full_reference_link] = STATE(375), - [sym_collapsed_reference_link] = STATE(375), - [sym_inline_link] = STATE(375), - [sym_image] = STATE(375), - [sym__image_inline_link] = STATE(708), - [sym__image_shortcut_link] = STATE(708), - [sym__image_full_reference_link] = STATE(708), - [sym__image_collapsed_reference_link] = STATE(708), - [sym__image_description] = STATE(2137), - [sym__image_description_non_empty] = STATE(709), - [sym_html_tag] = STATE(375), - [sym__open_tag] = STATE(710), - [sym__closing_tag] = STATE(710), - [sym__html_comment] = STATE(710), - [sym__processing_instruction] = STATE(710), - [sym__declaration] = STATE(710), - [sym__cdata_section] = STATE(710), - [sym_hard_line_break] = STATE(375), - [sym__whitespace] = STATE(375), - [sym__word] = STATE(375), - [sym__text_inline_no_star] = STATE(375), - [sym__inline_element_no_newline_no_star] = STATE(375), - [aux_sym__inline_no_newline_no_star] = STATE(375), - [sym__emphasis_star_no_newline] = STATE(823), - [sym__strong_emphasis_star_no_newline] = STATE(375), - [sym__emphasis_underscore_no_newline] = STATE(823), - [sym__strong_emphasis_underscore_no_newline] = STATE(375), - [sym__code_span_no_newline] = STATE(375), - [anon_sym_BANG] = ACTIONS(1738), - [anon_sym_DQUOTE] = ACTIONS(580), - [anon_sym_POUND] = ACTIONS(580), - [anon_sym_DOLLAR] = ACTIONS(580), - [anon_sym_PERCENT] = ACTIONS(580), - [anon_sym_AMP] = ACTIONS(582), - [anon_sym_SQUOTE] = ACTIONS(580), - [anon_sym_LPAREN] = ACTIONS(580), - [anon_sym_RPAREN] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(580), - [anon_sym_COMMA] = ACTIONS(580), - [anon_sym_DASH] = ACTIONS(580), - [anon_sym_DOT] = ACTIONS(580), - [anon_sym_SLASH] = ACTIONS(580), - [anon_sym_COLON] = ACTIONS(580), - [anon_sym_SEMI] = ACTIONS(580), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_EQ] = ACTIONS(580), - [anon_sym_GT] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(580), - [anon_sym_AT] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_BSLASH] = ACTIONS(1742), - [anon_sym_RBRACK] = ACTIONS(580), - [anon_sym_CARET] = ACTIONS(580), - [anon_sym__] = ACTIONS(580), - [anon_sym_BQUOTE] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(580), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_RBRACE] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(580), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1744), - [anon_sym_LT_QMARK] = ACTIONS(1746), - [aux_sym__html_block_4_token1] = ACTIONS(1748), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1750), - [sym_backslash_escape] = ACTIONS(1752), - [sym_entity_reference] = ACTIONS(1752), - [sym_numeric_character_reference] = ACTIONS(1752), - [sym_uri_autolink] = ACTIONS(1752), - [sym_email_autolink] = ACTIONS(1752), - [sym__whitespace_ge_2] = ACTIONS(1754), - [aux_sym__whitespace_token1] = ACTIONS(602), - [sym__word_no_digit] = ACTIONS(1752), - [sym__digits] = ACTIONS(1752), - [sym__code_span_start] = ACTIONS(1756), - [sym__emphasis_open_star] = ACTIONS(1758), - [sym__emphasis_open_underscore] = ACTIONS(1760), - [sym__emphasis_close_star] = ACTIONS(1980), - }, - [375] = { - [sym__link_text] = STATE(2135), - [sym__link_text_non_empty] = STATE(707), - [sym_shortcut_link] = STATE(375), - [sym_full_reference_link] = STATE(375), - [sym_collapsed_reference_link] = STATE(375), - [sym_inline_link] = STATE(375), - [sym_image] = STATE(375), - [sym__image_inline_link] = STATE(708), - [sym__image_shortcut_link] = STATE(708), - [sym__image_full_reference_link] = STATE(708), - [sym__image_collapsed_reference_link] = STATE(708), - [sym__image_description] = STATE(2137), - [sym__image_description_non_empty] = STATE(709), - [sym_html_tag] = STATE(375), - [sym__open_tag] = STATE(710), - [sym__closing_tag] = STATE(710), - [sym__html_comment] = STATE(710), - [sym__processing_instruction] = STATE(710), - [sym__declaration] = STATE(710), - [sym__cdata_section] = STATE(710), - [sym_hard_line_break] = STATE(375), - [sym__whitespace] = STATE(375), - [sym__word] = STATE(375), - [sym__text_inline_no_star] = STATE(375), - [sym__inline_element_no_newline_no_star] = STATE(375), - [aux_sym__inline_no_newline_no_star] = STATE(375), - [sym__emphasis_star_no_newline] = STATE(823), - [sym__strong_emphasis_star_no_newline] = STATE(375), - [sym__emphasis_underscore_no_newline] = STATE(823), - [sym__strong_emphasis_underscore_no_newline] = STATE(375), - [sym__code_span_no_newline] = STATE(375), - [anon_sym_BANG] = ACTIONS(1982), - [anon_sym_DQUOTE] = ACTIONS(1985), - [anon_sym_POUND] = ACTIONS(1985), - [anon_sym_DOLLAR] = ACTIONS(1985), - [anon_sym_PERCENT] = ACTIONS(1985), - [anon_sym_AMP] = ACTIONS(1988), - [anon_sym_SQUOTE] = ACTIONS(1985), - [anon_sym_LPAREN] = ACTIONS(1985), - [anon_sym_RPAREN] = ACTIONS(1985), - [anon_sym_STAR] = ACTIONS(1985), - [anon_sym_PLUS] = ACTIONS(1985), - [anon_sym_COMMA] = ACTIONS(1985), - [anon_sym_DASH] = ACTIONS(1985), - [anon_sym_DOT] = ACTIONS(1985), - [anon_sym_SLASH] = ACTIONS(1985), - [anon_sym_COLON] = ACTIONS(1985), - [anon_sym_SEMI] = ACTIONS(1985), - [anon_sym_LT] = ACTIONS(1991), - [anon_sym_EQ] = ACTIONS(1985), - [anon_sym_GT] = ACTIONS(1985), - [anon_sym_QMARK] = ACTIONS(1985), - [anon_sym_AT] = ACTIONS(1985), - [anon_sym_LBRACK] = ACTIONS(1994), - [anon_sym_BSLASH] = ACTIONS(1997), - [anon_sym_RBRACK] = ACTIONS(1985), - [anon_sym_CARET] = ACTIONS(1985), - [anon_sym__] = ACTIONS(1985), - [anon_sym_BQUOTE] = ACTIONS(1985), - [anon_sym_LBRACE] = ACTIONS(1985), - [anon_sym_PIPE] = ACTIONS(1985), - [anon_sym_RBRACE] = ACTIONS(1985), - [anon_sym_TILDE] = ACTIONS(1985), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2000), - [anon_sym_LT_QMARK] = ACTIONS(2003), - [aux_sym__html_block_4_token1] = ACTIONS(2006), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2009), - [sym_backslash_escape] = ACTIONS(2012), - [sym_entity_reference] = ACTIONS(2012), - [sym_numeric_character_reference] = ACTIONS(2012), - [sym_uri_autolink] = ACTIONS(2012), - [sym_email_autolink] = ACTIONS(2012), - [sym__whitespace_ge_2] = ACTIONS(2015), - [aux_sym__whitespace_token1] = ACTIONS(2018), - [sym__word_no_digit] = ACTIONS(2012), - [sym__digits] = ACTIONS(2012), - [sym__code_span_start] = ACTIONS(2021), - [sym__emphasis_open_star] = ACTIONS(2024), - [sym__emphasis_open_underscore] = ACTIONS(2027), - [sym__emphasis_close_star] = ACTIONS(2030), + [sym__emphasis_close_underscore] = ACTIONS(2030), }, [376] = { - [ts_builtin_sym_end] = ACTIONS(2032), [anon_sym_BANG] = ACTIONS(2032), [anon_sym_DQUOTE] = ACTIONS(2032), [anon_sym_POUND] = ACTIONS(2032), @@ -64626,6 +64632,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__word_no_digit] = ACTIONS(2032), [sym__digits] = ACTIONS(2032), [aux_sym__newline_token1] = ACTIONS(2032), + [sym__block_close] = ACTIONS(2032), [sym__block_quote_start] = ACTIONS(2032), [sym__indented_chunk_start] = ACTIONS(2032), [sym_atx_h1_marker] = ACTIONS(2032), @@ -64815,88 +64822,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_underscore] = ACTIONS(2040), }, [379] = { - [anon_sym_BANG] = ACTIONS(2040), - [anon_sym_DQUOTE] = ACTIONS(2040), - [anon_sym_POUND] = ACTIONS(2040), - [anon_sym_DOLLAR] = ACTIONS(2040), - [anon_sym_PERCENT] = ACTIONS(2040), - [anon_sym_AMP] = ACTIONS(2042), - [anon_sym_SQUOTE] = ACTIONS(2040), - [anon_sym_LPAREN] = ACTIONS(2040), - [anon_sym_RPAREN] = ACTIONS(2040), - [anon_sym_STAR] = ACTIONS(2040), - [anon_sym_PLUS] = ACTIONS(2040), - [anon_sym_COMMA] = ACTIONS(2040), - [anon_sym_DASH] = ACTIONS(2040), - [anon_sym_DOT] = ACTIONS(2040), - [anon_sym_SLASH] = ACTIONS(2040), - [anon_sym_COLON] = ACTIONS(2040), - [anon_sym_SEMI] = ACTIONS(2040), - [anon_sym_LT] = ACTIONS(2042), - [anon_sym_EQ] = ACTIONS(2040), - [anon_sym_GT] = ACTIONS(2040), - [anon_sym_QMARK] = ACTIONS(2040), - [anon_sym_AT] = ACTIONS(2040), - [anon_sym_LBRACK] = ACTIONS(2040), - [anon_sym_BSLASH] = ACTIONS(2042), - [anon_sym_RBRACK] = ACTIONS(2040), - [anon_sym_CARET] = ACTIONS(2040), - [anon_sym__] = ACTIONS(2040), - [anon_sym_BQUOTE] = ACTIONS(2040), - [anon_sym_LBRACE] = ACTIONS(2040), - [anon_sym_PIPE] = ACTIONS(2040), - [anon_sym_RBRACE] = ACTIONS(2040), - [anon_sym_TILDE] = ACTIONS(2040), - [aux_sym__html_block_1_token1] = ACTIONS(2040), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2042), - [anon_sym_LT_QMARK] = ACTIONS(2042), - [aux_sym__html_block_4_token1] = ACTIONS(2042), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2040), - [aux_sym__html_block_6_token1] = ACTIONS(2042), - [aux_sym__html_block_6_token2] = ACTIONS(2040), - [sym__open_tag_html_block] = ACTIONS(2040), - [sym__open_tag_html_block_newline] = ACTIONS(2040), - [sym__closing_tag_html_block] = ACTIONS(2040), - [sym__closing_tag_html_block_newline] = ACTIONS(2040), - [sym_backslash_escape] = ACTIONS(2040), - [sym_entity_reference] = ACTIONS(2040), - [sym_numeric_character_reference] = ACTIONS(2040), - [sym_uri_autolink] = ACTIONS(2040), - [sym_email_autolink] = ACTIONS(2040), - [sym__whitespace_ge_2] = ACTIONS(2040), - [aux_sym__whitespace_token1] = ACTIONS(2042), - [sym__word_no_digit] = ACTIONS(2040), - [sym__digits] = ACTIONS(2040), - [aux_sym__newline_token1] = ACTIONS(2040), - [sym__block_close] = ACTIONS(2040), - [sym__block_quote_start] = ACTIONS(2040), - [sym__indented_chunk_start] = ACTIONS(2040), - [sym_atx_h1_marker] = ACTIONS(2040), - [sym_atx_h2_marker] = ACTIONS(2040), - [sym_atx_h3_marker] = ACTIONS(2040), - [sym_atx_h4_marker] = ACTIONS(2040), - [sym_atx_h5_marker] = ACTIONS(2040), - [sym_atx_h6_marker] = ACTIONS(2040), - [sym__thematic_break] = ACTIONS(2040), - [sym__list_marker_minus] = ACTIONS(2040), - [sym__list_marker_plus] = ACTIONS(2040), - [sym__list_marker_star] = ACTIONS(2040), - [sym__list_marker_parenthesis] = ACTIONS(2040), - [sym__list_marker_dot] = ACTIONS(2040), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2040), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2040), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2040), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2040), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2040), - [sym__fenced_code_block_start_backtick] = ACTIONS(2040), - [sym__fenced_code_block_start_tilde] = ACTIONS(2040), - [sym__blank_line_start] = ACTIONS(2040), - [sym__code_span_start] = ACTIONS(2040), - [sym__emphasis_open_star] = ACTIONS(2040), - [sym__emphasis_open_underscore] = ACTIONS(2040), - }, - [380] = { - [ts_builtin_sym_end] = ACTIONS(2044), [anon_sym_BANG] = ACTIONS(2044), [anon_sym_DQUOTE] = ACTIONS(2044), [anon_sym_POUND] = ACTIONS(2044), @@ -64950,6 +64875,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__word_no_digit] = ACTIONS(2044), [sym__digits] = ACTIONS(2044), [aux_sym__newline_token1] = ACTIONS(2044), + [sym__block_close] = ACTIONS(2044), [sym__block_quote_start] = ACTIONS(2044), [sym__indented_chunk_start] = ACTIONS(2044), [sym_atx_h1_marker] = ACTIONS(2044), @@ -64976,88 +64902,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_star] = ACTIONS(2044), [sym__emphasis_open_underscore] = ACTIONS(2044), }, - [381] = { - [ts_builtin_sym_end] = ACTIONS(2036), - [anon_sym_BANG] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [anon_sym_POUND] = ACTIONS(2036), - [anon_sym_DOLLAR] = ACTIONS(2036), - [anon_sym_PERCENT] = ACTIONS(2036), - [anon_sym_AMP] = ACTIONS(2038), - [anon_sym_SQUOTE] = ACTIONS(2036), - [anon_sym_LPAREN] = ACTIONS(2036), - [anon_sym_RPAREN] = ACTIONS(2036), - [anon_sym_STAR] = ACTIONS(2036), - [anon_sym_PLUS] = ACTIONS(2036), - [anon_sym_COMMA] = ACTIONS(2036), - [anon_sym_DASH] = ACTIONS(2036), - [anon_sym_DOT] = ACTIONS(2036), - [anon_sym_SLASH] = ACTIONS(2036), - [anon_sym_COLON] = ACTIONS(2036), - [anon_sym_SEMI] = ACTIONS(2036), - [anon_sym_LT] = ACTIONS(2038), - [anon_sym_EQ] = ACTIONS(2036), - [anon_sym_GT] = ACTIONS(2036), - [anon_sym_QMARK] = ACTIONS(2036), - [anon_sym_AT] = ACTIONS(2036), - [anon_sym_LBRACK] = ACTIONS(2036), - [anon_sym_BSLASH] = ACTIONS(2038), - [anon_sym_RBRACK] = ACTIONS(2036), - [anon_sym_CARET] = ACTIONS(2036), - [anon_sym__] = ACTIONS(2036), - [anon_sym_BQUOTE] = ACTIONS(2036), - [anon_sym_LBRACE] = ACTIONS(2036), - [anon_sym_PIPE] = ACTIONS(2036), - [anon_sym_RBRACE] = ACTIONS(2036), - [anon_sym_TILDE] = ACTIONS(2036), - [aux_sym__html_block_1_token1] = ACTIONS(2036), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2038), - [anon_sym_LT_QMARK] = ACTIONS(2038), - [aux_sym__html_block_4_token1] = ACTIONS(2038), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2036), - [aux_sym__html_block_6_token1] = ACTIONS(2038), - [aux_sym__html_block_6_token2] = ACTIONS(2036), - [sym__open_tag_html_block] = ACTIONS(2036), - [sym__open_tag_html_block_newline] = ACTIONS(2036), - [sym__closing_tag_html_block] = ACTIONS(2036), - [sym__closing_tag_html_block_newline] = ACTIONS(2036), - [sym_backslash_escape] = ACTIONS(2036), - [sym_entity_reference] = ACTIONS(2036), - [sym_numeric_character_reference] = ACTIONS(2036), - [sym_uri_autolink] = ACTIONS(2036), - [sym_email_autolink] = ACTIONS(2036), - [sym__whitespace_ge_2] = ACTIONS(2036), - [aux_sym__whitespace_token1] = ACTIONS(2038), - [sym__word_no_digit] = ACTIONS(2036), - [sym__digits] = ACTIONS(2036), - [aux_sym__newline_token1] = ACTIONS(2036), - [sym__block_quote_start] = ACTIONS(2036), - [sym__indented_chunk_start] = ACTIONS(2036), - [sym_atx_h1_marker] = ACTIONS(2036), - [sym_atx_h2_marker] = ACTIONS(2036), - [sym_atx_h3_marker] = ACTIONS(2036), - [sym_atx_h4_marker] = ACTIONS(2036), - [sym_atx_h5_marker] = ACTIONS(2036), - [sym_atx_h6_marker] = ACTIONS(2036), - [sym__thematic_break] = ACTIONS(2036), - [sym__list_marker_minus] = ACTIONS(2036), - [sym__list_marker_plus] = ACTIONS(2036), - [sym__list_marker_star] = ACTIONS(2036), - [sym__list_marker_parenthesis] = ACTIONS(2036), - [sym__list_marker_dot] = ACTIONS(2036), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2036), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2036), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2036), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2036), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2036), - [sym__fenced_code_block_start_backtick] = ACTIONS(2036), - [sym__fenced_code_block_start_tilde] = ACTIONS(2036), - [sym__blank_line_start] = ACTIONS(2036), - [sym__code_span_start] = ACTIONS(2036), - [sym__emphasis_open_star] = ACTIONS(2036), - [sym__emphasis_open_underscore] = ACTIONS(2036), - }, - [382] = { + [380] = { [ts_builtin_sym_end] = ACTIONS(2048), [anon_sym_BANG] = ACTIONS(2048), [anon_sym_DQUOTE] = ACTIONS(2048), @@ -65138,7 +64983,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_star] = ACTIONS(2048), [sym__emphasis_open_underscore] = ACTIONS(2048), }, - [383] = { + [381] = { [ts_builtin_sym_end] = ACTIONS(2052), [anon_sym_BANG] = ACTIONS(2052), [anon_sym_DQUOTE] = ACTIONS(2052), @@ -65219,410 +65064,572 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_star] = ACTIONS(2052), [sym__emphasis_open_underscore] = ACTIONS(2052), }, - [384] = { - [sym__link_text] = STATE(2133), - [sym__link_text_non_empty] = STATE(795), - [sym_shortcut_link] = STATE(368), - [sym_full_reference_link] = STATE(368), - [sym_collapsed_reference_link] = STATE(368), - [sym_inline_link] = STATE(368), - [sym_image] = STATE(368), - [sym__image_inline_link] = STATE(801), - [sym__image_shortcut_link] = STATE(801), - [sym__image_full_reference_link] = STATE(801), - [sym__image_collapsed_reference_link] = STATE(801), - [sym__image_description] = STATE(2122), - [sym__image_description_non_empty] = STATE(802), - [sym_html_tag] = STATE(368), - [sym__open_tag] = STATE(683), - [sym__closing_tag] = STATE(683), - [sym__html_comment] = STATE(683), - [sym__processing_instruction] = STATE(683), - [sym__declaration] = STATE(683), - [sym__cdata_section] = STATE(683), - [sym_hard_line_break] = STATE(368), - [sym__whitespace] = STATE(368), - [sym__word] = STATE(368), - [sym__text_inline_no_underscore] = STATE(368), - [sym__inline_element_no_newline_no_underscore] = STATE(368), - [aux_sym__inline_no_newline_no_underscore] = STATE(368), - [sym__emphasis_star_no_newline] = STATE(816), - [sym__strong_emphasis_star_no_newline] = STATE(368), - [sym__emphasis_underscore_no_newline] = STATE(834), - [sym__strong_emphasis_underscore_no_newline] = STATE(368), - [sym__code_span_no_newline] = STATE(368), - [anon_sym_BANG] = ACTIONS(1674), - [anon_sym_DQUOTE] = ACTIONS(713), - [anon_sym_POUND] = ACTIONS(713), - [anon_sym_DOLLAR] = ACTIONS(713), - [anon_sym_PERCENT] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(713), - [anon_sym_LPAREN] = ACTIONS(713), - [anon_sym_RPAREN] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(713), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_COMMA] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_DOT] = ACTIONS(713), - [anon_sym_SLASH] = ACTIONS(713), - [anon_sym_COLON] = ACTIONS(713), - [anon_sym_SEMI] = ACTIONS(713), - [anon_sym_LT] = ACTIONS(717), - [anon_sym_EQ] = ACTIONS(713), - [anon_sym_GT] = ACTIONS(713), - [anon_sym_QMARK] = ACTIONS(713), - [anon_sym_AT] = ACTIONS(713), - [anon_sym_LBRACK] = ACTIONS(1676), - [anon_sym_BSLASH] = ACTIONS(1678), - [anon_sym_RBRACK] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym__] = ACTIONS(713), - [anon_sym_BQUOTE] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(713), - [anon_sym_PIPE] = ACTIONS(713), - [anon_sym_RBRACE] = ACTIONS(713), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1680), - [anon_sym_LT_QMARK] = ACTIONS(1682), - [aux_sym__html_block_4_token1] = ACTIONS(1684), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1686), + [382] = { + [ts_builtin_sym_end] = 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), + [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(2056), [sym_numeric_character_reference] = ACTIONS(2056), [sym_uri_autolink] = ACTIONS(2056), [sym_email_autolink] = ACTIONS(2056), - [sym__whitespace_ge_2] = ACTIONS(1690), - [aux_sym__whitespace_token1] = ACTIONS(735), + [sym__whitespace_ge_2] = ACTIONS(2056), + [aux_sym__whitespace_token1] = ACTIONS(2058), [sym__word_no_digit] = ACTIONS(2056), [sym__digits] = ACTIONS(2056), - [sym__code_span_start] = ACTIONS(1692), - [sym__emphasis_open_star] = ACTIONS(1694), - [sym__emphasis_open_underscore] = ACTIONS(1696), + [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__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), + }, + [383] = { + [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), + [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(2056), + [sym_numeric_character_reference] = ACTIONS(2056), + [sym_uri_autolink] = ACTIONS(2056), + [sym_email_autolink] = 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__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), + }, + [384] = { + [ts_builtin_sym_end] = 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), + [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(2060), + [sym_numeric_character_reference] = ACTIONS(2060), + [sym_uri_autolink] = ACTIONS(2060), + [sym_email_autolink] = 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__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), }, [385] = { - [ts_builtin_sym_end] = ACTIONS(2058), - [anon_sym_BANG] = ACTIONS(2058), - [anon_sym_DQUOTE] = ACTIONS(2058), - [anon_sym_POUND] = ACTIONS(2058), - [anon_sym_DOLLAR] = ACTIONS(2058), - [anon_sym_PERCENT] = ACTIONS(2058), - [anon_sym_AMP] = ACTIONS(2060), - [anon_sym_SQUOTE] = ACTIONS(2058), - [anon_sym_LPAREN] = ACTIONS(2058), - [anon_sym_RPAREN] = ACTIONS(2058), - [anon_sym_STAR] = ACTIONS(2058), - [anon_sym_PLUS] = ACTIONS(2058), - [anon_sym_COMMA] = ACTIONS(2058), - [anon_sym_DASH] = ACTIONS(2058), - [anon_sym_DOT] = ACTIONS(2058), - [anon_sym_SLASH] = ACTIONS(2058), - [anon_sym_COLON] = ACTIONS(2058), - [anon_sym_SEMI] = ACTIONS(2058), - [anon_sym_LT] = ACTIONS(2060), - [anon_sym_EQ] = ACTIONS(2058), - [anon_sym_GT] = ACTIONS(2058), - [anon_sym_QMARK] = ACTIONS(2058), - [anon_sym_AT] = ACTIONS(2058), - [anon_sym_LBRACK] = ACTIONS(2058), - [anon_sym_BSLASH] = ACTIONS(2060), - [anon_sym_RBRACK] = ACTIONS(2058), - [anon_sym_CARET] = ACTIONS(2058), - [anon_sym__] = ACTIONS(2058), - [anon_sym_BQUOTE] = ACTIONS(2058), - [anon_sym_LBRACE] = ACTIONS(2058), - [anon_sym_PIPE] = ACTIONS(2058), - [anon_sym_RBRACE] = ACTIONS(2058), - [anon_sym_TILDE] = ACTIONS(2058), - [aux_sym__html_block_1_token1] = ACTIONS(2058), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2060), - [anon_sym_LT_QMARK] = ACTIONS(2060), - [aux_sym__html_block_4_token1] = ACTIONS(2060), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2058), - [aux_sym__html_block_6_token1] = ACTIONS(2060), - [aux_sym__html_block_6_token2] = ACTIONS(2058), - [sym__open_tag_html_block] = ACTIONS(2058), - [sym__open_tag_html_block_newline] = ACTIONS(2058), - [sym__closing_tag_html_block] = ACTIONS(2058), - [sym__closing_tag_html_block_newline] = ACTIONS(2058), - [sym_backslash_escape] = ACTIONS(2058), - [sym_entity_reference] = ACTIONS(2058), - [sym_numeric_character_reference] = ACTIONS(2058), - [sym_uri_autolink] = ACTIONS(2058), - [sym_email_autolink] = ACTIONS(2058), - [sym__whitespace_ge_2] = ACTIONS(2058), - [aux_sym__whitespace_token1] = ACTIONS(2060), - [sym__word_no_digit] = ACTIONS(2058), - [sym__digits] = ACTIONS(2058), - [aux_sym__newline_token1] = ACTIONS(2058), - [sym__block_quote_start] = ACTIONS(2058), - [sym__indented_chunk_start] = ACTIONS(2058), - [sym_atx_h1_marker] = ACTIONS(2058), - [sym_atx_h2_marker] = ACTIONS(2058), - [sym_atx_h3_marker] = ACTIONS(2058), - [sym_atx_h4_marker] = ACTIONS(2058), - [sym_atx_h5_marker] = ACTIONS(2058), - [sym_atx_h6_marker] = ACTIONS(2058), - [sym__thematic_break] = ACTIONS(2058), - [sym__list_marker_minus] = ACTIONS(2058), - [sym__list_marker_plus] = ACTIONS(2058), - [sym__list_marker_star] = ACTIONS(2058), - [sym__list_marker_parenthesis] = ACTIONS(2058), - [sym__list_marker_dot] = ACTIONS(2058), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2058), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2058), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2058), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2058), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2058), - [sym__fenced_code_block_start_backtick] = ACTIONS(2058), - [sym__fenced_code_block_start_tilde] = ACTIONS(2058), - [sym__blank_line_start] = ACTIONS(2058), - [sym__code_span_start] = ACTIONS(2058), - [sym__emphasis_open_star] = ACTIONS(2058), - [sym__emphasis_open_underscore] = ACTIONS(2058), + [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), + [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(2064), + [sym_numeric_character_reference] = ACTIONS(2064), + [sym_uri_autolink] = ACTIONS(2064), + [sym_email_autolink] = 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__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), }, [386] = { - [ts_builtin_sym_end] = ACTIONS(2062), - [anon_sym_BANG] = ACTIONS(2062), - [anon_sym_DQUOTE] = ACTIONS(2062), - [anon_sym_POUND] = ACTIONS(2062), - [anon_sym_DOLLAR] = ACTIONS(2062), - [anon_sym_PERCENT] = ACTIONS(2062), - [anon_sym_AMP] = ACTIONS(2064), - [anon_sym_SQUOTE] = ACTIONS(2062), - [anon_sym_LPAREN] = ACTIONS(2062), - [anon_sym_RPAREN] = ACTIONS(2062), - [anon_sym_STAR] = ACTIONS(2062), - [anon_sym_PLUS] = ACTIONS(2062), - [anon_sym_COMMA] = ACTIONS(2062), - [anon_sym_DASH] = ACTIONS(2062), - [anon_sym_DOT] = ACTIONS(2062), - [anon_sym_SLASH] = ACTIONS(2062), - [anon_sym_COLON] = ACTIONS(2062), - [anon_sym_SEMI] = ACTIONS(2062), - [anon_sym_LT] = ACTIONS(2064), - [anon_sym_EQ] = ACTIONS(2062), - [anon_sym_GT] = ACTIONS(2062), - [anon_sym_QMARK] = ACTIONS(2062), - [anon_sym_AT] = ACTIONS(2062), - [anon_sym_LBRACK] = ACTIONS(2062), - [anon_sym_BSLASH] = ACTIONS(2064), - [anon_sym_RBRACK] = ACTIONS(2062), - [anon_sym_CARET] = ACTIONS(2062), - [anon_sym__] = ACTIONS(2062), - [anon_sym_BQUOTE] = ACTIONS(2062), - [anon_sym_LBRACE] = ACTIONS(2062), - [anon_sym_PIPE] = ACTIONS(2062), - [anon_sym_RBRACE] = ACTIONS(2062), - [anon_sym_TILDE] = ACTIONS(2062), - [aux_sym__html_block_1_token1] = ACTIONS(2062), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2064), - [anon_sym_LT_QMARK] = ACTIONS(2064), - [aux_sym__html_block_4_token1] = ACTIONS(2064), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2062), - [aux_sym__html_block_6_token1] = ACTIONS(2064), - [aux_sym__html_block_6_token2] = ACTIONS(2062), - [sym__open_tag_html_block] = ACTIONS(2062), - [sym__open_tag_html_block_newline] = ACTIONS(2062), - [sym__closing_tag_html_block] = ACTIONS(2062), - [sym__closing_tag_html_block_newline] = ACTIONS(2062), - [sym_backslash_escape] = ACTIONS(2062), - [sym_entity_reference] = ACTIONS(2062), - [sym_numeric_character_reference] = ACTIONS(2062), - [sym_uri_autolink] = ACTIONS(2062), - [sym_email_autolink] = ACTIONS(2062), - [sym__whitespace_ge_2] = ACTIONS(2062), - [aux_sym__whitespace_token1] = ACTIONS(2064), - [sym__word_no_digit] = ACTIONS(2062), - [sym__digits] = ACTIONS(2062), - [aux_sym__newline_token1] = ACTIONS(2062), - [sym__block_quote_start] = ACTIONS(2062), - [sym__indented_chunk_start] = ACTIONS(2062), - [sym_atx_h1_marker] = ACTIONS(2062), - [sym_atx_h2_marker] = ACTIONS(2062), - [sym_atx_h3_marker] = ACTIONS(2062), - [sym_atx_h4_marker] = ACTIONS(2062), - [sym_atx_h5_marker] = ACTIONS(2062), - [sym_atx_h6_marker] = ACTIONS(2062), - [sym__thematic_break] = ACTIONS(2062), - [sym__list_marker_minus] = ACTIONS(2062), - [sym__list_marker_plus] = ACTIONS(2062), - [sym__list_marker_star] = ACTIONS(2062), - [sym__list_marker_parenthesis] = ACTIONS(2062), - [sym__list_marker_dot] = ACTIONS(2062), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2062), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2062), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2062), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2062), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2062), - [sym__fenced_code_block_start_backtick] = ACTIONS(2062), - [sym__fenced_code_block_start_tilde] = ACTIONS(2062), - [sym__blank_line_start] = ACTIONS(2062), - [sym__code_span_start] = ACTIONS(2062), - [sym__emphasis_open_star] = ACTIONS(2062), - [sym__emphasis_open_underscore] = ACTIONS(2062), + [anon_sym_BANG] = ACTIONS(2052), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_POUND] = ACTIONS(2052), + [anon_sym_DOLLAR] = ACTIONS(2052), + [anon_sym_PERCENT] = ACTIONS(2052), + [anon_sym_AMP] = ACTIONS(2054), + [anon_sym_SQUOTE] = ACTIONS(2052), + [anon_sym_LPAREN] = ACTIONS(2052), + [anon_sym_RPAREN] = ACTIONS(2052), + [anon_sym_STAR] = ACTIONS(2052), + [anon_sym_PLUS] = ACTIONS(2052), + [anon_sym_COMMA] = ACTIONS(2052), + [anon_sym_DASH] = ACTIONS(2052), + [anon_sym_DOT] = ACTIONS(2052), + [anon_sym_SLASH] = ACTIONS(2052), + [anon_sym_COLON] = ACTIONS(2052), + [anon_sym_SEMI] = ACTIONS(2052), + [anon_sym_LT] = ACTIONS(2054), + [anon_sym_EQ] = ACTIONS(2052), + [anon_sym_GT] = ACTIONS(2052), + [anon_sym_QMARK] = ACTIONS(2052), + [anon_sym_AT] = ACTIONS(2052), + [anon_sym_LBRACK] = ACTIONS(2052), + [anon_sym_BSLASH] = ACTIONS(2054), + [anon_sym_RBRACK] = ACTIONS(2052), + [anon_sym_CARET] = ACTIONS(2052), + [anon_sym__] = ACTIONS(2052), + [anon_sym_BQUOTE] = ACTIONS(2052), + [anon_sym_LBRACE] = ACTIONS(2052), + [anon_sym_PIPE] = ACTIONS(2052), + [anon_sym_RBRACE] = ACTIONS(2052), + [anon_sym_TILDE] = ACTIONS(2052), + [aux_sym__html_block_1_token1] = ACTIONS(2052), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2054), + [anon_sym_LT_QMARK] = ACTIONS(2054), + [aux_sym__html_block_4_token1] = ACTIONS(2054), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2052), + [aux_sym__html_block_6_token1] = ACTIONS(2054), + [aux_sym__html_block_6_token2] = ACTIONS(2052), + [sym__open_tag_html_block] = ACTIONS(2052), + [sym__open_tag_html_block_newline] = ACTIONS(2052), + [sym__closing_tag_html_block] = ACTIONS(2052), + [sym__closing_tag_html_block_newline] = ACTIONS(2052), + [sym_backslash_escape] = ACTIONS(2052), + [sym_entity_reference] = ACTIONS(2052), + [sym_numeric_character_reference] = ACTIONS(2052), + [sym_uri_autolink] = ACTIONS(2052), + [sym_email_autolink] = ACTIONS(2052), + [sym__whitespace_ge_2] = ACTIONS(2052), + [aux_sym__whitespace_token1] = ACTIONS(2054), + [sym__word_no_digit] = ACTIONS(2052), + [sym__digits] = ACTIONS(2052), + [aux_sym__newline_token1] = ACTIONS(2052), + [sym__block_close] = ACTIONS(2052), + [sym__block_quote_start] = ACTIONS(2052), + [sym__indented_chunk_start] = ACTIONS(2052), + [sym_atx_h1_marker] = ACTIONS(2052), + [sym_atx_h2_marker] = ACTIONS(2052), + [sym_atx_h3_marker] = ACTIONS(2052), + [sym_atx_h4_marker] = ACTIONS(2052), + [sym_atx_h5_marker] = ACTIONS(2052), + [sym_atx_h6_marker] = ACTIONS(2052), + [sym__thematic_break] = ACTIONS(2052), + [sym__list_marker_minus] = ACTIONS(2052), + [sym__list_marker_plus] = ACTIONS(2052), + [sym__list_marker_star] = ACTIONS(2052), + [sym__list_marker_parenthesis] = ACTIONS(2052), + [sym__list_marker_dot] = ACTIONS(2052), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2052), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2052), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2052), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2052), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2052), + [sym__fenced_code_block_start_backtick] = ACTIONS(2052), + [sym__fenced_code_block_start_tilde] = ACTIONS(2052), + [sym__blank_line_start] = ACTIONS(2052), + [sym__code_span_start] = ACTIONS(2052), + [sym__emphasis_open_star] = ACTIONS(2052), + [sym__emphasis_open_underscore] = ACTIONS(2052), }, [387] = { - [ts_builtin_sym_end] = ACTIONS(2066), - [anon_sym_BANG] = ACTIONS(2066), - [anon_sym_DQUOTE] = ACTIONS(2066), - [anon_sym_POUND] = ACTIONS(2066), - [anon_sym_DOLLAR] = ACTIONS(2066), - [anon_sym_PERCENT] = ACTIONS(2066), - [anon_sym_AMP] = ACTIONS(2068), - [anon_sym_SQUOTE] = ACTIONS(2066), - [anon_sym_LPAREN] = ACTIONS(2066), - [anon_sym_RPAREN] = ACTIONS(2066), - [anon_sym_STAR] = ACTIONS(2066), - [anon_sym_PLUS] = ACTIONS(2066), - [anon_sym_COMMA] = ACTIONS(2066), - [anon_sym_DASH] = ACTIONS(2066), - [anon_sym_DOT] = ACTIONS(2066), - [anon_sym_SLASH] = ACTIONS(2066), - [anon_sym_COLON] = ACTIONS(2066), - [anon_sym_SEMI] = ACTIONS(2066), - [anon_sym_LT] = ACTIONS(2068), - [anon_sym_EQ] = ACTIONS(2066), - [anon_sym_GT] = ACTIONS(2066), - [anon_sym_QMARK] = ACTIONS(2066), - [anon_sym_AT] = ACTIONS(2066), - [anon_sym_LBRACK] = ACTIONS(2066), - [anon_sym_BSLASH] = ACTIONS(2068), - [anon_sym_RBRACK] = ACTIONS(2066), - [anon_sym_CARET] = ACTIONS(2066), - [anon_sym__] = ACTIONS(2066), - [anon_sym_BQUOTE] = ACTIONS(2066), - [anon_sym_LBRACE] = ACTIONS(2066), - [anon_sym_PIPE] = ACTIONS(2066), - [anon_sym_RBRACE] = ACTIONS(2066), - [anon_sym_TILDE] = ACTIONS(2066), - [aux_sym__html_block_1_token1] = ACTIONS(2066), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2068), - [anon_sym_LT_QMARK] = ACTIONS(2068), - [aux_sym__html_block_4_token1] = ACTIONS(2068), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2066), - [aux_sym__html_block_6_token1] = ACTIONS(2068), - [aux_sym__html_block_6_token2] = ACTIONS(2066), - [sym__open_tag_html_block] = ACTIONS(2066), - [sym__open_tag_html_block_newline] = ACTIONS(2066), - [sym__closing_tag_html_block] = ACTIONS(2066), - [sym__closing_tag_html_block_newline] = ACTIONS(2066), - [sym_backslash_escape] = ACTIONS(2066), - [sym_entity_reference] = ACTIONS(2066), - [sym_numeric_character_reference] = ACTIONS(2066), - [sym_uri_autolink] = ACTIONS(2066), - [sym_email_autolink] = ACTIONS(2066), - [sym__whitespace_ge_2] = ACTIONS(2066), - [aux_sym__whitespace_token1] = ACTIONS(2068), - [sym__word_no_digit] = ACTIONS(2066), - [sym__digits] = ACTIONS(2066), - [aux_sym__newline_token1] = ACTIONS(2066), - [sym__block_quote_start] = ACTIONS(2066), - [sym__indented_chunk_start] = ACTIONS(2066), - [sym_atx_h1_marker] = ACTIONS(2066), - [sym_atx_h2_marker] = ACTIONS(2066), - [sym_atx_h3_marker] = ACTIONS(2066), - [sym_atx_h4_marker] = ACTIONS(2066), - [sym_atx_h5_marker] = ACTIONS(2066), - [sym_atx_h6_marker] = ACTIONS(2066), - [sym__thematic_break] = ACTIONS(2066), - [sym__list_marker_minus] = ACTIONS(2066), - [sym__list_marker_plus] = ACTIONS(2066), - [sym__list_marker_star] = ACTIONS(2066), - [sym__list_marker_parenthesis] = ACTIONS(2066), - [sym__list_marker_dot] = ACTIONS(2066), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2066), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2066), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2066), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2066), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2066), - [sym__fenced_code_block_start_backtick] = ACTIONS(2066), - [sym__fenced_code_block_start_tilde] = ACTIONS(2066), - [sym__blank_line_start] = ACTIONS(2066), - [sym__code_span_start] = ACTIONS(2066), - [sym__emphasis_open_star] = ACTIONS(2066), - [sym__emphasis_open_underscore] = ACTIONS(2066), + [ts_builtin_sym_end] = 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), + [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(2068), + [sym_numeric_character_reference] = ACTIONS(2068), + [sym_uri_autolink] = ACTIONS(2068), + [sym_email_autolink] = 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__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), }, [388] = { - [sym__link_text] = STATE(2135), - [sym__link_text_non_empty] = STATE(707), - [sym_shortcut_link] = STATE(364), - [sym_full_reference_link] = STATE(364), - [sym_collapsed_reference_link] = STATE(364), - [sym_inline_link] = STATE(364), - [sym_image] = STATE(364), - [sym__image_inline_link] = STATE(708), - [sym__image_shortcut_link] = STATE(708), - [sym__image_full_reference_link] = STATE(708), - [sym__image_collapsed_reference_link] = STATE(708), - [sym__image_description] = STATE(2137), - [sym__image_description_non_empty] = STATE(709), - [sym_html_tag] = STATE(364), - [sym__open_tag] = STATE(710), - [sym__closing_tag] = STATE(710), - [sym__html_comment] = STATE(710), - [sym__processing_instruction] = STATE(710), - [sym__declaration] = STATE(710), - [sym__cdata_section] = STATE(710), - [sym_hard_line_break] = STATE(364), - [sym__whitespace] = STATE(364), - [sym__word] = STATE(364), - [sym__text_inline_no_star] = STATE(364), - [sym__inline_element_no_newline_no_star] = STATE(364), - [aux_sym__inline_no_newline_no_star] = STATE(364), - [sym__emphasis_star_no_newline] = STATE(894), - [sym__strong_emphasis_star_no_newline] = STATE(364), - [sym__emphasis_underscore_no_newline] = STATE(823), - [sym__strong_emphasis_underscore_no_newline] = STATE(364), - [sym__code_span_no_newline] = STATE(364), - [anon_sym_BANG] = ACTIONS(1738), - [anon_sym_DQUOTE] = ACTIONS(580), - [anon_sym_POUND] = ACTIONS(580), - [anon_sym_DOLLAR] = ACTIONS(580), - [anon_sym_PERCENT] = ACTIONS(580), - [anon_sym_AMP] = ACTIONS(582), - [anon_sym_SQUOTE] = ACTIONS(580), - [anon_sym_LPAREN] = ACTIONS(580), - [anon_sym_RPAREN] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(580), - [anon_sym_COMMA] = ACTIONS(580), - [anon_sym_DASH] = ACTIONS(580), - [anon_sym_DOT] = ACTIONS(580), - [anon_sym_SLASH] = ACTIONS(580), - [anon_sym_COLON] = ACTIONS(580), - [anon_sym_SEMI] = ACTIONS(580), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_EQ] = ACTIONS(580), - [anon_sym_GT] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(580), - [anon_sym_AT] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_BSLASH] = ACTIONS(1742), - [anon_sym_RBRACK] = ACTIONS(580), - [anon_sym_CARET] = ACTIONS(580), - [anon_sym__] = ACTIONS(580), - [anon_sym_BQUOTE] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(580), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_RBRACE] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(580), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1744), - [anon_sym_LT_QMARK] = ACTIONS(1746), - [aux_sym__html_block_4_token1] = ACTIONS(1748), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1750), - [sym_backslash_escape] = ACTIONS(2070), - [sym_entity_reference] = ACTIONS(2070), - [sym_numeric_character_reference] = ACTIONS(2070), - [sym_uri_autolink] = ACTIONS(2070), - [sym_email_autolink] = ACTIONS(2070), - [sym__whitespace_ge_2] = ACTIONS(1754), - [aux_sym__whitespace_token1] = ACTIONS(602), - [sym__word_no_digit] = ACTIONS(2070), - [sym__digits] = ACTIONS(2070), - [sym__code_span_start] = ACTIONS(1756), - [sym__emphasis_open_star] = ACTIONS(1758), - [sym__emphasis_open_underscore] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(2048), + [anon_sym_DQUOTE] = ACTIONS(2048), + [anon_sym_POUND] = ACTIONS(2048), + [anon_sym_DOLLAR] = ACTIONS(2048), + [anon_sym_PERCENT] = ACTIONS(2048), + [anon_sym_AMP] = ACTIONS(2050), + [anon_sym_SQUOTE] = ACTIONS(2048), + [anon_sym_LPAREN] = ACTIONS(2048), + [anon_sym_RPAREN] = ACTIONS(2048), + [anon_sym_STAR] = ACTIONS(2048), + [anon_sym_PLUS] = ACTIONS(2048), + [anon_sym_COMMA] = ACTIONS(2048), + [anon_sym_DASH] = ACTIONS(2048), + [anon_sym_DOT] = ACTIONS(2048), + [anon_sym_SLASH] = ACTIONS(2048), + [anon_sym_COLON] = ACTIONS(2048), + [anon_sym_SEMI] = ACTIONS(2048), + [anon_sym_LT] = ACTIONS(2050), + [anon_sym_EQ] = ACTIONS(2048), + [anon_sym_GT] = ACTIONS(2048), + [anon_sym_QMARK] = ACTIONS(2048), + [anon_sym_AT] = ACTIONS(2048), + [anon_sym_LBRACK] = ACTIONS(2048), + [anon_sym_BSLASH] = ACTIONS(2050), + [anon_sym_RBRACK] = ACTIONS(2048), + [anon_sym_CARET] = ACTIONS(2048), + [anon_sym__] = ACTIONS(2048), + [anon_sym_BQUOTE] = ACTIONS(2048), + [anon_sym_LBRACE] = ACTIONS(2048), + [anon_sym_PIPE] = ACTIONS(2048), + [anon_sym_RBRACE] = ACTIONS(2048), + [anon_sym_TILDE] = ACTIONS(2048), + [aux_sym__html_block_1_token1] = ACTIONS(2048), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2050), + [anon_sym_LT_QMARK] = ACTIONS(2050), + [aux_sym__html_block_4_token1] = ACTIONS(2050), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2048), + [aux_sym__html_block_6_token1] = ACTIONS(2050), + [aux_sym__html_block_6_token2] = ACTIONS(2048), + [sym__open_tag_html_block] = ACTIONS(2048), + [sym__open_tag_html_block_newline] = ACTIONS(2048), + [sym__closing_tag_html_block] = ACTIONS(2048), + [sym__closing_tag_html_block_newline] = ACTIONS(2048), + [sym_backslash_escape] = ACTIONS(2048), + [sym_entity_reference] = ACTIONS(2048), + [sym_numeric_character_reference] = ACTIONS(2048), + [sym_uri_autolink] = ACTIONS(2048), + [sym_email_autolink] = ACTIONS(2048), + [sym__whitespace_ge_2] = ACTIONS(2048), + [aux_sym__whitespace_token1] = ACTIONS(2050), + [sym__word_no_digit] = ACTIONS(2048), + [sym__digits] = ACTIONS(2048), + [aux_sym__newline_token1] = ACTIONS(2048), + [sym__block_close] = ACTIONS(2048), + [sym__block_quote_start] = ACTIONS(2048), + [sym__indented_chunk_start] = ACTIONS(2048), + [sym_atx_h1_marker] = ACTIONS(2048), + [sym_atx_h2_marker] = ACTIONS(2048), + [sym_atx_h3_marker] = ACTIONS(2048), + [sym_atx_h4_marker] = ACTIONS(2048), + [sym_atx_h5_marker] = ACTIONS(2048), + [sym_atx_h6_marker] = ACTIONS(2048), + [sym__thematic_break] = ACTIONS(2048), + [sym__list_marker_minus] = ACTIONS(2048), + [sym__list_marker_plus] = ACTIONS(2048), + [sym__list_marker_star] = ACTIONS(2048), + [sym__list_marker_parenthesis] = ACTIONS(2048), + [sym__list_marker_dot] = ACTIONS(2048), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2048), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2048), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2048), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2048), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2048), + [sym__fenced_code_block_start_backtick] = ACTIONS(2048), + [sym__fenced_code_block_start_tilde] = ACTIONS(2048), + [sym__blank_line_start] = ACTIONS(2048), + [sym__code_span_start] = ACTIONS(2048), + [sym__emphasis_open_star] = ACTIONS(2048), + [sym__emphasis_open_underscore] = ACTIONS(2048), }, [389] = { [anon_sym_BANG] = ACTIONS(2072), @@ -65706,249 +65713,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_underscore] = ACTIONS(2072), }, [390] = { - [anon_sym_BANG] = ACTIONS(2052), - [anon_sym_DQUOTE] = ACTIONS(2052), - [anon_sym_POUND] = ACTIONS(2052), - [anon_sym_DOLLAR] = ACTIONS(2052), - [anon_sym_PERCENT] = ACTIONS(2052), - [anon_sym_AMP] = ACTIONS(2054), - [anon_sym_SQUOTE] = ACTIONS(2052), - [anon_sym_LPAREN] = ACTIONS(2052), - [anon_sym_RPAREN] = ACTIONS(2052), - [anon_sym_STAR] = ACTIONS(2052), - [anon_sym_PLUS] = ACTIONS(2052), - [anon_sym_COMMA] = ACTIONS(2052), - [anon_sym_DASH] = ACTIONS(2052), - [anon_sym_DOT] = ACTIONS(2052), - [anon_sym_SLASH] = ACTIONS(2052), - [anon_sym_COLON] = ACTIONS(2052), - [anon_sym_SEMI] = ACTIONS(2052), - [anon_sym_LT] = ACTIONS(2054), - [anon_sym_EQ] = ACTIONS(2052), - [anon_sym_GT] = ACTIONS(2052), - [anon_sym_QMARK] = ACTIONS(2052), - [anon_sym_AT] = ACTIONS(2052), - [anon_sym_LBRACK] = ACTIONS(2052), - [anon_sym_BSLASH] = ACTIONS(2054), - [anon_sym_RBRACK] = ACTIONS(2052), - [anon_sym_CARET] = ACTIONS(2052), - [anon_sym__] = ACTIONS(2052), - [anon_sym_BQUOTE] = ACTIONS(2052), - [anon_sym_LBRACE] = ACTIONS(2052), - [anon_sym_PIPE] = ACTIONS(2052), - [anon_sym_RBRACE] = ACTIONS(2052), - [anon_sym_TILDE] = ACTIONS(2052), - [aux_sym__html_block_1_token1] = ACTIONS(2052), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2054), - [anon_sym_LT_QMARK] = ACTIONS(2054), - [aux_sym__html_block_4_token1] = ACTIONS(2054), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2052), - [aux_sym__html_block_6_token1] = ACTIONS(2054), - [aux_sym__html_block_6_token2] = ACTIONS(2052), - [sym__open_tag_html_block] = ACTIONS(2052), - [sym__open_tag_html_block_newline] = ACTIONS(2052), - [sym__closing_tag_html_block] = ACTIONS(2052), - [sym__closing_tag_html_block_newline] = ACTIONS(2052), - [sym_backslash_escape] = ACTIONS(2052), - [sym_entity_reference] = ACTIONS(2052), - [sym_numeric_character_reference] = ACTIONS(2052), - [sym_uri_autolink] = ACTIONS(2052), - [sym_email_autolink] = ACTIONS(2052), - [sym__whitespace_ge_2] = ACTIONS(2052), - [aux_sym__whitespace_token1] = ACTIONS(2054), - [sym__word_no_digit] = ACTIONS(2052), - [sym__digits] = ACTIONS(2052), - [aux_sym__newline_token1] = ACTIONS(2052), - [sym__block_close] = ACTIONS(2052), - [sym__block_quote_start] = ACTIONS(2052), - [sym__indented_chunk_start] = ACTIONS(2052), - [sym_atx_h1_marker] = ACTIONS(2052), - [sym_atx_h2_marker] = ACTIONS(2052), - [sym_atx_h3_marker] = ACTIONS(2052), - [sym_atx_h4_marker] = ACTIONS(2052), - [sym_atx_h5_marker] = ACTIONS(2052), - [sym_atx_h6_marker] = ACTIONS(2052), - [sym__thematic_break] = ACTIONS(2052), - [sym__list_marker_minus] = ACTIONS(2052), - [sym__list_marker_plus] = ACTIONS(2052), - [sym__list_marker_star] = ACTIONS(2052), - [sym__list_marker_parenthesis] = ACTIONS(2052), - [sym__list_marker_dot] = ACTIONS(2052), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2052), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2052), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2052), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2052), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2052), - [sym__fenced_code_block_start_backtick] = ACTIONS(2052), - [sym__fenced_code_block_start_tilde] = ACTIONS(2052), - [sym__blank_line_start] = ACTIONS(2052), - [sym__code_span_start] = ACTIONS(2052), - [sym__emphasis_open_star] = ACTIONS(2052), - [sym__emphasis_open_underscore] = ACTIONS(2052), + [ts_builtin_sym_end] = ACTIONS(2032), + [anon_sym_BANG] = ACTIONS(2032), + [anon_sym_DQUOTE] = ACTIONS(2032), + [anon_sym_POUND] = ACTIONS(2032), + [anon_sym_DOLLAR] = ACTIONS(2032), + [anon_sym_PERCENT] = ACTIONS(2032), + [anon_sym_AMP] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2032), + [anon_sym_LPAREN] = ACTIONS(2032), + [anon_sym_RPAREN] = ACTIONS(2032), + [anon_sym_STAR] = ACTIONS(2032), + [anon_sym_PLUS] = ACTIONS(2032), + [anon_sym_COMMA] = ACTIONS(2032), + [anon_sym_DASH] = ACTIONS(2032), + [anon_sym_DOT] = ACTIONS(2032), + [anon_sym_SLASH] = ACTIONS(2032), + [anon_sym_COLON] = ACTIONS(2032), + [anon_sym_SEMI] = ACTIONS(2032), + [anon_sym_LT] = ACTIONS(2034), + [anon_sym_EQ] = ACTIONS(2032), + [anon_sym_GT] = ACTIONS(2032), + [anon_sym_QMARK] = ACTIONS(2032), + [anon_sym_AT] = ACTIONS(2032), + [anon_sym_LBRACK] = ACTIONS(2032), + [anon_sym_BSLASH] = ACTIONS(2034), + [anon_sym_RBRACK] = ACTIONS(2032), + [anon_sym_CARET] = ACTIONS(2032), + [anon_sym__] = ACTIONS(2032), + [anon_sym_BQUOTE] = ACTIONS(2032), + [anon_sym_LBRACE] = ACTIONS(2032), + [anon_sym_PIPE] = ACTIONS(2032), + [anon_sym_RBRACE] = ACTIONS(2032), + [anon_sym_TILDE] = ACTIONS(2032), + [aux_sym__html_block_1_token1] = ACTIONS(2032), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2034), + [anon_sym_LT_QMARK] = ACTIONS(2034), + [aux_sym__html_block_4_token1] = ACTIONS(2034), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2032), + [aux_sym__html_block_6_token1] = ACTIONS(2034), + [aux_sym__html_block_6_token2] = ACTIONS(2032), + [sym__open_tag_html_block] = ACTIONS(2032), + [sym__open_tag_html_block_newline] = ACTIONS(2032), + [sym__closing_tag_html_block] = ACTIONS(2032), + [sym__closing_tag_html_block_newline] = ACTIONS(2032), + [sym_backslash_escape] = ACTIONS(2032), + [sym_entity_reference] = ACTIONS(2032), + [sym_numeric_character_reference] = ACTIONS(2032), + [sym_uri_autolink] = ACTIONS(2032), + [sym_email_autolink] = ACTIONS(2032), + [sym__whitespace_ge_2] = ACTIONS(2032), + [aux_sym__whitespace_token1] = ACTIONS(2034), + [sym__word_no_digit] = ACTIONS(2032), + [sym__digits] = ACTIONS(2032), + [aux_sym__newline_token1] = ACTIONS(2032), + [sym__block_quote_start] = ACTIONS(2032), + [sym__indented_chunk_start] = ACTIONS(2032), + [sym_atx_h1_marker] = ACTIONS(2032), + [sym_atx_h2_marker] = ACTIONS(2032), + [sym_atx_h3_marker] = ACTIONS(2032), + [sym_atx_h4_marker] = ACTIONS(2032), + [sym_atx_h5_marker] = ACTIONS(2032), + [sym_atx_h6_marker] = ACTIONS(2032), + [sym__thematic_break] = ACTIONS(2032), + [sym__list_marker_minus] = ACTIONS(2032), + [sym__list_marker_plus] = ACTIONS(2032), + [sym__list_marker_star] = ACTIONS(2032), + [sym__list_marker_parenthesis] = ACTIONS(2032), + [sym__list_marker_dot] = ACTIONS(2032), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2032), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2032), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2032), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2032), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2032), + [sym__fenced_code_block_start_backtick] = ACTIONS(2032), + [sym__fenced_code_block_start_tilde] = ACTIONS(2032), + [sym__blank_line_start] = ACTIONS(2032), + [sym__code_span_start] = ACTIONS(2032), + [sym__emphasis_open_star] = ACTIONS(2032), + [sym__emphasis_open_underscore] = ACTIONS(2032), }, [391] = { - [anon_sym_BANG] = ACTIONS(2062), - [anon_sym_DQUOTE] = ACTIONS(2062), - [anon_sym_POUND] = ACTIONS(2062), - [anon_sym_DOLLAR] = ACTIONS(2062), - [anon_sym_PERCENT] = ACTIONS(2062), - [anon_sym_AMP] = ACTIONS(2064), - [anon_sym_SQUOTE] = ACTIONS(2062), - [anon_sym_LPAREN] = ACTIONS(2062), - [anon_sym_RPAREN] = ACTIONS(2062), - [anon_sym_STAR] = ACTIONS(2062), - [anon_sym_PLUS] = ACTIONS(2062), - [anon_sym_COMMA] = ACTIONS(2062), - [anon_sym_DASH] = ACTIONS(2062), - [anon_sym_DOT] = ACTIONS(2062), - [anon_sym_SLASH] = ACTIONS(2062), - [anon_sym_COLON] = ACTIONS(2062), - [anon_sym_SEMI] = ACTIONS(2062), - [anon_sym_LT] = ACTIONS(2064), - [anon_sym_EQ] = ACTIONS(2062), - [anon_sym_GT] = ACTIONS(2062), - [anon_sym_QMARK] = ACTIONS(2062), - [anon_sym_AT] = ACTIONS(2062), - [anon_sym_LBRACK] = ACTIONS(2062), - [anon_sym_BSLASH] = ACTIONS(2064), - [anon_sym_RBRACK] = ACTIONS(2062), - [anon_sym_CARET] = ACTIONS(2062), - [anon_sym__] = ACTIONS(2062), - [anon_sym_BQUOTE] = ACTIONS(2062), - [anon_sym_LBRACE] = ACTIONS(2062), - [anon_sym_PIPE] = ACTIONS(2062), - [anon_sym_RBRACE] = ACTIONS(2062), - [anon_sym_TILDE] = ACTIONS(2062), - [aux_sym__html_block_1_token1] = ACTIONS(2062), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2064), - [anon_sym_LT_QMARK] = ACTIONS(2064), - [aux_sym__html_block_4_token1] = ACTIONS(2064), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2062), - [aux_sym__html_block_6_token1] = ACTIONS(2064), - [aux_sym__html_block_6_token2] = ACTIONS(2062), - [sym__open_tag_html_block] = ACTIONS(2062), - [sym__open_tag_html_block_newline] = ACTIONS(2062), - [sym__closing_tag_html_block] = ACTIONS(2062), - [sym__closing_tag_html_block_newline] = ACTIONS(2062), - [sym_backslash_escape] = ACTIONS(2062), - [sym_entity_reference] = ACTIONS(2062), - [sym_numeric_character_reference] = ACTIONS(2062), - [sym_uri_autolink] = ACTIONS(2062), - [sym_email_autolink] = ACTIONS(2062), - [sym__whitespace_ge_2] = ACTIONS(2062), - [aux_sym__whitespace_token1] = ACTIONS(2064), - [sym__word_no_digit] = ACTIONS(2062), - [sym__digits] = ACTIONS(2062), - [aux_sym__newline_token1] = ACTIONS(2062), - [sym__block_close] = ACTIONS(2062), - [sym__block_quote_start] = ACTIONS(2062), - [sym__indented_chunk_start] = ACTIONS(2062), - [sym_atx_h1_marker] = ACTIONS(2062), - [sym_atx_h2_marker] = ACTIONS(2062), - [sym_atx_h3_marker] = ACTIONS(2062), - [sym_atx_h4_marker] = ACTIONS(2062), - [sym_atx_h5_marker] = ACTIONS(2062), - [sym_atx_h6_marker] = ACTIONS(2062), - [sym__thematic_break] = ACTIONS(2062), - [sym__list_marker_minus] = ACTIONS(2062), - [sym__list_marker_plus] = ACTIONS(2062), - [sym__list_marker_star] = ACTIONS(2062), - [sym__list_marker_parenthesis] = ACTIONS(2062), - [sym__list_marker_dot] = ACTIONS(2062), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2062), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2062), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2062), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2062), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2062), - [sym__fenced_code_block_start_backtick] = ACTIONS(2062), - [sym__fenced_code_block_start_tilde] = ACTIONS(2062), - [sym__blank_line_start] = ACTIONS(2062), - [sym__code_span_start] = ACTIONS(2062), - [sym__emphasis_open_star] = ACTIONS(2062), - [sym__emphasis_open_underscore] = ACTIONS(2062), - }, - [392] = { - [ts_builtin_sym_end] = ACTIONS(2076), - [anon_sym_BANG] = ACTIONS(2076), - [anon_sym_DQUOTE] = ACTIONS(2076), - [anon_sym_POUND] = ACTIONS(2076), - [anon_sym_DOLLAR] = ACTIONS(2076), - [anon_sym_PERCENT] = ACTIONS(2076), - [anon_sym_AMP] = ACTIONS(2078), - [anon_sym_SQUOTE] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(2076), - [anon_sym_RPAREN] = ACTIONS(2076), - [anon_sym_STAR] = ACTIONS(2076), - [anon_sym_PLUS] = ACTIONS(2076), - [anon_sym_COMMA] = ACTIONS(2076), - [anon_sym_DASH] = ACTIONS(2076), - [anon_sym_DOT] = ACTIONS(2076), - [anon_sym_SLASH] = ACTIONS(2076), - [anon_sym_COLON] = ACTIONS(2076), - [anon_sym_SEMI] = ACTIONS(2076), - [anon_sym_LT] = ACTIONS(2078), - [anon_sym_EQ] = ACTIONS(2076), - [anon_sym_GT] = ACTIONS(2076), - [anon_sym_QMARK] = ACTIONS(2076), - [anon_sym_AT] = ACTIONS(2076), - [anon_sym_LBRACK] = ACTIONS(2076), - [anon_sym_BSLASH] = ACTIONS(2078), - [anon_sym_RBRACK] = ACTIONS(2076), - [anon_sym_CARET] = ACTIONS(2076), - [anon_sym__] = ACTIONS(2076), - [anon_sym_BQUOTE] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_RBRACE] = ACTIONS(2076), - [anon_sym_TILDE] = ACTIONS(2076), - [aux_sym__html_block_1_token1] = ACTIONS(2076), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2078), - [anon_sym_LT_QMARK] = ACTIONS(2078), - [aux_sym__html_block_4_token1] = ACTIONS(2078), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2076), - [aux_sym__html_block_6_token1] = ACTIONS(2078), - [aux_sym__html_block_6_token2] = ACTIONS(2076), - [sym__open_tag_html_block] = ACTIONS(2076), - [sym__open_tag_html_block_newline] = ACTIONS(2076), - [sym__closing_tag_html_block] = ACTIONS(2076), - [sym__closing_tag_html_block_newline] = ACTIONS(2076), - [sym_backslash_escape] = ACTIONS(2076), - [sym_entity_reference] = ACTIONS(2076), - [sym_numeric_character_reference] = ACTIONS(2076), - [sym_uri_autolink] = ACTIONS(2076), - [sym_email_autolink] = ACTIONS(2076), - [sym__whitespace_ge_2] = ACTIONS(2076), - [aux_sym__whitespace_token1] = ACTIONS(2078), - [sym__word_no_digit] = ACTIONS(2076), - [sym__digits] = ACTIONS(2076), - [aux_sym__newline_token1] = ACTIONS(2076), - [sym__block_quote_start] = ACTIONS(2076), - [sym__indented_chunk_start] = ACTIONS(2076), - [sym_atx_h1_marker] = ACTIONS(2076), - [sym_atx_h2_marker] = ACTIONS(2076), - [sym_atx_h3_marker] = ACTIONS(2076), - [sym_atx_h4_marker] = ACTIONS(2076), - [sym_atx_h5_marker] = ACTIONS(2076), - [sym_atx_h6_marker] = ACTIONS(2076), - [sym__thematic_break] = ACTIONS(2076), - [sym__list_marker_minus] = ACTIONS(2076), - [sym__list_marker_plus] = ACTIONS(2076), - [sym__list_marker_star] = ACTIONS(2076), - [sym__list_marker_parenthesis] = ACTIONS(2076), - [sym__list_marker_dot] = ACTIONS(2076), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2076), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2076), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2076), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2076), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2076), - [sym__fenced_code_block_start_backtick] = ACTIONS(2076), - [sym__fenced_code_block_start_tilde] = ACTIONS(2076), - [sym__blank_line_start] = ACTIONS(2076), - [sym__code_span_start] = ACTIONS(2076), - [sym__emphasis_open_star] = ACTIONS(2076), - [sym__emphasis_open_underscore] = ACTIONS(2076), - }, - [393] = { [anon_sym_BANG] = ACTIONS(2076), [anon_sym_DQUOTE] = ACTIONS(2076), [anon_sym_POUND] = ACTIONS(2076), @@ -66029,7 +65874,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_star] = ACTIONS(2076), [sym__emphasis_open_underscore] = ACTIONS(2076), }, - [394] = { + [392] = { [ts_builtin_sym_end] = ACTIONS(2080), [anon_sym_BANG] = ACTIONS(2080), [anon_sym_DQUOTE] = ACTIONS(2080), @@ -66110,7 +65955,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_star] = ACTIONS(2080), [sym__emphasis_open_underscore] = ACTIONS(2080), }, - [395] = { + [393] = { + [ts_builtin_sym_end] = ACTIONS(2084), [anon_sym_BANG] = ACTIONS(2084), [anon_sym_DQUOTE] = ACTIONS(2084), [anon_sym_POUND] = ACTIONS(2084), @@ -66164,7 +66010,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__word_no_digit] = ACTIONS(2084), [sym__digits] = ACTIONS(2084), [aux_sym__newline_token1] = ACTIONS(2084), - [sym__block_close] = ACTIONS(2084), [sym__block_quote_start] = ACTIONS(2084), [sym__indented_chunk_start] = ACTIONS(2084), [sym_atx_h1_marker] = ACTIONS(2084), @@ -66191,7 +66036,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_star] = ACTIONS(2084), [sym__emphasis_open_underscore] = ACTIONS(2084), }, - [396] = { + [394] = { + [ts_builtin_sym_end] = 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), + [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(2064), + [sym_numeric_character_reference] = ACTIONS(2064), + [sym_uri_autolink] = ACTIONS(2064), + [sym_email_autolink] = 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__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), + }, + [395] = { + [ts_builtin_sym_end] = ACTIONS(2088), [anon_sym_BANG] = ACTIONS(2088), [anon_sym_DQUOTE] = ACTIONS(2088), [anon_sym_POUND] = ACTIONS(2088), @@ -66245,7 +66172,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__word_no_digit] = ACTIONS(2088), [sym__digits] = ACTIONS(2088), [aux_sym__newline_token1] = ACTIONS(2088), - [sym__block_close] = ACTIONS(2088), [sym__block_quote_start] = ACTIONS(2088), [sym__indented_chunk_start] = ACTIONS(2088), [sym_atx_h1_marker] = ACTIONS(2088), @@ -66272,88 +66198,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_star] = ACTIONS(2088), [sym__emphasis_open_underscore] = ACTIONS(2088), }, - [397] = { - [ts_builtin_sym_end] = 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), - [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(2072), - [sym_numeric_character_reference] = ACTIONS(2072), - [sym_uri_autolink] = ACTIONS(2072), - [sym_email_autolink] = 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__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), - }, - [398] = { + [396] = { + [ts_builtin_sym_end] = ACTIONS(2092), [anon_sym_BANG] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(2092), [anon_sym_POUND] = ACTIONS(2092), @@ -66407,7 +66253,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__word_no_digit] = ACTIONS(2092), [sym__digits] = ACTIONS(2092), [aux_sym__newline_token1] = ACTIONS(2092), - [sym__block_close] = ACTIONS(2092), [sym__block_quote_start] = ACTIONS(2092), [sym__indented_chunk_start] = ACTIONS(2092), [sym_atx_h1_marker] = ACTIONS(2092), @@ -66434,7 +66279,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_star] = ACTIONS(2092), [sym__emphasis_open_underscore] = ACTIONS(2092), }, - [399] = { + [397] = { [ts_builtin_sym_end] = ACTIONS(2096), [anon_sym_BANG] = ACTIONS(2096), [anon_sym_DQUOTE] = ACTIONS(2096), @@ -66515,7 +66360,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_star] = ACTIONS(2096), [sym__emphasis_open_underscore] = ACTIONS(2096), }, - [400] = { + [398] = { [ts_builtin_sym_end] = ACTIONS(2100), [anon_sym_BANG] = ACTIONS(2100), [anon_sym_DQUOTE] = ACTIONS(2100), @@ -66596,250 +66441,736 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_star] = ACTIONS(2100), [sym__emphasis_open_underscore] = ACTIONS(2100), }, - [401] = { - [sym__block_interrupt_paragraph] = STATE(1639), - [sym_thematic_break] = STATE(1639), - [sym_atx_heading] = STATE(1639), - [sym_fenced_code_block] = STATE(1639), - [sym__html_block_1] = STATE(1639), - [sym__html_block_2] = STATE(1639), - [sym__html_block_3] = STATE(1639), - [sym__html_block_4] = STATE(1639), - [sym__html_block_5] = STATE(1639), - [sym__html_block_6] = STATE(1639), - [sym__blank_line] = STATE(1639), - [sym_block_quote] = STATE(1639), - [anon_sym_BANG] = ACTIONS(495), - [anon_sym_DQUOTE] = ACTIONS(495), - [anon_sym_POUND] = ACTIONS(495), - [anon_sym_DOLLAR] = ACTIONS(495), - [anon_sym_PERCENT] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(497), - [anon_sym_SQUOTE] = ACTIONS(495), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_RPAREN] = ACTIONS(495), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(495), - [anon_sym_COMMA] = ACTIONS(495), - [anon_sym_DASH] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(495), - [anon_sym_SLASH] = ACTIONS(495), - [anon_sym_COLON] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(495), - [anon_sym_LT] = ACTIONS(497), - [anon_sym_EQ] = ACTIONS(495), - [anon_sym_GT] = ACTIONS(495), - [anon_sym_QMARK] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(495), - [anon_sym_BSLASH] = ACTIONS(497), - [anon_sym_RBRACK] = ACTIONS(495), - [anon_sym_CARET] = ACTIONS(495), - [anon_sym__] = ACTIONS(495), - [anon_sym_BQUOTE] = ACTIONS(495), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_PIPE] = ACTIONS(495), - [anon_sym_RBRACE] = ACTIONS(495), - [anon_sym_TILDE] = ACTIONS(495), + [399] = { + [anon_sym_BANG] = ACTIONS(2080), + [anon_sym_DQUOTE] = ACTIONS(2080), + [anon_sym_POUND] = ACTIONS(2080), + [anon_sym_DOLLAR] = ACTIONS(2080), + [anon_sym_PERCENT] = ACTIONS(2080), + [anon_sym_AMP] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2080), + [anon_sym_LPAREN] = ACTIONS(2080), + [anon_sym_RPAREN] = ACTIONS(2080), + [anon_sym_STAR] = ACTIONS(2080), + [anon_sym_PLUS] = ACTIONS(2080), + [anon_sym_COMMA] = ACTIONS(2080), + [anon_sym_DASH] = ACTIONS(2080), + [anon_sym_DOT] = ACTIONS(2080), + [anon_sym_SLASH] = ACTIONS(2080), + [anon_sym_COLON] = ACTIONS(2080), + [anon_sym_SEMI] = ACTIONS(2080), + [anon_sym_LT] = ACTIONS(2082), + [anon_sym_EQ] = ACTIONS(2080), + [anon_sym_GT] = ACTIONS(2080), + [anon_sym_QMARK] = ACTIONS(2080), + [anon_sym_AT] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2080), + [anon_sym_BSLASH] = ACTIONS(2082), + [anon_sym_RBRACK] = ACTIONS(2080), + [anon_sym_CARET] = ACTIONS(2080), + [anon_sym__] = ACTIONS(2080), + [anon_sym_BQUOTE] = ACTIONS(2080), + [anon_sym_LBRACE] = ACTIONS(2080), + [anon_sym_PIPE] = ACTIONS(2080), + [anon_sym_RBRACE] = ACTIONS(2080), + [anon_sym_TILDE] = ACTIONS(2080), + [aux_sym__html_block_1_token1] = ACTIONS(2080), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2082), + [anon_sym_LT_QMARK] = ACTIONS(2082), + [aux_sym__html_block_4_token1] = ACTIONS(2082), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2080), + [aux_sym__html_block_6_token1] = ACTIONS(2082), + [aux_sym__html_block_6_token2] = ACTIONS(2080), + [sym__open_tag_html_block] = ACTIONS(2080), + [sym__open_tag_html_block_newline] = ACTIONS(2080), + [sym__closing_tag_html_block] = ACTIONS(2080), + [sym__closing_tag_html_block_newline] = ACTIONS(2080), + [sym_backslash_escape] = ACTIONS(2080), + [sym_entity_reference] = ACTIONS(2080), + [sym_numeric_character_reference] = ACTIONS(2080), + [sym_uri_autolink] = ACTIONS(2080), + [sym_email_autolink] = ACTIONS(2080), + [sym__whitespace_ge_2] = ACTIONS(2080), + [aux_sym__whitespace_token1] = ACTIONS(2082), + [sym__word_no_digit] = ACTIONS(2080), + [sym__digits] = ACTIONS(2080), + [aux_sym__newline_token1] = ACTIONS(2080), + [sym__block_close] = ACTIONS(2080), + [sym__block_quote_start] = ACTIONS(2080), + [sym__indented_chunk_start] = ACTIONS(2080), + [sym_atx_h1_marker] = ACTIONS(2080), + [sym_atx_h2_marker] = ACTIONS(2080), + [sym_atx_h3_marker] = ACTIONS(2080), + [sym_atx_h4_marker] = ACTIONS(2080), + [sym_atx_h5_marker] = ACTIONS(2080), + [sym_atx_h6_marker] = ACTIONS(2080), + [sym__thematic_break] = ACTIONS(2080), + [sym__list_marker_minus] = ACTIONS(2080), + [sym__list_marker_plus] = ACTIONS(2080), + [sym__list_marker_star] = ACTIONS(2080), + [sym__list_marker_parenthesis] = ACTIONS(2080), + [sym__list_marker_dot] = ACTIONS(2080), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2080), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2080), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2080), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2080), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2080), + [sym__fenced_code_block_start_backtick] = ACTIONS(2080), + [sym__fenced_code_block_start_tilde] = ACTIONS(2080), + [sym__blank_line_start] = ACTIONS(2080), + [sym__code_span_start] = ACTIONS(2080), + [sym__emphasis_open_star] = ACTIONS(2080), + [sym__emphasis_open_underscore] = ACTIONS(2080), + }, + [400] = { + [anon_sym_BANG] = ACTIONS(2104), + [anon_sym_DQUOTE] = ACTIONS(2104), + [anon_sym_POUND] = ACTIONS(2104), + [anon_sym_DOLLAR] = ACTIONS(2104), + [anon_sym_PERCENT] = ACTIONS(2104), + [anon_sym_AMP] = ACTIONS(2106), + [anon_sym_SQUOTE] = ACTIONS(2104), + [anon_sym_LPAREN] = ACTIONS(2104), + [anon_sym_RPAREN] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(2104), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_COMMA] = ACTIONS(2104), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_DOT] = ACTIONS(2104), + [anon_sym_SLASH] = ACTIONS(2104), + [anon_sym_COLON] = ACTIONS(2104), + [anon_sym_SEMI] = ACTIONS(2104), + [anon_sym_LT] = ACTIONS(2106), + [anon_sym_EQ] = ACTIONS(2104), + [anon_sym_GT] = ACTIONS(2104), + [anon_sym_QMARK] = ACTIONS(2104), + [anon_sym_AT] = ACTIONS(2104), + [anon_sym_LBRACK] = ACTIONS(2104), + [anon_sym_BSLASH] = ACTIONS(2106), + [anon_sym_RBRACK] = ACTIONS(2104), + [anon_sym_CARET] = ACTIONS(2104), + [anon_sym__] = ACTIONS(2104), + [anon_sym_BQUOTE] = ACTIONS(2104), + [anon_sym_LBRACE] = ACTIONS(2104), + [anon_sym_PIPE] = ACTIONS(2104), + [anon_sym_RBRACE] = ACTIONS(2104), + [anon_sym_TILDE] = ACTIONS(2104), [aux_sym__html_block_1_token1] = ACTIONS(2104), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2106), - [anon_sym_LT_QMARK] = ACTIONS(2108), + [anon_sym_LT_QMARK] = ACTIONS(2106), + [aux_sym__html_block_4_token1] = ACTIONS(2106), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2104), + [aux_sym__html_block_6_token1] = ACTIONS(2106), + [aux_sym__html_block_6_token2] = ACTIONS(2104), + [sym__open_tag_html_block] = ACTIONS(2104), + [sym__open_tag_html_block_newline] = ACTIONS(2104), + [sym__closing_tag_html_block] = ACTIONS(2104), + [sym__closing_tag_html_block_newline] = ACTIONS(2104), + [sym_backslash_escape] = ACTIONS(2104), + [sym_entity_reference] = ACTIONS(2104), + [sym_numeric_character_reference] = ACTIONS(2104), + [sym_uri_autolink] = ACTIONS(2104), + [sym_email_autolink] = ACTIONS(2104), + [sym__whitespace_ge_2] = ACTIONS(2104), + [aux_sym__whitespace_token1] = ACTIONS(2106), + [sym__word_no_digit] = ACTIONS(2104), + [sym__digits] = ACTIONS(2104), + [aux_sym__newline_token1] = ACTIONS(2104), + [sym__block_close] = ACTIONS(2104), + [sym__block_quote_start] = ACTIONS(2104), + [sym__indented_chunk_start] = ACTIONS(2104), + [sym_atx_h1_marker] = ACTIONS(2104), + [sym_atx_h2_marker] = ACTIONS(2104), + [sym_atx_h3_marker] = ACTIONS(2104), + [sym_atx_h4_marker] = ACTIONS(2104), + [sym_atx_h5_marker] = ACTIONS(2104), + [sym_atx_h6_marker] = ACTIONS(2104), + [sym__thematic_break] = ACTIONS(2104), + [sym__list_marker_minus] = ACTIONS(2104), + [sym__list_marker_plus] = ACTIONS(2104), + [sym__list_marker_star] = ACTIONS(2104), + [sym__list_marker_parenthesis] = ACTIONS(2104), + [sym__list_marker_dot] = ACTIONS(2104), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2104), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2104), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2104), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2104), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2104), + [sym__fenced_code_block_start_backtick] = ACTIONS(2104), + [sym__fenced_code_block_start_tilde] = ACTIONS(2104), + [sym__blank_line_start] = ACTIONS(2104), + [sym__code_span_start] = ACTIONS(2104), + [sym__emphasis_open_star] = ACTIONS(2104), + [sym__emphasis_open_underscore] = ACTIONS(2104), + }, + [401] = { + [anon_sym_BANG] = ACTIONS(2108), + [anon_sym_DQUOTE] = ACTIONS(2108), + [anon_sym_POUND] = ACTIONS(2108), + [anon_sym_DOLLAR] = ACTIONS(2108), + [anon_sym_PERCENT] = ACTIONS(2108), + [anon_sym_AMP] = ACTIONS(2110), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_LPAREN] = ACTIONS(2108), + [anon_sym_RPAREN] = ACTIONS(2108), + [anon_sym_STAR] = ACTIONS(2108), + [anon_sym_PLUS] = ACTIONS(2108), + [anon_sym_COMMA] = ACTIONS(2108), + [anon_sym_DASH] = ACTIONS(2108), + [anon_sym_DOT] = ACTIONS(2108), + [anon_sym_SLASH] = ACTIONS(2108), + [anon_sym_COLON] = ACTIONS(2108), + [anon_sym_SEMI] = ACTIONS(2108), + [anon_sym_LT] = ACTIONS(2110), + [anon_sym_EQ] = ACTIONS(2108), + [anon_sym_GT] = ACTIONS(2108), + [anon_sym_QMARK] = ACTIONS(2108), + [anon_sym_AT] = ACTIONS(2108), + [anon_sym_LBRACK] = ACTIONS(2108), + [anon_sym_BSLASH] = ACTIONS(2110), + [anon_sym_RBRACK] = ACTIONS(2108), + [anon_sym_CARET] = ACTIONS(2108), + [anon_sym__] = ACTIONS(2108), + [anon_sym_BQUOTE] = ACTIONS(2108), + [anon_sym_LBRACE] = ACTIONS(2108), + [anon_sym_PIPE] = ACTIONS(2108), + [anon_sym_RBRACE] = ACTIONS(2108), + [anon_sym_TILDE] = ACTIONS(2108), + [aux_sym__html_block_1_token1] = ACTIONS(2108), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2110), + [anon_sym_LT_QMARK] = ACTIONS(2110), [aux_sym__html_block_4_token1] = ACTIONS(2110), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2112), - [aux_sym__html_block_6_token1] = ACTIONS(2114), - [aux_sym__html_block_6_token2] = ACTIONS(2116), - [sym_backslash_escape] = ACTIONS(495), - [sym_entity_reference] = ACTIONS(495), - [sym_numeric_character_reference] = ACTIONS(495), - [sym__whitespace_ge_2] = ACTIONS(495), - [aux_sym__whitespace_token1] = ACTIONS(497), - [sym__word_no_digit] = ACTIONS(495), - [sym__digits] = ACTIONS(495), - [aux_sym__newline_token1] = ACTIONS(495), - [sym__block_quote_start] = ACTIONS(2118), - [sym_atx_h1_marker] = ACTIONS(2120), - [sym_atx_h2_marker] = ACTIONS(2120), - [sym_atx_h3_marker] = ACTIONS(2120), - [sym_atx_h4_marker] = ACTIONS(2120), - [sym_atx_h5_marker] = ACTIONS(2120), - [sym_atx_h6_marker] = ACTIONS(2120), - [sym_setext_h1_underline] = ACTIONS(2122), - [sym_setext_h2_underline] = ACTIONS(2122), - [sym__thematic_break] = ACTIONS(2124), - [sym__list_marker_minus] = ACTIONS(2122), - [sym__list_marker_plus] = ACTIONS(2122), - [sym__list_marker_star] = ACTIONS(2122), - [sym__list_marker_parenthesis] = ACTIONS(2122), - [sym__list_marker_dot] = ACTIONS(2122), - [sym__fenced_code_block_start_backtick] = ACTIONS(2126), - [sym__fenced_code_block_start_tilde] = ACTIONS(2128), - [sym__blank_line_start] = ACTIONS(2130), - [sym__split_token] = ACTIONS(447), - [sym__soft_line_break_marker] = ACTIONS(447), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2108), + [aux_sym__html_block_6_token1] = ACTIONS(2110), + [aux_sym__html_block_6_token2] = ACTIONS(2108), + [sym__open_tag_html_block] = ACTIONS(2108), + [sym__open_tag_html_block_newline] = ACTIONS(2108), + [sym__closing_tag_html_block] = ACTIONS(2108), + [sym__closing_tag_html_block_newline] = ACTIONS(2108), + [sym_backslash_escape] = ACTIONS(2108), + [sym_entity_reference] = ACTIONS(2108), + [sym_numeric_character_reference] = ACTIONS(2108), + [sym_uri_autolink] = ACTIONS(2108), + [sym_email_autolink] = ACTIONS(2108), + [sym__whitespace_ge_2] = ACTIONS(2108), + [aux_sym__whitespace_token1] = ACTIONS(2110), + [sym__word_no_digit] = ACTIONS(2108), + [sym__digits] = ACTIONS(2108), + [aux_sym__newline_token1] = ACTIONS(2108), + [sym__block_close] = ACTIONS(2108), + [sym__block_quote_start] = ACTIONS(2108), + [sym__indented_chunk_start] = ACTIONS(2108), + [sym_atx_h1_marker] = ACTIONS(2108), + [sym_atx_h2_marker] = ACTIONS(2108), + [sym_atx_h3_marker] = ACTIONS(2108), + [sym_atx_h4_marker] = ACTIONS(2108), + [sym_atx_h5_marker] = ACTIONS(2108), + [sym_atx_h6_marker] = ACTIONS(2108), + [sym__thematic_break] = ACTIONS(2108), + [sym__list_marker_minus] = ACTIONS(2108), + [sym__list_marker_plus] = ACTIONS(2108), + [sym__list_marker_star] = ACTIONS(2108), + [sym__list_marker_parenthesis] = ACTIONS(2108), + [sym__list_marker_dot] = ACTIONS(2108), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2108), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2108), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2108), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2108), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2108), + [sym__fenced_code_block_start_backtick] = ACTIONS(2108), + [sym__fenced_code_block_start_tilde] = ACTIONS(2108), + [sym__blank_line_start] = ACTIONS(2108), + [sym__code_span_start] = ACTIONS(2108), + [sym__emphasis_open_star] = ACTIONS(2108), + [sym__emphasis_open_underscore] = ACTIONS(2108), + }, + [402] = { + [sym__link_text] = STATE(2124), + [sym__link_text_non_empty] = STATE(712), + [sym_shortcut_link] = STATE(368), + [sym_full_reference_link] = STATE(368), + [sym_collapsed_reference_link] = STATE(368), + [sym_inline_link] = STATE(368), + [sym_image] = STATE(368), + [sym__image_inline_link] = STATE(713), + [sym__image_shortcut_link] = STATE(713), + [sym__image_full_reference_link] = STATE(713), + [sym__image_collapsed_reference_link] = STATE(713), + [sym__image_description] = STATE(2120), + [sym__image_description_non_empty] = STATE(714), + [sym_html_tag] = STATE(368), + [sym__open_tag] = STATE(715), + [sym__closing_tag] = STATE(715), + [sym__html_comment] = STATE(715), + [sym__processing_instruction] = STATE(715), + [sym__declaration] = STATE(715), + [sym__cdata_section] = STATE(715), + [sym_hard_line_break] = STATE(368), + [sym__whitespace] = STATE(368), + [sym__word] = STATE(368), + [sym__text_inline_no_star] = STATE(368), + [sym__inline_element_no_newline_no_star] = STATE(368), + [aux_sym__inline_no_newline_no_star] = STATE(368), + [sym__emphasis_star_no_newline] = STATE(916), + [sym__strong_emphasis_star_no_newline] = STATE(368), + [sym__emphasis_underscore_no_newline] = STATE(846), + [sym__strong_emphasis_underscore_no_newline] = STATE(368), + [sym__code_span_no_newline] = STATE(368), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_DQUOTE] = ACTIONS(599), + [anon_sym_POUND] = ACTIONS(599), + [anon_sym_DOLLAR] = ACTIONS(599), + [anon_sym_PERCENT] = ACTIONS(599), + [anon_sym_AMP] = ACTIONS(601), + [anon_sym_SQUOTE] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_RPAREN] = ACTIONS(599), + [anon_sym_STAR] = ACTIONS(599), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_COMMA] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_DOT] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(599), + [anon_sym_COLON] = ACTIONS(599), + [anon_sym_SEMI] = ACTIONS(599), + [anon_sym_LT] = ACTIONS(603), + [anon_sym_EQ] = ACTIONS(599), + [anon_sym_GT] = ACTIONS(599), + [anon_sym_QMARK] = ACTIONS(599), + [anon_sym_AT] = ACTIONS(599), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_BSLASH] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(599), + [anon_sym_CARET] = ACTIONS(599), + [anon_sym__] = ACTIONS(599), + [anon_sym_BQUOTE] = ACTIONS(599), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_PIPE] = ACTIONS(599), + [anon_sym_RBRACE] = ACTIONS(599), + [anon_sym_TILDE] = ACTIONS(599), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1760), + [anon_sym_LT_QMARK] = ACTIONS(1762), + [aux_sym__html_block_4_token1] = ACTIONS(1764), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1766), + [sym_backslash_escape] = ACTIONS(2112), + [sym_entity_reference] = ACTIONS(2112), + [sym_numeric_character_reference] = ACTIONS(2112), + [sym_uri_autolink] = ACTIONS(2112), + [sym_email_autolink] = ACTIONS(2112), + [sym__whitespace_ge_2] = ACTIONS(1770), + [aux_sym__whitespace_token1] = ACTIONS(621), + [sym__word_no_digit] = ACTIONS(2112), + [sym__digits] = ACTIONS(2112), + [sym__code_span_start] = ACTIONS(1772), + [sym__emphasis_open_star] = ACTIONS(1774), + [sym__emphasis_open_underscore] = ACTIONS(1776), + }, + [403] = { + [anon_sym_BANG] = ACTIONS(2084), + [anon_sym_DQUOTE] = ACTIONS(2084), + [anon_sym_POUND] = ACTIONS(2084), + [anon_sym_DOLLAR] = ACTIONS(2084), + [anon_sym_PERCENT] = ACTIONS(2084), + [anon_sym_AMP] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_LPAREN] = ACTIONS(2084), + [anon_sym_RPAREN] = ACTIONS(2084), + [anon_sym_STAR] = ACTIONS(2084), + [anon_sym_PLUS] = ACTIONS(2084), + [anon_sym_COMMA] = ACTIONS(2084), + [anon_sym_DASH] = ACTIONS(2084), + [anon_sym_DOT] = ACTIONS(2084), + [anon_sym_SLASH] = ACTIONS(2084), + [anon_sym_COLON] = ACTIONS(2084), + [anon_sym_SEMI] = ACTIONS(2084), + [anon_sym_LT] = ACTIONS(2086), + [anon_sym_EQ] = ACTIONS(2084), + [anon_sym_GT] = ACTIONS(2084), + [anon_sym_QMARK] = ACTIONS(2084), + [anon_sym_AT] = ACTIONS(2084), + [anon_sym_LBRACK] = ACTIONS(2084), + [anon_sym_BSLASH] = ACTIONS(2086), + [anon_sym_RBRACK] = ACTIONS(2084), + [anon_sym_CARET] = ACTIONS(2084), + [anon_sym__] = ACTIONS(2084), + [anon_sym_BQUOTE] = ACTIONS(2084), + [anon_sym_LBRACE] = ACTIONS(2084), + [anon_sym_PIPE] = ACTIONS(2084), + [anon_sym_RBRACE] = ACTIONS(2084), + [anon_sym_TILDE] = ACTIONS(2084), + [aux_sym__html_block_1_token1] = ACTIONS(2084), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2086), + [anon_sym_LT_QMARK] = ACTIONS(2086), + [aux_sym__html_block_4_token1] = ACTIONS(2086), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2084), + [aux_sym__html_block_6_token1] = ACTIONS(2086), + [aux_sym__html_block_6_token2] = ACTIONS(2084), + [sym__open_tag_html_block] = ACTIONS(2084), + [sym__open_tag_html_block_newline] = ACTIONS(2084), + [sym__closing_tag_html_block] = ACTIONS(2084), + [sym__closing_tag_html_block_newline] = ACTIONS(2084), + [sym_backslash_escape] = ACTIONS(2084), + [sym_entity_reference] = ACTIONS(2084), + [sym_numeric_character_reference] = ACTIONS(2084), + [sym_uri_autolink] = ACTIONS(2084), + [sym_email_autolink] = ACTIONS(2084), + [sym__whitespace_ge_2] = ACTIONS(2084), + [aux_sym__whitespace_token1] = ACTIONS(2086), + [sym__word_no_digit] = ACTIONS(2084), + [sym__digits] = ACTIONS(2084), + [aux_sym__newline_token1] = ACTIONS(2084), + [sym__block_close] = ACTIONS(2084), + [sym__block_quote_start] = ACTIONS(2084), + [sym__indented_chunk_start] = ACTIONS(2084), + [sym_atx_h1_marker] = ACTIONS(2084), + [sym_atx_h2_marker] = ACTIONS(2084), + [sym_atx_h3_marker] = ACTIONS(2084), + [sym_atx_h4_marker] = ACTIONS(2084), + [sym_atx_h5_marker] = ACTIONS(2084), + [sym_atx_h6_marker] = ACTIONS(2084), + [sym__thematic_break] = ACTIONS(2084), + [sym__list_marker_minus] = ACTIONS(2084), + [sym__list_marker_plus] = ACTIONS(2084), + [sym__list_marker_star] = ACTIONS(2084), + [sym__list_marker_parenthesis] = ACTIONS(2084), + [sym__list_marker_dot] = ACTIONS(2084), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2084), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2084), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2084), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2084), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2084), + [sym__fenced_code_block_start_backtick] = ACTIONS(2084), + [sym__fenced_code_block_start_tilde] = ACTIONS(2084), + [sym__blank_line_start] = ACTIONS(2084), + [sym__code_span_start] = ACTIONS(2084), + [sym__emphasis_open_star] = ACTIONS(2084), + [sym__emphasis_open_underscore] = ACTIONS(2084), }, - [402] = { - [ts_builtin_sym_end] = ACTIONS(2132), - [anon_sym_BANG] = ACTIONS(2132), - [anon_sym_DQUOTE] = ACTIONS(2132), - [anon_sym_POUND] = ACTIONS(2132), - [anon_sym_DOLLAR] = ACTIONS(2132), - [anon_sym_PERCENT] = ACTIONS(2132), - [anon_sym_AMP] = ACTIONS(2134), - [anon_sym_SQUOTE] = ACTIONS(2132), - [anon_sym_LPAREN] = ACTIONS(2132), - [anon_sym_RPAREN] = ACTIONS(2132), - [anon_sym_STAR] = ACTIONS(2132), - [anon_sym_PLUS] = ACTIONS(2132), - [anon_sym_COMMA] = ACTIONS(2132), - [anon_sym_DASH] = ACTIONS(2132), - [anon_sym_DOT] = ACTIONS(2132), - [anon_sym_SLASH] = ACTIONS(2132), - [anon_sym_COLON] = ACTIONS(2132), - [anon_sym_SEMI] = ACTIONS(2132), - [anon_sym_LT] = ACTIONS(2134), - [anon_sym_EQ] = ACTIONS(2132), - [anon_sym_GT] = ACTIONS(2132), - [anon_sym_QMARK] = ACTIONS(2132), - [anon_sym_AT] = ACTIONS(2132), - [anon_sym_LBRACK] = ACTIONS(2132), - [anon_sym_BSLASH] = ACTIONS(2134), - [anon_sym_RBRACK] = ACTIONS(2132), - [anon_sym_CARET] = ACTIONS(2132), - [anon_sym__] = ACTIONS(2132), - [anon_sym_BQUOTE] = ACTIONS(2132), - [anon_sym_LBRACE] = ACTIONS(2132), - [anon_sym_PIPE] = ACTIONS(2132), - [anon_sym_RBRACE] = ACTIONS(2132), - [anon_sym_TILDE] = ACTIONS(2132), - [aux_sym__html_block_1_token1] = ACTIONS(2132), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2134), - [anon_sym_LT_QMARK] = ACTIONS(2134), - [aux_sym__html_block_4_token1] = ACTIONS(2134), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2132), - [aux_sym__html_block_6_token1] = ACTIONS(2134), - [aux_sym__html_block_6_token2] = ACTIONS(2132), - [sym__open_tag_html_block] = ACTIONS(2132), - [sym__open_tag_html_block_newline] = ACTIONS(2132), - [sym__closing_tag_html_block] = ACTIONS(2132), - [sym__closing_tag_html_block_newline] = ACTIONS(2132), - [sym_backslash_escape] = ACTIONS(2132), - [sym_entity_reference] = ACTIONS(2132), - [sym_numeric_character_reference] = ACTIONS(2132), - [sym_uri_autolink] = ACTIONS(2132), - [sym_email_autolink] = ACTIONS(2132), - [sym__whitespace_ge_2] = ACTIONS(2132), - [aux_sym__whitespace_token1] = ACTIONS(2134), - [sym__word_no_digit] = ACTIONS(2132), - [sym__digits] = ACTIONS(2132), - [aux_sym__newline_token1] = ACTIONS(2132), - [sym__block_quote_start] = ACTIONS(2132), - [sym__indented_chunk_start] = ACTIONS(2132), - [sym_atx_h1_marker] = ACTIONS(2132), - [sym_atx_h2_marker] = ACTIONS(2132), - [sym_atx_h3_marker] = ACTIONS(2132), - [sym_atx_h4_marker] = ACTIONS(2132), - [sym_atx_h5_marker] = ACTIONS(2132), - [sym_atx_h6_marker] = ACTIONS(2132), - [sym__thematic_break] = ACTIONS(2132), + [404] = { + [sym__block_interrupt_paragraph] = STATE(1646), + [sym_thematic_break] = STATE(1646), + [sym_atx_heading] = STATE(1646), + [sym_fenced_code_block] = STATE(1646), + [sym__html_block_1] = STATE(1646), + [sym__html_block_2] = STATE(1646), + [sym__html_block_3] = STATE(1646), + [sym__html_block_4] = STATE(1646), + [sym__html_block_5] = STATE(1646), + [sym__html_block_6] = STATE(1646), + [sym__blank_line] = STATE(1646), + [sym_block_quote] = STATE(1646), + [anon_sym_BANG] = ACTIONS(465), + [anon_sym_DQUOTE] = ACTIONS(465), + [anon_sym_POUND] = ACTIONS(465), + [anon_sym_DOLLAR] = ACTIONS(465), + [anon_sym_PERCENT] = ACTIONS(465), + [anon_sym_AMP] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(465), + [anon_sym_STAR] = ACTIONS(465), + [anon_sym_PLUS] = ACTIONS(465), + [anon_sym_COMMA] = ACTIONS(465), + [anon_sym_DASH] = ACTIONS(465), + [anon_sym_DOT] = ACTIONS(465), + [anon_sym_SLASH] = ACTIONS(465), + [anon_sym_COLON] = ACTIONS(465), + [anon_sym_SEMI] = ACTIONS(465), + [anon_sym_LT] = ACTIONS(467), + [anon_sym_EQ] = ACTIONS(465), + [anon_sym_GT] = ACTIONS(465), + [anon_sym_QMARK] = ACTIONS(465), + [anon_sym_AT] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_BSLASH] = ACTIONS(467), + [anon_sym_RBRACK] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(465), + [anon_sym__] = ACTIONS(465), + [anon_sym_BQUOTE] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(465), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_RBRACE] = ACTIONS(465), + [anon_sym_TILDE] = ACTIONS(465), + [aux_sym__html_block_1_token1] = ACTIONS(2114), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2116), + [anon_sym_LT_QMARK] = ACTIONS(2118), + [aux_sym__html_block_4_token1] = ACTIONS(2120), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2122), + [aux_sym__html_block_6_token1] = ACTIONS(2124), + [aux_sym__html_block_6_token2] = ACTIONS(2126), + [sym_backslash_escape] = ACTIONS(465), + [sym_entity_reference] = ACTIONS(465), + [sym_numeric_character_reference] = ACTIONS(465), + [sym__whitespace_ge_2] = ACTIONS(465), + [aux_sym__whitespace_token1] = ACTIONS(467), + [sym__word_no_digit] = ACTIONS(465), + [sym__digits] = ACTIONS(465), + [aux_sym__newline_token1] = ACTIONS(465), + [sym__block_quote_start] = ACTIONS(2128), + [sym_atx_h1_marker] = ACTIONS(2130), + [sym_atx_h2_marker] = ACTIONS(2130), + [sym_atx_h3_marker] = ACTIONS(2130), + [sym_atx_h4_marker] = ACTIONS(2130), + [sym_atx_h5_marker] = ACTIONS(2130), + [sym_atx_h6_marker] = ACTIONS(2130), + [sym_setext_h1_underline] = ACTIONS(2132), + [sym_setext_h2_underline] = ACTIONS(2132), + [sym__thematic_break] = ACTIONS(2134), [sym__list_marker_minus] = ACTIONS(2132), [sym__list_marker_plus] = ACTIONS(2132), [sym__list_marker_star] = ACTIONS(2132), [sym__list_marker_parenthesis] = ACTIONS(2132), [sym__list_marker_dot] = ACTIONS(2132), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2132), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2132), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2132), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2132), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2132), - [sym__fenced_code_block_start_backtick] = ACTIONS(2132), - [sym__fenced_code_block_start_tilde] = ACTIONS(2132), - [sym__blank_line_start] = ACTIONS(2132), - [sym__code_span_start] = ACTIONS(2132), - [sym__emphasis_open_star] = ACTIONS(2132), - [sym__emphasis_open_underscore] = ACTIONS(2132), + [sym__fenced_code_block_start_backtick] = ACTIONS(2136), + [sym__fenced_code_block_start_tilde] = ACTIONS(2138), + [sym__blank_line_start] = ACTIONS(2140), + [sym__split_token] = ACTIONS(447), + [sym__soft_line_break_marker] = ACTIONS(447), }, - [403] = { - [anon_sym_BANG] = ACTIONS(2044), - [anon_sym_DQUOTE] = ACTIONS(2044), - [anon_sym_POUND] = ACTIONS(2044), - [anon_sym_DOLLAR] = ACTIONS(2044), - [anon_sym_PERCENT] = ACTIONS(2044), - [anon_sym_AMP] = ACTIONS(2046), - [anon_sym_SQUOTE] = ACTIONS(2044), - [anon_sym_LPAREN] = ACTIONS(2044), - [anon_sym_RPAREN] = ACTIONS(2044), - [anon_sym_STAR] = ACTIONS(2044), - [anon_sym_PLUS] = ACTIONS(2044), - [anon_sym_COMMA] = ACTIONS(2044), - [anon_sym_DASH] = ACTIONS(2044), - [anon_sym_DOT] = ACTIONS(2044), - [anon_sym_SLASH] = ACTIONS(2044), - [anon_sym_COLON] = ACTIONS(2044), - [anon_sym_SEMI] = ACTIONS(2044), - [anon_sym_LT] = ACTIONS(2046), - [anon_sym_EQ] = ACTIONS(2044), - [anon_sym_GT] = ACTIONS(2044), - [anon_sym_QMARK] = ACTIONS(2044), - [anon_sym_AT] = ACTIONS(2044), - [anon_sym_LBRACK] = ACTIONS(2044), - [anon_sym_BSLASH] = ACTIONS(2046), - [anon_sym_RBRACK] = ACTIONS(2044), - [anon_sym_CARET] = ACTIONS(2044), - [anon_sym__] = ACTIONS(2044), - [anon_sym_BQUOTE] = ACTIONS(2044), - [anon_sym_LBRACE] = ACTIONS(2044), - [anon_sym_PIPE] = ACTIONS(2044), - [anon_sym_RBRACE] = ACTIONS(2044), - [anon_sym_TILDE] = ACTIONS(2044), - [aux_sym__html_block_1_token1] = ACTIONS(2044), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2046), - [anon_sym_LT_QMARK] = ACTIONS(2046), - [aux_sym__html_block_4_token1] = ACTIONS(2046), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2044), - [aux_sym__html_block_6_token1] = ACTIONS(2046), - [aux_sym__html_block_6_token2] = ACTIONS(2044), - [sym__open_tag_html_block] = ACTIONS(2044), - [sym__open_tag_html_block_newline] = ACTIONS(2044), - [sym__closing_tag_html_block] = ACTIONS(2044), - [sym__closing_tag_html_block_newline] = ACTIONS(2044), - [sym_backslash_escape] = ACTIONS(2044), - [sym_entity_reference] = ACTIONS(2044), - [sym_numeric_character_reference] = ACTIONS(2044), - [sym_uri_autolink] = ACTIONS(2044), - [sym_email_autolink] = ACTIONS(2044), - [sym__whitespace_ge_2] = ACTIONS(2044), - [aux_sym__whitespace_token1] = ACTIONS(2046), - [sym__word_no_digit] = ACTIONS(2044), - [sym__digits] = ACTIONS(2044), - [aux_sym__newline_token1] = ACTIONS(2044), - [sym__block_close] = ACTIONS(2044), - [sym__block_quote_start] = ACTIONS(2044), - [sym__indented_chunk_start] = ACTIONS(2044), - [sym_atx_h1_marker] = ACTIONS(2044), - [sym_atx_h2_marker] = ACTIONS(2044), - [sym_atx_h3_marker] = ACTIONS(2044), - [sym_atx_h4_marker] = ACTIONS(2044), - [sym_atx_h5_marker] = ACTIONS(2044), - [sym_atx_h6_marker] = ACTIONS(2044), - [sym__thematic_break] = ACTIONS(2044), - [sym__list_marker_minus] = ACTIONS(2044), - [sym__list_marker_plus] = ACTIONS(2044), - [sym__list_marker_star] = ACTIONS(2044), - [sym__list_marker_parenthesis] = ACTIONS(2044), - [sym__list_marker_dot] = ACTIONS(2044), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2044), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2044), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2044), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2044), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2044), - [sym__fenced_code_block_start_backtick] = ACTIONS(2044), - [sym__fenced_code_block_start_tilde] = ACTIONS(2044), - [sym__blank_line_start] = ACTIONS(2044), - [sym__code_span_start] = ACTIONS(2044), - [sym__emphasis_open_star] = ACTIONS(2044), - [sym__emphasis_open_underscore] = ACTIONS(2044), + [405] = { + [sym__block_interrupt_paragraph] = STATE(1640), + [sym_thematic_break] = STATE(1640), + [sym_atx_heading] = STATE(1640), + [sym_fenced_code_block] = STATE(1640), + [sym__html_block_1] = STATE(1640), + [sym__html_block_2] = STATE(1640), + [sym__html_block_3] = STATE(1640), + [sym__html_block_4] = STATE(1640), + [sym__html_block_5] = STATE(1640), + [sym__html_block_6] = STATE(1640), + [sym__blank_line] = STATE(1640), + [sym_block_quote] = STATE(1640), + [anon_sym_BANG] = ACTIONS(415), + [anon_sym_DQUOTE] = ACTIONS(415), + [anon_sym_POUND] = ACTIONS(415), + [anon_sym_DOLLAR] = ACTIONS(415), + [anon_sym_PERCENT] = ACTIONS(415), + [anon_sym_AMP] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(415), + [anon_sym_RPAREN] = ACTIONS(415), + [anon_sym_STAR] = ACTIONS(415), + [anon_sym_PLUS] = ACTIONS(415), + [anon_sym_COMMA] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(415), + [anon_sym_DOT] = ACTIONS(415), + [anon_sym_SLASH] = ACTIONS(415), + [anon_sym_COLON] = ACTIONS(415), + [anon_sym_SEMI] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(417), + [anon_sym_EQ] = ACTIONS(415), + [anon_sym_GT] = ACTIONS(415), + [anon_sym_QMARK] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(415), + [anon_sym_LBRACK] = ACTIONS(415), + [anon_sym_BSLASH] = ACTIONS(417), + [anon_sym_RBRACK] = ACTIONS(415), + [anon_sym_CARET] = ACTIONS(415), + [anon_sym__] = ACTIONS(415), + [anon_sym_BQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(415), + [anon_sym_PIPE] = ACTIONS(415), + [anon_sym_RBRACE] = ACTIONS(415), + [anon_sym_TILDE] = ACTIONS(415), + [aux_sym__html_block_1_token1] = ACTIONS(2114), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2116), + [anon_sym_LT_QMARK] = ACTIONS(2118), + [aux_sym__html_block_4_token1] = ACTIONS(2120), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2122), + [aux_sym__html_block_6_token1] = ACTIONS(2124), + [aux_sym__html_block_6_token2] = ACTIONS(2126), + [sym_backslash_escape] = ACTIONS(415), + [sym_entity_reference] = ACTIONS(415), + [sym_numeric_character_reference] = ACTIONS(415), + [sym__whitespace_ge_2] = ACTIONS(415), + [aux_sym__whitespace_token1] = ACTIONS(417), + [sym__word_no_digit] = ACTIONS(415), + [sym__digits] = ACTIONS(415), + [aux_sym__newline_token1] = ACTIONS(415), + [sym__block_quote_start] = ACTIONS(2128), + [sym_atx_h1_marker] = ACTIONS(2130), + [sym_atx_h2_marker] = ACTIONS(2130), + [sym_atx_h3_marker] = ACTIONS(2130), + [sym_atx_h4_marker] = ACTIONS(2130), + [sym_atx_h5_marker] = ACTIONS(2130), + [sym_atx_h6_marker] = ACTIONS(2130), + [sym_setext_h1_underline] = ACTIONS(2142), + [sym_setext_h2_underline] = ACTIONS(2142), + [sym__thematic_break] = ACTIONS(2134), + [sym__list_marker_minus] = ACTIONS(2142), + [sym__list_marker_plus] = ACTIONS(2142), + [sym__list_marker_star] = ACTIONS(2142), + [sym__list_marker_parenthesis] = ACTIONS(2142), + [sym__list_marker_dot] = ACTIONS(2142), + [sym__fenced_code_block_start_backtick] = ACTIONS(2136), + [sym__fenced_code_block_start_tilde] = ACTIONS(2138), + [sym__blank_line_start] = ACTIONS(2140), + [sym__split_token] = ACTIONS(447), + [sym__soft_line_break_marker] = ACTIONS(447), }, - [404] = { + [406] = { + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_DQUOTE] = ACTIONS(2144), + [anon_sym_POUND] = ACTIONS(2144), + [anon_sym_DOLLAR] = ACTIONS(2144), + [anon_sym_PERCENT] = ACTIONS(2144), + [anon_sym_AMP] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2144), + [anon_sym_LPAREN] = ACTIONS(2144), + [anon_sym_RPAREN] = ACTIONS(2144), + [anon_sym_STAR] = ACTIONS(2144), + [anon_sym_PLUS] = ACTIONS(2144), + [anon_sym_COMMA] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2144), + [anon_sym_DOT] = ACTIONS(2144), + [anon_sym_SLASH] = ACTIONS(2144), + [anon_sym_COLON] = ACTIONS(2144), + [anon_sym_SEMI] = ACTIONS(2144), + [anon_sym_LT] = ACTIONS(2146), + [anon_sym_EQ] = ACTIONS(2144), + [anon_sym_GT] = ACTIONS(2144), + [anon_sym_QMARK] = ACTIONS(2144), + [anon_sym_AT] = ACTIONS(2144), + [anon_sym_LBRACK] = ACTIONS(2144), + [anon_sym_BSLASH] = ACTIONS(2146), + [anon_sym_RBRACK] = ACTIONS(2144), + [anon_sym_CARET] = ACTIONS(2144), + [anon_sym__] = ACTIONS(2144), + [anon_sym_BQUOTE] = ACTIONS(2144), + [anon_sym_LBRACE] = ACTIONS(2144), + [anon_sym_PIPE] = ACTIONS(2144), + [anon_sym_RBRACE] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2144), + [aux_sym__html_block_1_token1] = ACTIONS(2144), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2146), + [anon_sym_LT_QMARK] = ACTIONS(2146), + [aux_sym__html_block_4_token1] = ACTIONS(2146), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2144), + [aux_sym__html_block_6_token1] = ACTIONS(2146), + [aux_sym__html_block_6_token2] = ACTIONS(2144), + [sym__open_tag_html_block] = ACTIONS(2144), + [sym__open_tag_html_block_newline] = ACTIONS(2144), + [sym__closing_tag_html_block] = ACTIONS(2144), + [sym__closing_tag_html_block_newline] = ACTIONS(2144), + [sym_backslash_escape] = ACTIONS(2144), + [sym_entity_reference] = ACTIONS(2144), + [sym_numeric_character_reference] = ACTIONS(2144), + [sym_uri_autolink] = ACTIONS(2144), + [sym_email_autolink] = ACTIONS(2144), + [sym__whitespace_ge_2] = ACTIONS(2144), + [aux_sym__whitespace_token1] = ACTIONS(2146), + [sym__word_no_digit] = ACTIONS(2144), + [sym__digits] = ACTIONS(2144), + [aux_sym__newline_token1] = ACTIONS(2144), + [sym__block_close] = ACTIONS(2144), + [sym__block_quote_start] = ACTIONS(2144), + [sym__indented_chunk_start] = ACTIONS(2144), + [sym_atx_h1_marker] = ACTIONS(2144), + [sym_atx_h2_marker] = ACTIONS(2144), + [sym_atx_h3_marker] = ACTIONS(2144), + [sym_atx_h4_marker] = ACTIONS(2144), + [sym_atx_h5_marker] = ACTIONS(2144), + [sym_atx_h6_marker] = ACTIONS(2144), + [sym__thematic_break] = ACTIONS(2144), + [sym__list_marker_minus] = ACTIONS(2144), + [sym__list_marker_plus] = ACTIONS(2144), + [sym__list_marker_star] = ACTIONS(2144), + [sym__list_marker_parenthesis] = ACTIONS(2144), + [sym__list_marker_dot] = ACTIONS(2144), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2144), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2144), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2144), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2144), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2144), + [sym__fenced_code_block_start_backtick] = ACTIONS(2144), + [sym__fenced_code_block_start_tilde] = ACTIONS(2144), + [sym__blank_line_start] = ACTIONS(2144), + [sym__code_span_start] = ACTIONS(2144), + [sym__emphasis_open_star] = ACTIONS(2144), + [sym__emphasis_open_underscore] = ACTIONS(2144), + }, + [407] = { + [anon_sym_BANG] = ACTIONS(2148), + [anon_sym_DQUOTE] = ACTIONS(2148), + [anon_sym_POUND] = ACTIONS(2148), + [anon_sym_DOLLAR] = ACTIONS(2148), + [anon_sym_PERCENT] = ACTIONS(2148), + [anon_sym_AMP] = ACTIONS(2150), + [anon_sym_SQUOTE] = ACTIONS(2148), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_RPAREN] = ACTIONS(2148), + [anon_sym_STAR] = ACTIONS(2148), + [anon_sym_PLUS] = ACTIONS(2148), + [anon_sym_COMMA] = ACTIONS(2148), + [anon_sym_DASH] = ACTIONS(2148), + [anon_sym_DOT] = ACTIONS(2148), + [anon_sym_SLASH] = ACTIONS(2148), + [anon_sym_COLON] = ACTIONS(2148), + [anon_sym_SEMI] = ACTIONS(2148), + [anon_sym_LT] = ACTIONS(2150), + [anon_sym_EQ] = ACTIONS(2148), + [anon_sym_GT] = ACTIONS(2148), + [anon_sym_QMARK] = ACTIONS(2148), + [anon_sym_AT] = ACTIONS(2148), + [anon_sym_LBRACK] = ACTIONS(2148), + [anon_sym_BSLASH] = ACTIONS(2150), + [anon_sym_RBRACK] = ACTIONS(2148), + [anon_sym_CARET] = ACTIONS(2148), + [anon_sym__] = ACTIONS(2148), + [anon_sym_BQUOTE] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2148), + [anon_sym_PIPE] = ACTIONS(2148), + [anon_sym_RBRACE] = ACTIONS(2148), + [anon_sym_TILDE] = ACTIONS(2148), + [aux_sym__html_block_1_token1] = ACTIONS(2148), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2150), + [anon_sym_LT_QMARK] = ACTIONS(2150), + [aux_sym__html_block_4_token1] = ACTIONS(2150), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2148), + [aux_sym__html_block_6_token1] = ACTIONS(2150), + [aux_sym__html_block_6_token2] = ACTIONS(2148), + [sym__open_tag_html_block] = ACTIONS(2148), + [sym__open_tag_html_block_newline] = ACTIONS(2148), + [sym__closing_tag_html_block] = ACTIONS(2148), + [sym__closing_tag_html_block_newline] = ACTIONS(2148), + [sym_backslash_escape] = ACTIONS(2148), + [sym_entity_reference] = ACTIONS(2148), + [sym_numeric_character_reference] = ACTIONS(2148), + [sym_uri_autolink] = ACTIONS(2148), + [sym_email_autolink] = ACTIONS(2148), + [sym__whitespace_ge_2] = ACTIONS(2148), + [aux_sym__whitespace_token1] = ACTIONS(2150), + [sym__word_no_digit] = ACTIONS(2148), + [sym__digits] = ACTIONS(2148), + [aux_sym__newline_token1] = ACTIONS(2148), + [sym__block_close] = ACTIONS(2148), + [sym__block_quote_start] = ACTIONS(2148), + [sym__indented_chunk_start] = ACTIONS(2148), + [sym_atx_h1_marker] = ACTIONS(2148), + [sym_atx_h2_marker] = ACTIONS(2148), + [sym_atx_h3_marker] = ACTIONS(2148), + [sym_atx_h4_marker] = ACTIONS(2148), + [sym_atx_h5_marker] = ACTIONS(2148), + [sym_atx_h6_marker] = ACTIONS(2148), + [sym__thematic_break] = ACTIONS(2148), + [sym__list_marker_minus] = ACTIONS(2148), + [sym__list_marker_plus] = ACTIONS(2148), + [sym__list_marker_star] = ACTIONS(2148), + [sym__list_marker_parenthesis] = ACTIONS(2148), + [sym__list_marker_dot] = ACTIONS(2148), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2148), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2148), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2148), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2148), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2148), + [sym__fenced_code_block_start_backtick] = ACTIONS(2148), + [sym__fenced_code_block_start_tilde] = ACTIONS(2148), + [sym__blank_line_start] = ACTIONS(2148), + [sym__code_span_start] = ACTIONS(2148), + [sym__emphasis_open_star] = ACTIONS(2148), + [sym__emphasis_open_underscore] = ACTIONS(2148), + }, + [408] = { [anon_sym_BANG] = ACTIONS(2100), [anon_sym_DQUOTE] = ACTIONS(2100), [anon_sym_POUND] = ACTIONS(2100), @@ -66920,250 +67251,251 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_star] = ACTIONS(2100), [sym__emphasis_open_underscore] = ACTIONS(2100), }, - [405] = { - [anon_sym_BANG] = ACTIONS(2136), - [anon_sym_DQUOTE] = ACTIONS(2136), - [anon_sym_POUND] = ACTIONS(2136), - [anon_sym_DOLLAR] = ACTIONS(2136), - [anon_sym_PERCENT] = ACTIONS(2136), - [anon_sym_AMP] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2136), - [anon_sym_LPAREN] = ACTIONS(2136), - [anon_sym_RPAREN] = ACTIONS(2136), - [anon_sym_STAR] = ACTIONS(2136), - [anon_sym_PLUS] = ACTIONS(2136), - [anon_sym_COMMA] = ACTIONS(2136), - [anon_sym_DASH] = ACTIONS(2136), - [anon_sym_DOT] = ACTIONS(2136), - [anon_sym_SLASH] = ACTIONS(2136), - [anon_sym_COLON] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_EQ] = ACTIONS(2136), - [anon_sym_GT] = ACTIONS(2136), - [anon_sym_QMARK] = ACTIONS(2136), - [anon_sym_AT] = ACTIONS(2136), - [anon_sym_LBRACK] = ACTIONS(2136), - [anon_sym_BSLASH] = ACTIONS(2138), - [anon_sym_RBRACK] = ACTIONS(2136), - [anon_sym_CARET] = ACTIONS(2136), - [anon_sym__] = ACTIONS(2136), - [anon_sym_BQUOTE] = ACTIONS(2136), - [anon_sym_LBRACE] = ACTIONS(2136), - [anon_sym_PIPE] = ACTIONS(2136), - [anon_sym_RBRACE] = ACTIONS(2136), - [anon_sym_TILDE] = ACTIONS(2136), - [aux_sym__html_block_1_token1] = ACTIONS(2136), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2138), - [anon_sym_LT_QMARK] = ACTIONS(2138), - [aux_sym__html_block_4_token1] = ACTIONS(2138), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2136), - [aux_sym__html_block_6_token1] = ACTIONS(2138), - [aux_sym__html_block_6_token2] = ACTIONS(2136), - [sym__open_tag_html_block] = ACTIONS(2136), - [sym__open_tag_html_block_newline] = ACTIONS(2136), - [sym__closing_tag_html_block] = ACTIONS(2136), - [sym__closing_tag_html_block_newline] = ACTIONS(2136), - [sym_backslash_escape] = ACTIONS(2136), - [sym_entity_reference] = ACTIONS(2136), - [sym_numeric_character_reference] = ACTIONS(2136), - [sym_uri_autolink] = ACTIONS(2136), - [sym_email_autolink] = ACTIONS(2136), - [sym__whitespace_ge_2] = ACTIONS(2136), - [aux_sym__whitespace_token1] = ACTIONS(2138), - [sym__word_no_digit] = ACTIONS(2136), - [sym__digits] = ACTIONS(2136), - [aux_sym__newline_token1] = ACTIONS(2136), - [sym__block_close] = ACTIONS(2136), - [sym__block_quote_start] = ACTIONS(2136), - [sym__indented_chunk_start] = ACTIONS(2136), - [sym_atx_h1_marker] = ACTIONS(2136), - [sym_atx_h2_marker] = ACTIONS(2136), - [sym_atx_h3_marker] = ACTIONS(2136), - [sym_atx_h4_marker] = ACTIONS(2136), - [sym_atx_h5_marker] = ACTIONS(2136), - [sym_atx_h6_marker] = ACTIONS(2136), - [sym__thematic_break] = ACTIONS(2136), - [sym__list_marker_minus] = ACTIONS(2136), - [sym__list_marker_plus] = ACTIONS(2136), - [sym__list_marker_star] = ACTIONS(2136), - [sym__list_marker_parenthesis] = ACTIONS(2136), - [sym__list_marker_dot] = ACTIONS(2136), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2136), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2136), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2136), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2136), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2136), - [sym__fenced_code_block_start_backtick] = ACTIONS(2136), - [sym__fenced_code_block_start_tilde] = ACTIONS(2136), - [sym__blank_line_start] = ACTIONS(2136), - [sym__code_span_start] = ACTIONS(2136), - [sym__emphasis_open_star] = ACTIONS(2136), - [sym__emphasis_open_underscore] = ACTIONS(2136), - }, - [406] = { - [anon_sym_BANG] = ACTIONS(2048), - [anon_sym_DQUOTE] = ACTIONS(2048), - [anon_sym_POUND] = ACTIONS(2048), - [anon_sym_DOLLAR] = ACTIONS(2048), - [anon_sym_PERCENT] = ACTIONS(2048), - [anon_sym_AMP] = ACTIONS(2050), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_LPAREN] = ACTIONS(2048), - [anon_sym_RPAREN] = ACTIONS(2048), - [anon_sym_STAR] = ACTIONS(2048), - [anon_sym_PLUS] = ACTIONS(2048), - [anon_sym_COMMA] = ACTIONS(2048), - [anon_sym_DASH] = ACTIONS(2048), - [anon_sym_DOT] = ACTIONS(2048), - [anon_sym_SLASH] = ACTIONS(2048), - [anon_sym_COLON] = ACTIONS(2048), - [anon_sym_SEMI] = ACTIONS(2048), - [anon_sym_LT] = ACTIONS(2050), - [anon_sym_EQ] = ACTIONS(2048), - [anon_sym_GT] = ACTIONS(2048), - [anon_sym_QMARK] = ACTIONS(2048), - [anon_sym_AT] = ACTIONS(2048), - [anon_sym_LBRACK] = ACTIONS(2048), - [anon_sym_BSLASH] = ACTIONS(2050), - [anon_sym_RBRACK] = ACTIONS(2048), - [anon_sym_CARET] = ACTIONS(2048), - [anon_sym__] = ACTIONS(2048), - [anon_sym_BQUOTE] = ACTIONS(2048), - [anon_sym_LBRACE] = ACTIONS(2048), - [anon_sym_PIPE] = ACTIONS(2048), - [anon_sym_RBRACE] = ACTIONS(2048), - [anon_sym_TILDE] = ACTIONS(2048), - [aux_sym__html_block_1_token1] = ACTIONS(2048), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2050), - [anon_sym_LT_QMARK] = ACTIONS(2050), - [aux_sym__html_block_4_token1] = ACTIONS(2050), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2048), - [aux_sym__html_block_6_token1] = ACTIONS(2050), - [aux_sym__html_block_6_token2] = ACTIONS(2048), - [sym__open_tag_html_block] = ACTIONS(2048), - [sym__open_tag_html_block_newline] = ACTIONS(2048), - [sym__closing_tag_html_block] = ACTIONS(2048), - [sym__closing_tag_html_block_newline] = ACTIONS(2048), - [sym_backslash_escape] = ACTIONS(2048), - [sym_entity_reference] = ACTIONS(2048), - [sym_numeric_character_reference] = ACTIONS(2048), - [sym_uri_autolink] = ACTIONS(2048), - [sym_email_autolink] = ACTIONS(2048), - [sym__whitespace_ge_2] = ACTIONS(2048), - [aux_sym__whitespace_token1] = ACTIONS(2050), - [sym__word_no_digit] = ACTIONS(2048), - [sym__digits] = ACTIONS(2048), - [aux_sym__newline_token1] = ACTIONS(2048), - [sym__block_close] = ACTIONS(2048), - [sym__block_quote_start] = ACTIONS(2048), - [sym__indented_chunk_start] = ACTIONS(2048), - [sym_atx_h1_marker] = ACTIONS(2048), - [sym_atx_h2_marker] = ACTIONS(2048), - [sym_atx_h3_marker] = ACTIONS(2048), - [sym_atx_h4_marker] = ACTIONS(2048), - [sym_atx_h5_marker] = ACTIONS(2048), - [sym_atx_h6_marker] = ACTIONS(2048), - [sym__thematic_break] = ACTIONS(2048), - [sym__list_marker_minus] = ACTIONS(2048), - [sym__list_marker_plus] = ACTIONS(2048), - [sym__list_marker_star] = ACTIONS(2048), - [sym__list_marker_parenthesis] = ACTIONS(2048), - [sym__list_marker_dot] = ACTIONS(2048), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2048), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2048), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2048), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2048), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2048), - [sym__fenced_code_block_start_backtick] = ACTIONS(2048), - [sym__fenced_code_block_start_tilde] = ACTIONS(2048), - [sym__blank_line_start] = ACTIONS(2048), - [sym__code_span_start] = ACTIONS(2048), - [sym__emphasis_open_star] = ACTIONS(2048), - [sym__emphasis_open_underscore] = ACTIONS(2048), + [409] = { + [anon_sym_BANG] = ACTIONS(2088), + [anon_sym_DQUOTE] = ACTIONS(2088), + [anon_sym_POUND] = ACTIONS(2088), + [anon_sym_DOLLAR] = ACTIONS(2088), + [anon_sym_PERCENT] = ACTIONS(2088), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2088), + [anon_sym_LPAREN] = ACTIONS(2088), + [anon_sym_RPAREN] = ACTIONS(2088), + [anon_sym_STAR] = ACTIONS(2088), + [anon_sym_PLUS] = ACTIONS(2088), + [anon_sym_COMMA] = ACTIONS(2088), + [anon_sym_DASH] = ACTIONS(2088), + [anon_sym_DOT] = ACTIONS(2088), + [anon_sym_SLASH] = ACTIONS(2088), + [anon_sym_COLON] = ACTIONS(2088), + [anon_sym_SEMI] = ACTIONS(2088), + [anon_sym_LT] = ACTIONS(2090), + [anon_sym_EQ] = ACTIONS(2088), + [anon_sym_GT] = ACTIONS(2088), + [anon_sym_QMARK] = ACTIONS(2088), + [anon_sym_AT] = ACTIONS(2088), + [anon_sym_LBRACK] = ACTIONS(2088), + [anon_sym_BSLASH] = ACTIONS(2090), + [anon_sym_RBRACK] = ACTIONS(2088), + [anon_sym_CARET] = ACTIONS(2088), + [anon_sym__] = ACTIONS(2088), + [anon_sym_BQUOTE] = ACTIONS(2088), + [anon_sym_LBRACE] = ACTIONS(2088), + [anon_sym_PIPE] = ACTIONS(2088), + [anon_sym_RBRACE] = ACTIONS(2088), + [anon_sym_TILDE] = ACTIONS(2088), + [aux_sym__html_block_1_token1] = ACTIONS(2088), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2090), + [anon_sym_LT_QMARK] = ACTIONS(2090), + [aux_sym__html_block_4_token1] = ACTIONS(2090), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2088), + [aux_sym__html_block_6_token1] = ACTIONS(2090), + [aux_sym__html_block_6_token2] = ACTIONS(2088), + [sym__open_tag_html_block] = ACTIONS(2088), + [sym__open_tag_html_block_newline] = ACTIONS(2088), + [sym__closing_tag_html_block] = ACTIONS(2088), + [sym__closing_tag_html_block_newline] = ACTIONS(2088), + [sym_backslash_escape] = ACTIONS(2088), + [sym_entity_reference] = ACTIONS(2088), + [sym_numeric_character_reference] = ACTIONS(2088), + [sym_uri_autolink] = ACTIONS(2088), + [sym_email_autolink] = ACTIONS(2088), + [sym__whitespace_ge_2] = ACTIONS(2088), + [aux_sym__whitespace_token1] = ACTIONS(2090), + [sym__word_no_digit] = ACTIONS(2088), + [sym__digits] = ACTIONS(2088), + [aux_sym__newline_token1] = ACTIONS(2088), + [sym__block_close] = ACTIONS(2088), + [sym__block_quote_start] = ACTIONS(2088), + [sym__indented_chunk_start] = ACTIONS(2088), + [sym_atx_h1_marker] = ACTIONS(2088), + [sym_atx_h2_marker] = ACTIONS(2088), + [sym_atx_h3_marker] = ACTIONS(2088), + [sym_atx_h4_marker] = ACTIONS(2088), + [sym_atx_h5_marker] = ACTIONS(2088), + [sym_atx_h6_marker] = ACTIONS(2088), + [sym__thematic_break] = ACTIONS(2088), + [sym__list_marker_minus] = ACTIONS(2088), + [sym__list_marker_plus] = ACTIONS(2088), + [sym__list_marker_star] = ACTIONS(2088), + [sym__list_marker_parenthesis] = ACTIONS(2088), + [sym__list_marker_dot] = ACTIONS(2088), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2088), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2088), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2088), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2088), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2088), + [sym__fenced_code_block_start_backtick] = ACTIONS(2088), + [sym__fenced_code_block_start_tilde] = ACTIONS(2088), + [sym__blank_line_start] = ACTIONS(2088), + [sym__code_span_start] = ACTIONS(2088), + [sym__emphasis_open_star] = ACTIONS(2088), + [sym__emphasis_open_underscore] = ACTIONS(2088), }, - [407] = { - [ts_builtin_sym_end] = ACTIONS(2140), - [anon_sym_BANG] = ACTIONS(2140), - [anon_sym_DQUOTE] = ACTIONS(2140), - [anon_sym_POUND] = ACTIONS(2140), - [anon_sym_DOLLAR] = ACTIONS(2140), - [anon_sym_PERCENT] = ACTIONS(2140), - [anon_sym_AMP] = ACTIONS(2142), - [anon_sym_SQUOTE] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_RPAREN] = ACTIONS(2140), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_COMMA] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_DOT] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_COLON] = ACTIONS(2140), - [anon_sym_SEMI] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2142), - [anon_sym_EQ] = ACTIONS(2140), - [anon_sym_GT] = ACTIONS(2140), - [anon_sym_QMARK] = ACTIONS(2140), - [anon_sym_AT] = ACTIONS(2140), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_BSLASH] = ACTIONS(2142), - [anon_sym_RBRACK] = ACTIONS(2140), - [anon_sym_CARET] = ACTIONS(2140), - [anon_sym__] = ACTIONS(2140), - [anon_sym_BQUOTE] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [anon_sym_PIPE] = ACTIONS(2140), - [anon_sym_RBRACE] = ACTIONS(2140), - [anon_sym_TILDE] = ACTIONS(2140), - [aux_sym__html_block_1_token1] = ACTIONS(2140), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2142), - [anon_sym_LT_QMARK] = ACTIONS(2142), - [aux_sym__html_block_4_token1] = ACTIONS(2142), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2140), - [aux_sym__html_block_6_token1] = ACTIONS(2142), - [aux_sym__html_block_6_token2] = ACTIONS(2140), - [sym__open_tag_html_block] = ACTIONS(2140), - [sym__open_tag_html_block_newline] = ACTIONS(2140), - [sym__closing_tag_html_block] = ACTIONS(2140), - [sym__closing_tag_html_block_newline] = ACTIONS(2140), - [sym_backslash_escape] = ACTIONS(2140), - [sym_entity_reference] = ACTIONS(2140), - [sym_numeric_character_reference] = ACTIONS(2140), - [sym_uri_autolink] = ACTIONS(2140), - [sym_email_autolink] = ACTIONS(2140), - [sym__whitespace_ge_2] = ACTIONS(2140), - [aux_sym__whitespace_token1] = ACTIONS(2142), - [sym__word_no_digit] = ACTIONS(2140), - [sym__digits] = ACTIONS(2140), - [aux_sym__newline_token1] = ACTIONS(2140), - [sym__block_quote_start] = ACTIONS(2140), - [sym__indented_chunk_start] = ACTIONS(2140), - [sym_atx_h1_marker] = ACTIONS(2140), - [sym_atx_h2_marker] = ACTIONS(2140), - [sym_atx_h3_marker] = ACTIONS(2140), - [sym_atx_h4_marker] = ACTIONS(2140), - [sym_atx_h5_marker] = ACTIONS(2140), - [sym_atx_h6_marker] = ACTIONS(2140), - [sym__thematic_break] = ACTIONS(2140), - [sym__list_marker_minus] = ACTIONS(2140), - [sym__list_marker_plus] = ACTIONS(2140), - [sym__list_marker_star] = ACTIONS(2140), - [sym__list_marker_parenthesis] = ACTIONS(2140), - [sym__list_marker_dot] = ACTIONS(2140), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2140), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2140), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2140), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2140), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2140), - [sym__fenced_code_block_start_backtick] = ACTIONS(2140), - [sym__fenced_code_block_start_tilde] = ACTIONS(2140), - [sym__blank_line_start] = ACTIONS(2140), - [sym__code_span_start] = ACTIONS(2140), - [sym__emphasis_open_star] = ACTIONS(2140), - [sym__emphasis_open_underscore] = ACTIONS(2140), + [410] = { + [sym__link_text] = STATE(2126), + [sym__link_text_non_empty] = STATE(716), + [sym_shortcut_link] = STATE(362), + [sym_full_reference_link] = STATE(362), + [sym_collapsed_reference_link] = STATE(362), + [sym_inline_link] = STATE(362), + [sym_image] = STATE(362), + [sym__image_inline_link] = STATE(663), + [sym__image_shortcut_link] = STATE(663), + [sym__image_full_reference_link] = STATE(663), + [sym__image_collapsed_reference_link] = STATE(663), + [sym__image_description] = STATE(2134), + [sym__image_description_non_empty] = STATE(705), + [sym_html_tag] = STATE(362), + [sym__open_tag] = STATE(702), + [sym__closing_tag] = STATE(702), + [sym__html_comment] = STATE(702), + [sym__processing_instruction] = STATE(702), + [sym__declaration] = STATE(702), + [sym__cdata_section] = STATE(702), + [sym_hard_line_break] = STATE(362), + [sym__whitespace] = STATE(362), + [sym__word] = STATE(362), + [sym__text_inline_no_underscore] = STATE(362), + [sym__inline_element_no_newline_no_underscore] = STATE(362), + [aux_sym__inline_no_newline_no_underscore] = STATE(362), + [sym__emphasis_star_no_newline] = STATE(848), + [sym__strong_emphasis_star_no_newline] = STATE(362), + [sym__emphasis_underscore_no_newline] = STATE(866), + [sym__strong_emphasis_underscore_no_newline] = STATE(362), + [sym__code_span_no_newline] = STATE(362), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(561), + [anon_sym_POUND] = ACTIONS(561), + [anon_sym_DOLLAR] = ACTIONS(561), + [anon_sym_PERCENT] = ACTIONS(561), + [anon_sym_AMP] = ACTIONS(563), + [anon_sym_SQUOTE] = ACTIONS(561), + [anon_sym_LPAREN] = ACTIONS(561), + [anon_sym_RPAREN] = ACTIONS(561), + [anon_sym_STAR] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_COMMA] = ACTIONS(561), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_DOT] = ACTIONS(561), + [anon_sym_SLASH] = ACTIONS(561), + [anon_sym_COLON] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(561), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_EQ] = ACTIONS(561), + [anon_sym_GT] = ACTIONS(561), + [anon_sym_QMARK] = ACTIONS(561), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_BSLASH] = ACTIONS(1678), + [anon_sym_RBRACK] = ACTIONS(561), + [anon_sym_CARET] = ACTIONS(561), + [anon_sym__] = ACTIONS(561), + [anon_sym_BQUOTE] = ACTIONS(561), + [anon_sym_LBRACE] = ACTIONS(561), + [anon_sym_PIPE] = ACTIONS(561), + [anon_sym_RBRACE] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1680), + [anon_sym_LT_QMARK] = ACTIONS(1682), + [aux_sym__html_block_4_token1] = ACTIONS(1684), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1686), + [sym_backslash_escape] = ACTIONS(2152), + [sym_entity_reference] = ACTIONS(2152), + [sym_numeric_character_reference] = ACTIONS(2152), + [sym_uri_autolink] = ACTIONS(2152), + [sym_email_autolink] = ACTIONS(2152), + [sym__whitespace_ge_2] = ACTIONS(1690), + [aux_sym__whitespace_token1] = ACTIONS(583), + [sym__word_no_digit] = ACTIONS(2152), + [sym__digits] = ACTIONS(2152), + [sym__code_span_start] = ACTIONS(1692), + [sym__emphasis_open_star] = ACTIONS(1694), + [sym__emphasis_open_underscore] = ACTIONS(1696), }, - [408] = { + [411] = { + [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), + [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(2068), + [sym_numeric_character_reference] = ACTIONS(2068), + [sym_uri_autolink] = ACTIONS(2068), + [sym_email_autolink] = 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__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), + }, + [412] = { + [ts_builtin_sym_end] = ACTIONS(2144), [anon_sym_BANG] = ACTIONS(2144), [anon_sym_DQUOTE] = ACTIONS(2144), [anon_sym_POUND] = ACTIONS(2144), @@ -67217,7 +67549,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__word_no_digit] = ACTIONS(2144), [sym__digits] = ACTIONS(2144), [aux_sym__newline_token1] = ACTIONS(2144), - [sym__block_close] = ACTIONS(2144), [sym__block_quote_start] = ACTIONS(2144), [sym__indented_chunk_start] = ACTIONS(2144), [sym_atx_h1_marker] = ACTIONS(2144), @@ -67244,88 +67575,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_star] = ACTIONS(2144), [sym__emphasis_open_underscore] = ACTIONS(2144), }, - [409] = { - [anon_sym_BANG] = ACTIONS(2066), - [anon_sym_DQUOTE] = ACTIONS(2066), - [anon_sym_POUND] = ACTIONS(2066), - [anon_sym_DOLLAR] = ACTIONS(2066), - [anon_sym_PERCENT] = ACTIONS(2066), - [anon_sym_AMP] = ACTIONS(2068), - [anon_sym_SQUOTE] = ACTIONS(2066), - [anon_sym_LPAREN] = ACTIONS(2066), - [anon_sym_RPAREN] = ACTIONS(2066), - [anon_sym_STAR] = ACTIONS(2066), - [anon_sym_PLUS] = ACTIONS(2066), - [anon_sym_COMMA] = ACTIONS(2066), - [anon_sym_DASH] = ACTIONS(2066), - [anon_sym_DOT] = ACTIONS(2066), - [anon_sym_SLASH] = ACTIONS(2066), - [anon_sym_COLON] = ACTIONS(2066), - [anon_sym_SEMI] = ACTIONS(2066), - [anon_sym_LT] = ACTIONS(2068), - [anon_sym_EQ] = ACTIONS(2066), - [anon_sym_GT] = ACTIONS(2066), - [anon_sym_QMARK] = ACTIONS(2066), - [anon_sym_AT] = ACTIONS(2066), - [anon_sym_LBRACK] = ACTIONS(2066), - [anon_sym_BSLASH] = ACTIONS(2068), - [anon_sym_RBRACK] = ACTIONS(2066), - [anon_sym_CARET] = ACTIONS(2066), - [anon_sym__] = ACTIONS(2066), - [anon_sym_BQUOTE] = ACTIONS(2066), - [anon_sym_LBRACE] = ACTIONS(2066), - [anon_sym_PIPE] = ACTIONS(2066), - [anon_sym_RBRACE] = ACTIONS(2066), - [anon_sym_TILDE] = ACTIONS(2066), - [aux_sym__html_block_1_token1] = ACTIONS(2066), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2068), - [anon_sym_LT_QMARK] = ACTIONS(2068), - [aux_sym__html_block_4_token1] = ACTIONS(2068), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2066), - [aux_sym__html_block_6_token1] = ACTIONS(2068), - [aux_sym__html_block_6_token2] = ACTIONS(2066), - [sym__open_tag_html_block] = ACTIONS(2066), - [sym__open_tag_html_block_newline] = ACTIONS(2066), - [sym__closing_tag_html_block] = ACTIONS(2066), - [sym__closing_tag_html_block_newline] = ACTIONS(2066), - [sym_backslash_escape] = ACTIONS(2066), - [sym_entity_reference] = ACTIONS(2066), - [sym_numeric_character_reference] = ACTIONS(2066), - [sym_uri_autolink] = ACTIONS(2066), - [sym_email_autolink] = ACTIONS(2066), - [sym__whitespace_ge_2] = ACTIONS(2066), - [aux_sym__whitespace_token1] = ACTIONS(2068), - [sym__word_no_digit] = ACTIONS(2066), - [sym__digits] = ACTIONS(2066), - [aux_sym__newline_token1] = ACTIONS(2066), - [sym__block_close] = ACTIONS(2066), - [sym__block_quote_start] = ACTIONS(2066), - [sym__indented_chunk_start] = ACTIONS(2066), - [sym_atx_h1_marker] = ACTIONS(2066), - [sym_atx_h2_marker] = ACTIONS(2066), - [sym_atx_h3_marker] = ACTIONS(2066), - [sym_atx_h4_marker] = ACTIONS(2066), - [sym_atx_h5_marker] = ACTIONS(2066), - [sym_atx_h6_marker] = ACTIONS(2066), - [sym__thematic_break] = ACTIONS(2066), - [sym__list_marker_minus] = ACTIONS(2066), - [sym__list_marker_plus] = ACTIONS(2066), - [sym__list_marker_star] = ACTIONS(2066), - [sym__list_marker_parenthesis] = ACTIONS(2066), - [sym__list_marker_dot] = ACTIONS(2066), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2066), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2066), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2066), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2066), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2066), - [sym__fenced_code_block_start_backtick] = ACTIONS(2066), - [sym__fenced_code_block_start_tilde] = ACTIONS(2066), - [sym__blank_line_start] = ACTIONS(2066), - [sym__code_span_start] = ACTIONS(2066), - [sym__emphasis_open_star] = ACTIONS(2066), - [sym__emphasis_open_underscore] = ACTIONS(2066), - }, - [410] = { + [413] = { [anon_sym_BANG] = ACTIONS(2096), [anon_sym_DQUOTE] = ACTIONS(2096), [anon_sym_POUND] = ACTIONS(2096), @@ -67406,251 +67656,574 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_star] = ACTIONS(2096), [sym__emphasis_open_underscore] = ACTIONS(2096), }, - [411] = { - [anon_sym_BANG] = ACTIONS(2080), - [anon_sym_DQUOTE] = ACTIONS(2080), - [anon_sym_POUND] = ACTIONS(2080), - [anon_sym_DOLLAR] = ACTIONS(2080), - [anon_sym_PERCENT] = ACTIONS(2080), - [anon_sym_AMP] = ACTIONS(2082), - [anon_sym_SQUOTE] = ACTIONS(2080), - [anon_sym_LPAREN] = ACTIONS(2080), - [anon_sym_RPAREN] = ACTIONS(2080), - [anon_sym_STAR] = ACTIONS(2080), - [anon_sym_PLUS] = ACTIONS(2080), - [anon_sym_COMMA] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2080), - [anon_sym_DOT] = ACTIONS(2080), - [anon_sym_SLASH] = ACTIONS(2080), - [anon_sym_COLON] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2080), - [anon_sym_LT] = ACTIONS(2082), - [anon_sym_EQ] = ACTIONS(2080), - [anon_sym_GT] = ACTIONS(2080), - [anon_sym_QMARK] = ACTIONS(2080), - [anon_sym_AT] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2080), - [anon_sym_BSLASH] = ACTIONS(2082), - [anon_sym_RBRACK] = ACTIONS(2080), - [anon_sym_CARET] = ACTIONS(2080), - [anon_sym__] = ACTIONS(2080), - [anon_sym_BQUOTE] = ACTIONS(2080), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_PIPE] = ACTIONS(2080), - [anon_sym_RBRACE] = ACTIONS(2080), - [anon_sym_TILDE] = ACTIONS(2080), - [aux_sym__html_block_1_token1] = ACTIONS(2080), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2082), - [anon_sym_LT_QMARK] = ACTIONS(2082), - [aux_sym__html_block_4_token1] = ACTIONS(2082), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2080), - [aux_sym__html_block_6_token1] = ACTIONS(2082), - [aux_sym__html_block_6_token2] = ACTIONS(2080), - [sym__open_tag_html_block] = ACTIONS(2080), - [sym__open_tag_html_block_newline] = ACTIONS(2080), - [sym__closing_tag_html_block] = ACTIONS(2080), - [sym__closing_tag_html_block_newline] = ACTIONS(2080), - [sym_backslash_escape] = ACTIONS(2080), - [sym_entity_reference] = ACTIONS(2080), - [sym_numeric_character_reference] = ACTIONS(2080), - [sym_uri_autolink] = ACTIONS(2080), - [sym_email_autolink] = ACTIONS(2080), - [sym__whitespace_ge_2] = ACTIONS(2080), - [aux_sym__whitespace_token1] = ACTIONS(2082), - [sym__word_no_digit] = ACTIONS(2080), - [sym__digits] = ACTIONS(2080), - [aux_sym__newline_token1] = ACTIONS(2080), - [sym__block_close] = ACTIONS(2080), - [sym__block_quote_start] = ACTIONS(2080), - [sym__indented_chunk_start] = ACTIONS(2080), - [sym_atx_h1_marker] = ACTIONS(2080), - [sym_atx_h2_marker] = ACTIONS(2080), - [sym_atx_h3_marker] = ACTIONS(2080), - [sym_atx_h4_marker] = ACTIONS(2080), - [sym_atx_h5_marker] = ACTIONS(2080), - [sym_atx_h6_marker] = ACTIONS(2080), - [sym__thematic_break] = ACTIONS(2080), - [sym__list_marker_minus] = ACTIONS(2080), - [sym__list_marker_plus] = ACTIONS(2080), - [sym__list_marker_star] = ACTIONS(2080), - [sym__list_marker_parenthesis] = ACTIONS(2080), - [sym__list_marker_dot] = ACTIONS(2080), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2080), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2080), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2080), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2080), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2080), - [sym__fenced_code_block_start_backtick] = ACTIONS(2080), - [sym__fenced_code_block_start_tilde] = ACTIONS(2080), - [sym__blank_line_start] = ACTIONS(2080), - [sym__code_span_start] = ACTIONS(2080), - [sym__emphasis_open_star] = ACTIONS(2080), - [sym__emphasis_open_underscore] = ACTIONS(2080), + [414] = { + [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), + [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(2060), + [sym_numeric_character_reference] = ACTIONS(2060), + [sym_uri_autolink] = ACTIONS(2060), + [sym_email_autolink] = 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__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), }, - [412] = { - [anon_sym_BANG] = ACTIONS(2148), - [anon_sym_DQUOTE] = ACTIONS(2148), - [anon_sym_POUND] = ACTIONS(2148), - [anon_sym_DOLLAR] = ACTIONS(2148), - [anon_sym_PERCENT] = ACTIONS(2148), - [anon_sym_AMP] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2148), - [anon_sym_LPAREN] = ACTIONS(2148), - [anon_sym_RPAREN] = ACTIONS(2148), - [anon_sym_STAR] = ACTIONS(2148), - [anon_sym_PLUS] = ACTIONS(2148), - [anon_sym_COMMA] = ACTIONS(2148), - [anon_sym_DASH] = ACTIONS(2148), - [anon_sym_DOT] = ACTIONS(2148), - [anon_sym_SLASH] = ACTIONS(2148), - [anon_sym_COLON] = ACTIONS(2148), - [anon_sym_SEMI] = ACTIONS(2148), - [anon_sym_LT] = ACTIONS(2150), - [anon_sym_EQ] = ACTIONS(2148), - [anon_sym_GT] = ACTIONS(2148), - [anon_sym_QMARK] = ACTIONS(2148), - [anon_sym_AT] = ACTIONS(2148), - [anon_sym_LBRACK] = ACTIONS(2148), - [anon_sym_BSLASH] = ACTIONS(2150), - [anon_sym_RBRACK] = ACTIONS(2148), - [anon_sym_CARET] = ACTIONS(2148), - [anon_sym__] = ACTIONS(2148), - [anon_sym_BQUOTE] = ACTIONS(2148), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_PIPE] = ACTIONS(2148), - [anon_sym_RBRACE] = ACTIONS(2148), - [anon_sym_TILDE] = ACTIONS(2148), - [aux_sym__html_block_1_token1] = ACTIONS(2148), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2150), - [anon_sym_LT_QMARK] = ACTIONS(2150), - [aux_sym__html_block_4_token1] = ACTIONS(2150), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2148), - [aux_sym__html_block_6_token1] = ACTIONS(2150), - [aux_sym__html_block_6_token2] = ACTIONS(2148), - [sym__open_tag_html_block] = ACTIONS(2148), - [sym__open_tag_html_block_newline] = ACTIONS(2148), - [sym__closing_tag_html_block] = ACTIONS(2148), - [sym__closing_tag_html_block_newline] = ACTIONS(2148), - [sym_backslash_escape] = ACTIONS(2148), - [sym_entity_reference] = ACTIONS(2148), - [sym_numeric_character_reference] = ACTIONS(2148), - [sym_uri_autolink] = ACTIONS(2148), - [sym_email_autolink] = ACTIONS(2148), - [sym__whitespace_ge_2] = ACTIONS(2148), - [aux_sym__whitespace_token1] = ACTIONS(2150), - [sym__word_no_digit] = ACTIONS(2148), - [sym__digits] = ACTIONS(2148), - [aux_sym__newline_token1] = ACTIONS(2148), - [sym__block_close] = ACTIONS(2148), - [sym__block_quote_start] = ACTIONS(2148), - [sym__indented_chunk_start] = ACTIONS(2148), - [sym_atx_h1_marker] = ACTIONS(2148), - [sym_atx_h2_marker] = ACTIONS(2148), - [sym_atx_h3_marker] = ACTIONS(2148), - [sym_atx_h4_marker] = ACTIONS(2148), - [sym_atx_h5_marker] = ACTIONS(2148), - [sym_atx_h6_marker] = ACTIONS(2148), - [sym__thematic_break] = ACTIONS(2148), - [sym__list_marker_minus] = ACTIONS(2148), - [sym__list_marker_plus] = ACTIONS(2148), - [sym__list_marker_star] = ACTIONS(2148), - [sym__list_marker_parenthesis] = ACTIONS(2148), - [sym__list_marker_dot] = ACTIONS(2148), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2148), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2148), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2148), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2148), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2148), - [sym__fenced_code_block_start_backtick] = ACTIONS(2148), - [sym__fenced_code_block_start_tilde] = ACTIONS(2148), - [sym__blank_line_start] = ACTIONS(2148), - [sym__code_span_start] = ACTIONS(2148), - [sym__emphasis_open_star] = ACTIONS(2148), - [sym__emphasis_open_underscore] = ACTIONS(2148), + [415] = { + [ts_builtin_sym_end] = ACTIONS(2104), + [anon_sym_BANG] = ACTIONS(2104), + [anon_sym_DQUOTE] = ACTIONS(2104), + [anon_sym_POUND] = ACTIONS(2104), + [anon_sym_DOLLAR] = ACTIONS(2104), + [anon_sym_PERCENT] = ACTIONS(2104), + [anon_sym_AMP] = ACTIONS(2106), + [anon_sym_SQUOTE] = ACTIONS(2104), + [anon_sym_LPAREN] = ACTIONS(2104), + [anon_sym_RPAREN] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(2104), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_COMMA] = ACTIONS(2104), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_DOT] = ACTIONS(2104), + [anon_sym_SLASH] = ACTIONS(2104), + [anon_sym_COLON] = ACTIONS(2104), + [anon_sym_SEMI] = ACTIONS(2104), + [anon_sym_LT] = ACTIONS(2106), + [anon_sym_EQ] = ACTIONS(2104), + [anon_sym_GT] = ACTIONS(2104), + [anon_sym_QMARK] = ACTIONS(2104), + [anon_sym_AT] = ACTIONS(2104), + [anon_sym_LBRACK] = ACTIONS(2104), + [anon_sym_BSLASH] = ACTIONS(2106), + [anon_sym_RBRACK] = ACTIONS(2104), + [anon_sym_CARET] = ACTIONS(2104), + [anon_sym__] = ACTIONS(2104), + [anon_sym_BQUOTE] = ACTIONS(2104), + [anon_sym_LBRACE] = ACTIONS(2104), + [anon_sym_PIPE] = ACTIONS(2104), + [anon_sym_RBRACE] = ACTIONS(2104), + [anon_sym_TILDE] = ACTIONS(2104), + [aux_sym__html_block_1_token1] = ACTIONS(2104), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2106), + [anon_sym_LT_QMARK] = ACTIONS(2106), + [aux_sym__html_block_4_token1] = ACTIONS(2106), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2104), + [aux_sym__html_block_6_token1] = ACTIONS(2106), + [aux_sym__html_block_6_token2] = ACTIONS(2104), + [sym__open_tag_html_block] = ACTIONS(2104), + [sym__open_tag_html_block_newline] = ACTIONS(2104), + [sym__closing_tag_html_block] = ACTIONS(2104), + [sym__closing_tag_html_block_newline] = ACTIONS(2104), + [sym_backslash_escape] = ACTIONS(2104), + [sym_entity_reference] = ACTIONS(2104), + [sym_numeric_character_reference] = ACTIONS(2104), + [sym_uri_autolink] = ACTIONS(2104), + [sym_email_autolink] = ACTIONS(2104), + [sym__whitespace_ge_2] = ACTIONS(2104), + [aux_sym__whitespace_token1] = ACTIONS(2106), + [sym__word_no_digit] = ACTIONS(2104), + [sym__digits] = ACTIONS(2104), + [aux_sym__newline_token1] = ACTIONS(2104), + [sym__block_quote_start] = ACTIONS(2104), + [sym__indented_chunk_start] = ACTIONS(2104), + [sym_atx_h1_marker] = ACTIONS(2104), + [sym_atx_h2_marker] = ACTIONS(2104), + [sym_atx_h3_marker] = ACTIONS(2104), + [sym_atx_h4_marker] = ACTIONS(2104), + [sym_atx_h5_marker] = ACTIONS(2104), + [sym_atx_h6_marker] = ACTIONS(2104), + [sym__thematic_break] = ACTIONS(2104), + [sym__list_marker_minus] = ACTIONS(2104), + [sym__list_marker_plus] = ACTIONS(2104), + [sym__list_marker_star] = ACTIONS(2104), + [sym__list_marker_parenthesis] = ACTIONS(2104), + [sym__list_marker_dot] = ACTIONS(2104), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2104), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2104), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2104), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2104), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2104), + [sym__fenced_code_block_start_backtick] = ACTIONS(2104), + [sym__fenced_code_block_start_tilde] = ACTIONS(2104), + [sym__blank_line_start] = ACTIONS(2104), + [sym__code_span_start] = ACTIONS(2104), + [sym__emphasis_open_star] = ACTIONS(2104), + [sym__emphasis_open_underscore] = ACTIONS(2104), + }, + [416] = { + [ts_builtin_sym_end] = ACTIONS(2076), + [anon_sym_BANG] = ACTIONS(2076), + [anon_sym_DQUOTE] = ACTIONS(2076), + [anon_sym_POUND] = ACTIONS(2076), + [anon_sym_DOLLAR] = ACTIONS(2076), + [anon_sym_PERCENT] = ACTIONS(2076), + [anon_sym_AMP] = ACTIONS(2078), + [anon_sym_SQUOTE] = ACTIONS(2076), + [anon_sym_LPAREN] = ACTIONS(2076), + [anon_sym_RPAREN] = ACTIONS(2076), + [anon_sym_STAR] = ACTIONS(2076), + [anon_sym_PLUS] = ACTIONS(2076), + [anon_sym_COMMA] = ACTIONS(2076), + [anon_sym_DASH] = ACTIONS(2076), + [anon_sym_DOT] = ACTIONS(2076), + [anon_sym_SLASH] = ACTIONS(2076), + [anon_sym_COLON] = ACTIONS(2076), + [anon_sym_SEMI] = ACTIONS(2076), + [anon_sym_LT] = ACTIONS(2078), + [anon_sym_EQ] = ACTIONS(2076), + [anon_sym_GT] = ACTIONS(2076), + [anon_sym_QMARK] = ACTIONS(2076), + [anon_sym_AT] = ACTIONS(2076), + [anon_sym_LBRACK] = ACTIONS(2076), + [anon_sym_BSLASH] = ACTIONS(2078), + [anon_sym_RBRACK] = ACTIONS(2076), + [anon_sym_CARET] = ACTIONS(2076), + [anon_sym__] = ACTIONS(2076), + [anon_sym_BQUOTE] = ACTIONS(2076), + [anon_sym_LBRACE] = ACTIONS(2076), + [anon_sym_PIPE] = ACTIONS(2076), + [anon_sym_RBRACE] = ACTIONS(2076), + [anon_sym_TILDE] = ACTIONS(2076), + [aux_sym__html_block_1_token1] = ACTIONS(2076), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2078), + [anon_sym_LT_QMARK] = ACTIONS(2078), + [aux_sym__html_block_4_token1] = ACTIONS(2078), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2076), + [aux_sym__html_block_6_token1] = ACTIONS(2078), + [aux_sym__html_block_6_token2] = ACTIONS(2076), + [sym__open_tag_html_block] = ACTIONS(2076), + [sym__open_tag_html_block_newline] = ACTIONS(2076), + [sym__closing_tag_html_block] = ACTIONS(2076), + [sym__closing_tag_html_block_newline] = ACTIONS(2076), + [sym_backslash_escape] = ACTIONS(2076), + [sym_entity_reference] = ACTIONS(2076), + [sym_numeric_character_reference] = ACTIONS(2076), + [sym_uri_autolink] = ACTIONS(2076), + [sym_email_autolink] = ACTIONS(2076), + [sym__whitespace_ge_2] = ACTIONS(2076), + [aux_sym__whitespace_token1] = ACTIONS(2078), + [sym__word_no_digit] = ACTIONS(2076), + [sym__digits] = ACTIONS(2076), + [aux_sym__newline_token1] = ACTIONS(2076), + [sym__block_quote_start] = ACTIONS(2076), + [sym__indented_chunk_start] = ACTIONS(2076), + [sym_atx_h1_marker] = ACTIONS(2076), + [sym_atx_h2_marker] = ACTIONS(2076), + [sym_atx_h3_marker] = ACTIONS(2076), + [sym_atx_h4_marker] = ACTIONS(2076), + [sym_atx_h5_marker] = ACTIONS(2076), + [sym_atx_h6_marker] = ACTIONS(2076), + [sym__thematic_break] = ACTIONS(2076), + [sym__list_marker_minus] = ACTIONS(2076), + [sym__list_marker_plus] = ACTIONS(2076), + [sym__list_marker_star] = ACTIONS(2076), + [sym__list_marker_parenthesis] = ACTIONS(2076), + [sym__list_marker_dot] = ACTIONS(2076), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2076), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2076), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2076), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2076), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2076), + [sym__fenced_code_block_start_backtick] = ACTIONS(2076), + [sym__fenced_code_block_start_tilde] = ACTIONS(2076), + [sym__blank_line_start] = ACTIONS(2076), + [sym__code_span_start] = ACTIONS(2076), + [sym__emphasis_open_star] = ACTIONS(2076), + [sym__emphasis_open_underscore] = ACTIONS(2076), + }, + [417] = { + [anon_sym_BANG] = ACTIONS(2040), + [anon_sym_DQUOTE] = ACTIONS(2040), + [anon_sym_POUND] = ACTIONS(2040), + [anon_sym_DOLLAR] = ACTIONS(2040), + [anon_sym_PERCENT] = ACTIONS(2040), + [anon_sym_AMP] = ACTIONS(2042), + [anon_sym_SQUOTE] = ACTIONS(2040), + [anon_sym_LPAREN] = ACTIONS(2040), + [anon_sym_RPAREN] = ACTIONS(2040), + [anon_sym_STAR] = ACTIONS(2040), + [anon_sym_PLUS] = ACTIONS(2040), + [anon_sym_COMMA] = ACTIONS(2040), + [anon_sym_DASH] = ACTIONS(2040), + [anon_sym_DOT] = ACTIONS(2040), + [anon_sym_SLASH] = ACTIONS(2040), + [anon_sym_COLON] = ACTIONS(2040), + [anon_sym_SEMI] = ACTIONS(2040), + [anon_sym_LT] = ACTIONS(2042), + [anon_sym_EQ] = ACTIONS(2040), + [anon_sym_GT] = ACTIONS(2040), + [anon_sym_QMARK] = ACTIONS(2040), + [anon_sym_AT] = ACTIONS(2040), + [anon_sym_LBRACK] = ACTIONS(2040), + [anon_sym_BSLASH] = ACTIONS(2042), + [anon_sym_RBRACK] = ACTIONS(2040), + [anon_sym_CARET] = ACTIONS(2040), + [anon_sym__] = ACTIONS(2040), + [anon_sym_BQUOTE] = ACTIONS(2040), + [anon_sym_LBRACE] = ACTIONS(2040), + [anon_sym_PIPE] = ACTIONS(2040), + [anon_sym_RBRACE] = ACTIONS(2040), + [anon_sym_TILDE] = ACTIONS(2040), + [aux_sym__html_block_1_token1] = ACTIONS(2040), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2042), + [anon_sym_LT_QMARK] = ACTIONS(2042), + [aux_sym__html_block_4_token1] = ACTIONS(2042), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2040), + [aux_sym__html_block_6_token1] = ACTIONS(2042), + [aux_sym__html_block_6_token2] = ACTIONS(2040), + [sym__open_tag_html_block] = ACTIONS(2040), + [sym__open_tag_html_block_newline] = ACTIONS(2040), + [sym__closing_tag_html_block] = ACTIONS(2040), + [sym__closing_tag_html_block_newline] = ACTIONS(2040), + [sym_backslash_escape] = ACTIONS(2040), + [sym_entity_reference] = ACTIONS(2040), + [sym_numeric_character_reference] = ACTIONS(2040), + [sym_uri_autolink] = ACTIONS(2040), + [sym_email_autolink] = ACTIONS(2040), + [sym__whitespace_ge_2] = ACTIONS(2040), + [aux_sym__whitespace_token1] = ACTIONS(2042), + [sym__word_no_digit] = ACTIONS(2040), + [sym__digits] = ACTIONS(2040), + [aux_sym__newline_token1] = ACTIONS(2040), + [sym__block_close] = ACTIONS(2040), + [sym__block_quote_start] = ACTIONS(2040), + [sym__indented_chunk_start] = ACTIONS(2040), + [sym_atx_h1_marker] = ACTIONS(2040), + [sym_atx_h2_marker] = ACTIONS(2040), + [sym_atx_h3_marker] = ACTIONS(2040), + [sym_atx_h4_marker] = ACTIONS(2040), + [sym_atx_h5_marker] = ACTIONS(2040), + [sym_atx_h6_marker] = ACTIONS(2040), + [sym__thematic_break] = ACTIONS(2040), + [sym__list_marker_minus] = ACTIONS(2040), + [sym__list_marker_plus] = ACTIONS(2040), + [sym__list_marker_star] = ACTIONS(2040), + [sym__list_marker_parenthesis] = ACTIONS(2040), + [sym__list_marker_dot] = ACTIONS(2040), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2040), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2040), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2040), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2040), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2040), + [sym__fenced_code_block_start_backtick] = ACTIONS(2040), + [sym__fenced_code_block_start_tilde] = ACTIONS(2040), + [sym__blank_line_start] = ACTIONS(2040), + [sym__code_span_start] = ACTIONS(2040), + [sym__emphasis_open_star] = ACTIONS(2040), + [sym__emphasis_open_underscore] = ACTIONS(2040), + }, + [418] = { + [ts_builtin_sym_end] = ACTIONS(2036), + [anon_sym_BANG] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [anon_sym_POUND] = ACTIONS(2036), + [anon_sym_DOLLAR] = ACTIONS(2036), + [anon_sym_PERCENT] = ACTIONS(2036), + [anon_sym_AMP] = ACTIONS(2038), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_LPAREN] = ACTIONS(2036), + [anon_sym_RPAREN] = ACTIONS(2036), + [anon_sym_STAR] = ACTIONS(2036), + [anon_sym_PLUS] = ACTIONS(2036), + [anon_sym_COMMA] = ACTIONS(2036), + [anon_sym_DASH] = ACTIONS(2036), + [anon_sym_DOT] = ACTIONS(2036), + [anon_sym_SLASH] = ACTIONS(2036), + [anon_sym_COLON] = ACTIONS(2036), + [anon_sym_SEMI] = ACTIONS(2036), + [anon_sym_LT] = ACTIONS(2038), + [anon_sym_EQ] = ACTIONS(2036), + [anon_sym_GT] = ACTIONS(2036), + [anon_sym_QMARK] = ACTIONS(2036), + [anon_sym_AT] = ACTIONS(2036), + [anon_sym_LBRACK] = ACTIONS(2036), + [anon_sym_BSLASH] = ACTIONS(2038), + [anon_sym_RBRACK] = ACTIONS(2036), + [anon_sym_CARET] = ACTIONS(2036), + [anon_sym__] = ACTIONS(2036), + [anon_sym_BQUOTE] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2036), + [anon_sym_PIPE] = ACTIONS(2036), + [anon_sym_RBRACE] = ACTIONS(2036), + [anon_sym_TILDE] = ACTIONS(2036), + [aux_sym__html_block_1_token1] = ACTIONS(2036), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2038), + [anon_sym_LT_QMARK] = ACTIONS(2038), + [aux_sym__html_block_4_token1] = ACTIONS(2038), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2036), + [aux_sym__html_block_6_token1] = ACTIONS(2038), + [aux_sym__html_block_6_token2] = ACTIONS(2036), + [sym__open_tag_html_block] = ACTIONS(2036), + [sym__open_tag_html_block_newline] = ACTIONS(2036), + [sym__closing_tag_html_block] = ACTIONS(2036), + [sym__closing_tag_html_block_newline] = ACTIONS(2036), + [sym_backslash_escape] = ACTIONS(2036), + [sym_entity_reference] = ACTIONS(2036), + [sym_numeric_character_reference] = ACTIONS(2036), + [sym_uri_autolink] = ACTIONS(2036), + [sym_email_autolink] = ACTIONS(2036), + [sym__whitespace_ge_2] = ACTIONS(2036), + [aux_sym__whitespace_token1] = ACTIONS(2038), + [sym__word_no_digit] = ACTIONS(2036), + [sym__digits] = ACTIONS(2036), + [aux_sym__newline_token1] = ACTIONS(2036), + [sym__block_quote_start] = ACTIONS(2036), + [sym__indented_chunk_start] = ACTIONS(2036), + [sym_atx_h1_marker] = ACTIONS(2036), + [sym_atx_h2_marker] = ACTIONS(2036), + [sym_atx_h3_marker] = ACTIONS(2036), + [sym_atx_h4_marker] = ACTIONS(2036), + [sym_atx_h5_marker] = ACTIONS(2036), + [sym_atx_h6_marker] = ACTIONS(2036), + [sym__thematic_break] = ACTIONS(2036), + [sym__list_marker_minus] = ACTIONS(2036), + [sym__list_marker_plus] = ACTIONS(2036), + [sym__list_marker_star] = ACTIONS(2036), + [sym__list_marker_parenthesis] = ACTIONS(2036), + [sym__list_marker_dot] = ACTIONS(2036), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2036), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2036), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2036), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2036), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2036), + [sym__fenced_code_block_start_backtick] = ACTIONS(2036), + [sym__fenced_code_block_start_tilde] = ACTIONS(2036), + [sym__blank_line_start] = ACTIONS(2036), + [sym__code_span_start] = ACTIONS(2036), + [sym__emphasis_open_star] = ACTIONS(2036), + [sym__emphasis_open_underscore] = ACTIONS(2036), + }, + [419] = { + [ts_builtin_sym_end] = ACTIONS(2044), + [anon_sym_BANG] = ACTIONS(2044), + [anon_sym_DQUOTE] = ACTIONS(2044), + [anon_sym_POUND] = ACTIONS(2044), + [anon_sym_DOLLAR] = ACTIONS(2044), + [anon_sym_PERCENT] = ACTIONS(2044), + [anon_sym_AMP] = ACTIONS(2046), + [anon_sym_SQUOTE] = ACTIONS(2044), + [anon_sym_LPAREN] = ACTIONS(2044), + [anon_sym_RPAREN] = ACTIONS(2044), + [anon_sym_STAR] = ACTIONS(2044), + [anon_sym_PLUS] = ACTIONS(2044), + [anon_sym_COMMA] = ACTIONS(2044), + [anon_sym_DASH] = ACTIONS(2044), + [anon_sym_DOT] = ACTIONS(2044), + [anon_sym_SLASH] = ACTIONS(2044), + [anon_sym_COLON] = ACTIONS(2044), + [anon_sym_SEMI] = ACTIONS(2044), + [anon_sym_LT] = ACTIONS(2046), + [anon_sym_EQ] = ACTIONS(2044), + [anon_sym_GT] = ACTIONS(2044), + [anon_sym_QMARK] = ACTIONS(2044), + [anon_sym_AT] = ACTIONS(2044), + [anon_sym_LBRACK] = ACTIONS(2044), + [anon_sym_BSLASH] = ACTIONS(2046), + [anon_sym_RBRACK] = ACTIONS(2044), + [anon_sym_CARET] = ACTIONS(2044), + [anon_sym__] = ACTIONS(2044), + [anon_sym_BQUOTE] = ACTIONS(2044), + [anon_sym_LBRACE] = ACTIONS(2044), + [anon_sym_PIPE] = ACTIONS(2044), + [anon_sym_RBRACE] = ACTIONS(2044), + [anon_sym_TILDE] = ACTIONS(2044), + [aux_sym__html_block_1_token1] = ACTIONS(2044), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2046), + [anon_sym_LT_QMARK] = ACTIONS(2046), + [aux_sym__html_block_4_token1] = ACTIONS(2046), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2044), + [aux_sym__html_block_6_token1] = ACTIONS(2046), + [aux_sym__html_block_6_token2] = ACTIONS(2044), + [sym__open_tag_html_block] = ACTIONS(2044), + [sym__open_tag_html_block_newline] = ACTIONS(2044), + [sym__closing_tag_html_block] = ACTIONS(2044), + [sym__closing_tag_html_block_newline] = ACTIONS(2044), + [sym_backslash_escape] = ACTIONS(2044), + [sym_entity_reference] = ACTIONS(2044), + [sym_numeric_character_reference] = ACTIONS(2044), + [sym_uri_autolink] = ACTIONS(2044), + [sym_email_autolink] = ACTIONS(2044), + [sym__whitespace_ge_2] = ACTIONS(2044), + [aux_sym__whitespace_token1] = ACTIONS(2046), + [sym__word_no_digit] = ACTIONS(2044), + [sym__digits] = ACTIONS(2044), + [aux_sym__newline_token1] = ACTIONS(2044), + [sym__block_quote_start] = ACTIONS(2044), + [sym__indented_chunk_start] = ACTIONS(2044), + [sym_atx_h1_marker] = ACTIONS(2044), + [sym_atx_h2_marker] = ACTIONS(2044), + [sym_atx_h3_marker] = ACTIONS(2044), + [sym_atx_h4_marker] = ACTIONS(2044), + [sym_atx_h5_marker] = ACTIONS(2044), + [sym_atx_h6_marker] = ACTIONS(2044), + [sym__thematic_break] = ACTIONS(2044), + [sym__list_marker_minus] = ACTIONS(2044), + [sym__list_marker_plus] = ACTIONS(2044), + [sym__list_marker_star] = ACTIONS(2044), + [sym__list_marker_parenthesis] = ACTIONS(2044), + [sym__list_marker_dot] = ACTIONS(2044), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2044), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2044), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2044), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2044), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2044), + [sym__fenced_code_block_start_backtick] = ACTIONS(2044), + [sym__fenced_code_block_start_tilde] = ACTIONS(2044), + [sym__blank_line_start] = ACTIONS(2044), + [sym__code_span_start] = ACTIONS(2044), + [sym__emphasis_open_star] = ACTIONS(2044), + [sym__emphasis_open_underscore] = ACTIONS(2044), }, - [413] = { - [anon_sym_BANG] = ACTIONS(2140), - [anon_sym_DQUOTE] = ACTIONS(2140), - [anon_sym_POUND] = ACTIONS(2140), - [anon_sym_DOLLAR] = ACTIONS(2140), - [anon_sym_PERCENT] = ACTIONS(2140), - [anon_sym_AMP] = ACTIONS(2142), - [anon_sym_SQUOTE] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_RPAREN] = ACTIONS(2140), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_COMMA] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_DOT] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_COLON] = ACTIONS(2140), - [anon_sym_SEMI] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2142), - [anon_sym_EQ] = ACTIONS(2140), - [anon_sym_GT] = ACTIONS(2140), - [anon_sym_QMARK] = ACTIONS(2140), - [anon_sym_AT] = ACTIONS(2140), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_BSLASH] = ACTIONS(2142), - [anon_sym_RBRACK] = ACTIONS(2140), - [anon_sym_CARET] = ACTIONS(2140), - [anon_sym__] = ACTIONS(2140), - [anon_sym_BQUOTE] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [anon_sym_PIPE] = ACTIONS(2140), - [anon_sym_RBRACE] = ACTIONS(2140), - [anon_sym_TILDE] = ACTIONS(2140), - [aux_sym__html_block_1_token1] = ACTIONS(2140), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2142), - [anon_sym_LT_QMARK] = ACTIONS(2142), - [aux_sym__html_block_4_token1] = ACTIONS(2142), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2140), - [aux_sym__html_block_6_token1] = ACTIONS(2142), - [aux_sym__html_block_6_token2] = ACTIONS(2140), - [sym__open_tag_html_block] = ACTIONS(2140), - [sym__open_tag_html_block_newline] = ACTIONS(2140), - [sym__closing_tag_html_block] = ACTIONS(2140), - [sym__closing_tag_html_block_newline] = ACTIONS(2140), - [sym_backslash_escape] = ACTIONS(2140), - [sym_entity_reference] = ACTIONS(2140), - [sym_numeric_character_reference] = ACTIONS(2140), - [sym_uri_autolink] = ACTIONS(2140), - [sym_email_autolink] = ACTIONS(2140), - [sym__whitespace_ge_2] = ACTIONS(2140), - [aux_sym__whitespace_token1] = ACTIONS(2142), - [sym__word_no_digit] = ACTIONS(2140), - [sym__digits] = ACTIONS(2140), - [aux_sym__newline_token1] = ACTIONS(2140), - [sym__block_close] = ACTIONS(2140), - [sym__block_quote_start] = ACTIONS(2140), - [sym__indented_chunk_start] = ACTIONS(2140), - [sym_atx_h1_marker] = ACTIONS(2140), - [sym_atx_h2_marker] = ACTIONS(2140), - [sym_atx_h3_marker] = ACTIONS(2140), - [sym_atx_h4_marker] = ACTIONS(2140), - [sym_atx_h5_marker] = ACTIONS(2140), - [sym_atx_h6_marker] = ACTIONS(2140), - [sym__thematic_break] = ACTIONS(2140), - [sym__list_marker_minus] = ACTIONS(2140), - [sym__list_marker_plus] = ACTIONS(2140), - [sym__list_marker_star] = ACTIONS(2140), - [sym__list_marker_parenthesis] = ACTIONS(2140), - [sym__list_marker_dot] = ACTIONS(2140), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2140), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2140), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2140), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2140), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2140), - [sym__fenced_code_block_start_backtick] = ACTIONS(2140), - [sym__fenced_code_block_start_tilde] = ACTIONS(2140), - [sym__blank_line_start] = ACTIONS(2140), - [sym__code_span_start] = ACTIONS(2140), - [sym__emphasis_open_star] = ACTIONS(2140), - [sym__emphasis_open_underscore] = ACTIONS(2140), + [420] = { + [ts_builtin_sym_end] = 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), + [aux_sym__html_block_1_token1] = 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_entity_reference] = ACTIONS(2072), + [sym_numeric_character_reference] = ACTIONS(2072), + [sym_uri_autolink] = ACTIONS(2072), + [sym_email_autolink] = 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__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), }, - [414] = { - [ts_builtin_sym_end] = ACTIONS(2092), + [421] = { [anon_sym_BANG] = ACTIONS(2092), [anon_sym_DQUOTE] = ACTIONS(2092), [anon_sym_POUND] = ACTIONS(2092), @@ -67704,6 +68277,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__word_no_digit] = ACTIONS(2092), [sym__digits] = ACTIONS(2092), [aux_sym__newline_token1] = ACTIONS(2092), + [sym__block_close] = ACTIONS(2092), [sym__block_quote_start] = ACTIONS(2092), [sym__indented_chunk_start] = ACTIONS(2092), [sym_atx_h1_marker] = ACTIONS(2092), @@ -67730,575 +68304,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_star] = ACTIONS(2092), [sym__emphasis_open_underscore] = ACTIONS(2092), }, - [415] = { - [ts_builtin_sym_end] = ACTIONS(2136), - [anon_sym_BANG] = ACTIONS(2136), - [anon_sym_DQUOTE] = ACTIONS(2136), - [anon_sym_POUND] = ACTIONS(2136), - [anon_sym_DOLLAR] = ACTIONS(2136), - [anon_sym_PERCENT] = ACTIONS(2136), - [anon_sym_AMP] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2136), - [anon_sym_LPAREN] = ACTIONS(2136), - [anon_sym_RPAREN] = ACTIONS(2136), - [anon_sym_STAR] = ACTIONS(2136), - [anon_sym_PLUS] = ACTIONS(2136), - [anon_sym_COMMA] = ACTIONS(2136), - [anon_sym_DASH] = ACTIONS(2136), - [anon_sym_DOT] = ACTIONS(2136), - [anon_sym_SLASH] = ACTIONS(2136), - [anon_sym_COLON] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_EQ] = ACTIONS(2136), - [anon_sym_GT] = ACTIONS(2136), - [anon_sym_QMARK] = ACTIONS(2136), - [anon_sym_AT] = ACTIONS(2136), - [anon_sym_LBRACK] = ACTIONS(2136), - [anon_sym_BSLASH] = ACTIONS(2138), - [anon_sym_RBRACK] = ACTIONS(2136), - [anon_sym_CARET] = ACTIONS(2136), - [anon_sym__] = ACTIONS(2136), - [anon_sym_BQUOTE] = ACTIONS(2136), - [anon_sym_LBRACE] = ACTIONS(2136), - [anon_sym_PIPE] = ACTIONS(2136), - [anon_sym_RBRACE] = ACTIONS(2136), - [anon_sym_TILDE] = ACTIONS(2136), - [aux_sym__html_block_1_token1] = ACTIONS(2136), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2138), - [anon_sym_LT_QMARK] = ACTIONS(2138), - [aux_sym__html_block_4_token1] = ACTIONS(2138), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2136), - [aux_sym__html_block_6_token1] = ACTIONS(2138), - [aux_sym__html_block_6_token2] = ACTIONS(2136), - [sym__open_tag_html_block] = ACTIONS(2136), - [sym__open_tag_html_block_newline] = ACTIONS(2136), - [sym__closing_tag_html_block] = ACTIONS(2136), - [sym__closing_tag_html_block_newline] = ACTIONS(2136), - [sym_backslash_escape] = ACTIONS(2136), - [sym_entity_reference] = ACTIONS(2136), - [sym_numeric_character_reference] = ACTIONS(2136), - [sym_uri_autolink] = ACTIONS(2136), - [sym_email_autolink] = ACTIONS(2136), - [sym__whitespace_ge_2] = ACTIONS(2136), - [aux_sym__whitespace_token1] = ACTIONS(2138), - [sym__word_no_digit] = ACTIONS(2136), - [sym__digits] = ACTIONS(2136), - [aux_sym__newline_token1] = ACTIONS(2136), - [sym__block_quote_start] = ACTIONS(2136), - [sym__indented_chunk_start] = ACTIONS(2136), - [sym_atx_h1_marker] = ACTIONS(2136), - [sym_atx_h2_marker] = ACTIONS(2136), - [sym_atx_h3_marker] = ACTIONS(2136), - [sym_atx_h4_marker] = ACTIONS(2136), - [sym_atx_h5_marker] = ACTIONS(2136), - [sym_atx_h6_marker] = ACTIONS(2136), - [sym__thematic_break] = ACTIONS(2136), - [sym__list_marker_minus] = ACTIONS(2136), - [sym__list_marker_plus] = ACTIONS(2136), - [sym__list_marker_star] = ACTIONS(2136), - [sym__list_marker_parenthesis] = ACTIONS(2136), - [sym__list_marker_dot] = ACTIONS(2136), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2136), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2136), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2136), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2136), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2136), - [sym__fenced_code_block_start_backtick] = ACTIONS(2136), - [sym__fenced_code_block_start_tilde] = ACTIONS(2136), - [sym__blank_line_start] = ACTIONS(2136), - [sym__code_span_start] = ACTIONS(2136), - [sym__emphasis_open_star] = ACTIONS(2136), - [sym__emphasis_open_underscore] = ACTIONS(2136), - }, - [416] = { - [anon_sym_BANG] = ACTIONS(2032), - [anon_sym_DQUOTE] = ACTIONS(2032), - [anon_sym_POUND] = ACTIONS(2032), - [anon_sym_DOLLAR] = ACTIONS(2032), - [anon_sym_PERCENT] = ACTIONS(2032), - [anon_sym_AMP] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2032), - [anon_sym_LPAREN] = ACTIONS(2032), - [anon_sym_RPAREN] = ACTIONS(2032), - [anon_sym_STAR] = ACTIONS(2032), - [anon_sym_PLUS] = ACTIONS(2032), - [anon_sym_COMMA] = ACTIONS(2032), - [anon_sym_DASH] = ACTIONS(2032), - [anon_sym_DOT] = ACTIONS(2032), - [anon_sym_SLASH] = ACTIONS(2032), - [anon_sym_COLON] = ACTIONS(2032), - [anon_sym_SEMI] = ACTIONS(2032), - [anon_sym_LT] = ACTIONS(2034), - [anon_sym_EQ] = ACTIONS(2032), - [anon_sym_GT] = ACTIONS(2032), - [anon_sym_QMARK] = ACTIONS(2032), - [anon_sym_AT] = ACTIONS(2032), - [anon_sym_LBRACK] = ACTIONS(2032), - [anon_sym_BSLASH] = ACTIONS(2034), - [anon_sym_RBRACK] = ACTIONS(2032), - [anon_sym_CARET] = ACTIONS(2032), - [anon_sym__] = ACTIONS(2032), - [anon_sym_BQUOTE] = ACTIONS(2032), - [anon_sym_LBRACE] = ACTIONS(2032), - [anon_sym_PIPE] = ACTIONS(2032), - [anon_sym_RBRACE] = ACTIONS(2032), - [anon_sym_TILDE] = ACTIONS(2032), - [aux_sym__html_block_1_token1] = ACTIONS(2032), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2034), - [anon_sym_LT_QMARK] = ACTIONS(2034), - [aux_sym__html_block_4_token1] = ACTIONS(2034), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2032), - [aux_sym__html_block_6_token1] = ACTIONS(2034), - [aux_sym__html_block_6_token2] = ACTIONS(2032), - [sym__open_tag_html_block] = ACTIONS(2032), - [sym__open_tag_html_block_newline] = ACTIONS(2032), - [sym__closing_tag_html_block] = ACTIONS(2032), - [sym__closing_tag_html_block_newline] = ACTIONS(2032), - [sym_backslash_escape] = ACTIONS(2032), - [sym_entity_reference] = ACTIONS(2032), - [sym_numeric_character_reference] = ACTIONS(2032), - [sym_uri_autolink] = ACTIONS(2032), - [sym_email_autolink] = ACTIONS(2032), - [sym__whitespace_ge_2] = ACTIONS(2032), - [aux_sym__whitespace_token1] = ACTIONS(2034), - [sym__word_no_digit] = ACTIONS(2032), - [sym__digits] = ACTIONS(2032), - [aux_sym__newline_token1] = ACTIONS(2032), - [sym__block_close] = ACTIONS(2032), - [sym__block_quote_start] = ACTIONS(2032), - [sym__indented_chunk_start] = ACTIONS(2032), - [sym_atx_h1_marker] = ACTIONS(2032), - [sym_atx_h2_marker] = ACTIONS(2032), - [sym_atx_h3_marker] = ACTIONS(2032), - [sym_atx_h4_marker] = ACTIONS(2032), - [sym_atx_h5_marker] = ACTIONS(2032), - [sym_atx_h6_marker] = ACTIONS(2032), - [sym__thematic_break] = ACTIONS(2032), - [sym__list_marker_minus] = ACTIONS(2032), - [sym__list_marker_plus] = ACTIONS(2032), - [sym__list_marker_star] = ACTIONS(2032), - [sym__list_marker_parenthesis] = ACTIONS(2032), - [sym__list_marker_dot] = ACTIONS(2032), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2032), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2032), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2032), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2032), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2032), - [sym__fenced_code_block_start_backtick] = ACTIONS(2032), - [sym__fenced_code_block_start_tilde] = ACTIONS(2032), - [sym__blank_line_start] = ACTIONS(2032), - [sym__code_span_start] = ACTIONS(2032), - [sym__emphasis_open_star] = ACTIONS(2032), - [sym__emphasis_open_underscore] = ACTIONS(2032), - }, - [417] = { - [ts_builtin_sym_end] = ACTIONS(2084), - [anon_sym_BANG] = ACTIONS(2084), - [anon_sym_DQUOTE] = ACTIONS(2084), - [anon_sym_POUND] = ACTIONS(2084), - [anon_sym_DOLLAR] = ACTIONS(2084), - [anon_sym_PERCENT] = ACTIONS(2084), - [anon_sym_AMP] = ACTIONS(2086), - [anon_sym_SQUOTE] = ACTIONS(2084), - [anon_sym_LPAREN] = ACTIONS(2084), - [anon_sym_RPAREN] = ACTIONS(2084), - [anon_sym_STAR] = ACTIONS(2084), - [anon_sym_PLUS] = ACTIONS(2084), - [anon_sym_COMMA] = ACTIONS(2084), - [anon_sym_DASH] = ACTIONS(2084), - [anon_sym_DOT] = ACTIONS(2084), - [anon_sym_SLASH] = ACTIONS(2084), - [anon_sym_COLON] = ACTIONS(2084), - [anon_sym_SEMI] = ACTIONS(2084), - [anon_sym_LT] = ACTIONS(2086), - [anon_sym_EQ] = ACTIONS(2084), - [anon_sym_GT] = ACTIONS(2084), - [anon_sym_QMARK] = ACTIONS(2084), - [anon_sym_AT] = ACTIONS(2084), - [anon_sym_LBRACK] = ACTIONS(2084), - [anon_sym_BSLASH] = ACTIONS(2086), - [anon_sym_RBRACK] = ACTIONS(2084), - [anon_sym_CARET] = ACTIONS(2084), - [anon_sym__] = ACTIONS(2084), - [anon_sym_BQUOTE] = ACTIONS(2084), - [anon_sym_LBRACE] = ACTIONS(2084), - [anon_sym_PIPE] = ACTIONS(2084), - [anon_sym_RBRACE] = ACTIONS(2084), - [anon_sym_TILDE] = ACTIONS(2084), - [aux_sym__html_block_1_token1] = ACTIONS(2084), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2086), - [anon_sym_LT_QMARK] = ACTIONS(2086), - [aux_sym__html_block_4_token1] = ACTIONS(2086), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2084), - [aux_sym__html_block_6_token1] = ACTIONS(2086), - [aux_sym__html_block_6_token2] = ACTIONS(2084), - [sym__open_tag_html_block] = ACTIONS(2084), - [sym__open_tag_html_block_newline] = ACTIONS(2084), - [sym__closing_tag_html_block] = ACTIONS(2084), - [sym__closing_tag_html_block_newline] = ACTIONS(2084), - [sym_backslash_escape] = ACTIONS(2084), - [sym_entity_reference] = ACTIONS(2084), - [sym_numeric_character_reference] = ACTIONS(2084), - [sym_uri_autolink] = ACTIONS(2084), - [sym_email_autolink] = ACTIONS(2084), - [sym__whitespace_ge_2] = ACTIONS(2084), - [aux_sym__whitespace_token1] = ACTIONS(2086), - [sym__word_no_digit] = ACTIONS(2084), - [sym__digits] = ACTIONS(2084), - [aux_sym__newline_token1] = ACTIONS(2084), - [sym__block_quote_start] = ACTIONS(2084), - [sym__indented_chunk_start] = ACTIONS(2084), - [sym_atx_h1_marker] = ACTIONS(2084), - [sym_atx_h2_marker] = ACTIONS(2084), - [sym_atx_h3_marker] = ACTIONS(2084), - [sym_atx_h4_marker] = ACTIONS(2084), - [sym_atx_h5_marker] = ACTIONS(2084), - [sym_atx_h6_marker] = ACTIONS(2084), - [sym__thematic_break] = ACTIONS(2084), - [sym__list_marker_minus] = ACTIONS(2084), - [sym__list_marker_plus] = ACTIONS(2084), - [sym__list_marker_star] = ACTIONS(2084), - [sym__list_marker_parenthesis] = ACTIONS(2084), - [sym__list_marker_dot] = ACTIONS(2084), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2084), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2084), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2084), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2084), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2084), - [sym__fenced_code_block_start_backtick] = ACTIONS(2084), - [sym__fenced_code_block_start_tilde] = ACTIONS(2084), - [sym__blank_line_start] = ACTIONS(2084), - [sym__code_span_start] = ACTIONS(2084), - [sym__emphasis_open_star] = ACTIONS(2084), - [sym__emphasis_open_underscore] = ACTIONS(2084), - }, - [418] = { - [ts_builtin_sym_end] = ACTIONS(2148), - [anon_sym_BANG] = ACTIONS(2148), - [anon_sym_DQUOTE] = ACTIONS(2148), - [anon_sym_POUND] = ACTIONS(2148), - [anon_sym_DOLLAR] = ACTIONS(2148), - [anon_sym_PERCENT] = ACTIONS(2148), - [anon_sym_AMP] = ACTIONS(2150), - [anon_sym_SQUOTE] = ACTIONS(2148), - [anon_sym_LPAREN] = ACTIONS(2148), - [anon_sym_RPAREN] = ACTIONS(2148), - [anon_sym_STAR] = ACTIONS(2148), - [anon_sym_PLUS] = ACTIONS(2148), - [anon_sym_COMMA] = ACTIONS(2148), - [anon_sym_DASH] = ACTIONS(2148), - [anon_sym_DOT] = ACTIONS(2148), - [anon_sym_SLASH] = ACTIONS(2148), - [anon_sym_COLON] = ACTIONS(2148), - [anon_sym_SEMI] = ACTIONS(2148), - [anon_sym_LT] = ACTIONS(2150), - [anon_sym_EQ] = ACTIONS(2148), - [anon_sym_GT] = ACTIONS(2148), - [anon_sym_QMARK] = ACTIONS(2148), - [anon_sym_AT] = ACTIONS(2148), - [anon_sym_LBRACK] = ACTIONS(2148), - [anon_sym_BSLASH] = ACTIONS(2150), - [anon_sym_RBRACK] = ACTIONS(2148), - [anon_sym_CARET] = ACTIONS(2148), - [anon_sym__] = ACTIONS(2148), - [anon_sym_BQUOTE] = ACTIONS(2148), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_PIPE] = ACTIONS(2148), - [anon_sym_RBRACE] = ACTIONS(2148), - [anon_sym_TILDE] = ACTIONS(2148), - [aux_sym__html_block_1_token1] = ACTIONS(2148), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2150), - [anon_sym_LT_QMARK] = ACTIONS(2150), - [aux_sym__html_block_4_token1] = ACTIONS(2150), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2148), - [aux_sym__html_block_6_token1] = ACTIONS(2150), - [aux_sym__html_block_6_token2] = ACTIONS(2148), - [sym__open_tag_html_block] = ACTIONS(2148), - [sym__open_tag_html_block_newline] = ACTIONS(2148), - [sym__closing_tag_html_block] = ACTIONS(2148), - [sym__closing_tag_html_block_newline] = ACTIONS(2148), - [sym_backslash_escape] = ACTIONS(2148), - [sym_entity_reference] = ACTIONS(2148), - [sym_numeric_character_reference] = ACTIONS(2148), - [sym_uri_autolink] = ACTIONS(2148), - [sym_email_autolink] = ACTIONS(2148), - [sym__whitespace_ge_2] = ACTIONS(2148), - [aux_sym__whitespace_token1] = ACTIONS(2150), - [sym__word_no_digit] = ACTIONS(2148), - [sym__digits] = ACTIONS(2148), - [aux_sym__newline_token1] = ACTIONS(2148), - [sym__block_quote_start] = ACTIONS(2148), - [sym__indented_chunk_start] = ACTIONS(2148), - [sym_atx_h1_marker] = ACTIONS(2148), - [sym_atx_h2_marker] = ACTIONS(2148), - [sym_atx_h3_marker] = ACTIONS(2148), - [sym_atx_h4_marker] = ACTIONS(2148), - [sym_atx_h5_marker] = ACTIONS(2148), - [sym_atx_h6_marker] = ACTIONS(2148), - [sym__thematic_break] = ACTIONS(2148), - [sym__list_marker_minus] = ACTIONS(2148), - [sym__list_marker_plus] = ACTIONS(2148), - [sym__list_marker_star] = ACTIONS(2148), - [sym__list_marker_parenthesis] = ACTIONS(2148), - [sym__list_marker_dot] = ACTIONS(2148), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2148), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2148), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2148), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2148), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2148), - [sym__fenced_code_block_start_backtick] = ACTIONS(2148), - [sym__fenced_code_block_start_tilde] = ACTIONS(2148), - [sym__blank_line_start] = ACTIONS(2148), - [sym__code_span_start] = ACTIONS(2148), - [sym__emphasis_open_star] = ACTIONS(2148), - [sym__emphasis_open_underscore] = ACTIONS(2148), - }, - [419] = { - [anon_sym_BANG] = ACTIONS(2058), - [anon_sym_DQUOTE] = ACTIONS(2058), - [anon_sym_POUND] = ACTIONS(2058), - [anon_sym_DOLLAR] = ACTIONS(2058), - [anon_sym_PERCENT] = ACTIONS(2058), - [anon_sym_AMP] = ACTIONS(2060), - [anon_sym_SQUOTE] = ACTIONS(2058), - [anon_sym_LPAREN] = ACTIONS(2058), - [anon_sym_RPAREN] = ACTIONS(2058), - [anon_sym_STAR] = ACTIONS(2058), - [anon_sym_PLUS] = ACTIONS(2058), - [anon_sym_COMMA] = ACTIONS(2058), - [anon_sym_DASH] = ACTIONS(2058), - [anon_sym_DOT] = ACTIONS(2058), - [anon_sym_SLASH] = ACTIONS(2058), - [anon_sym_COLON] = ACTIONS(2058), - [anon_sym_SEMI] = ACTIONS(2058), - [anon_sym_LT] = ACTIONS(2060), - [anon_sym_EQ] = ACTIONS(2058), - [anon_sym_GT] = ACTIONS(2058), - [anon_sym_QMARK] = ACTIONS(2058), - [anon_sym_AT] = ACTIONS(2058), - [anon_sym_LBRACK] = ACTIONS(2058), - [anon_sym_BSLASH] = ACTIONS(2060), - [anon_sym_RBRACK] = ACTIONS(2058), - [anon_sym_CARET] = ACTIONS(2058), - [anon_sym__] = ACTIONS(2058), - [anon_sym_BQUOTE] = ACTIONS(2058), - [anon_sym_LBRACE] = ACTIONS(2058), - [anon_sym_PIPE] = ACTIONS(2058), - [anon_sym_RBRACE] = ACTIONS(2058), - [anon_sym_TILDE] = ACTIONS(2058), - [aux_sym__html_block_1_token1] = ACTIONS(2058), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2060), - [anon_sym_LT_QMARK] = ACTIONS(2060), - [aux_sym__html_block_4_token1] = ACTIONS(2060), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2058), - [aux_sym__html_block_6_token1] = ACTIONS(2060), - [aux_sym__html_block_6_token2] = ACTIONS(2058), - [sym__open_tag_html_block] = ACTIONS(2058), - [sym__open_tag_html_block_newline] = ACTIONS(2058), - [sym__closing_tag_html_block] = ACTIONS(2058), - [sym__closing_tag_html_block_newline] = ACTIONS(2058), - [sym_backslash_escape] = ACTIONS(2058), - [sym_entity_reference] = ACTIONS(2058), - [sym_numeric_character_reference] = ACTIONS(2058), - [sym_uri_autolink] = ACTIONS(2058), - [sym_email_autolink] = ACTIONS(2058), - [sym__whitespace_ge_2] = ACTIONS(2058), - [aux_sym__whitespace_token1] = ACTIONS(2060), - [sym__word_no_digit] = ACTIONS(2058), - [sym__digits] = ACTIONS(2058), - [aux_sym__newline_token1] = ACTIONS(2058), - [sym__block_close] = ACTIONS(2058), - [sym__block_quote_start] = ACTIONS(2058), - [sym__indented_chunk_start] = ACTIONS(2058), - [sym_atx_h1_marker] = ACTIONS(2058), - [sym_atx_h2_marker] = ACTIONS(2058), - [sym_atx_h3_marker] = ACTIONS(2058), - [sym_atx_h4_marker] = ACTIONS(2058), - [sym_atx_h5_marker] = ACTIONS(2058), - [sym_atx_h6_marker] = ACTIONS(2058), - [sym__thematic_break] = ACTIONS(2058), - [sym__list_marker_minus] = ACTIONS(2058), - [sym__list_marker_plus] = ACTIONS(2058), - [sym__list_marker_star] = ACTIONS(2058), - [sym__list_marker_parenthesis] = ACTIONS(2058), - [sym__list_marker_dot] = ACTIONS(2058), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2058), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2058), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2058), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2058), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2058), - [sym__fenced_code_block_start_backtick] = ACTIONS(2058), - [sym__fenced_code_block_start_tilde] = ACTIONS(2058), - [sym__blank_line_start] = ACTIONS(2058), - [sym__code_span_start] = ACTIONS(2058), - [sym__emphasis_open_star] = ACTIONS(2058), - [sym__emphasis_open_underscore] = ACTIONS(2058), - }, - [420] = { - [ts_builtin_sym_end] = ACTIONS(2144), - [anon_sym_BANG] = ACTIONS(2144), - [anon_sym_DQUOTE] = ACTIONS(2144), - [anon_sym_POUND] = ACTIONS(2144), - [anon_sym_DOLLAR] = ACTIONS(2144), - [anon_sym_PERCENT] = ACTIONS(2144), - [anon_sym_AMP] = ACTIONS(2146), - [anon_sym_SQUOTE] = ACTIONS(2144), - [anon_sym_LPAREN] = ACTIONS(2144), - [anon_sym_RPAREN] = ACTIONS(2144), - [anon_sym_STAR] = ACTIONS(2144), - [anon_sym_PLUS] = ACTIONS(2144), - [anon_sym_COMMA] = ACTIONS(2144), - [anon_sym_DASH] = ACTIONS(2144), - [anon_sym_DOT] = ACTIONS(2144), - [anon_sym_SLASH] = ACTIONS(2144), - [anon_sym_COLON] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2144), - [anon_sym_LT] = ACTIONS(2146), - [anon_sym_EQ] = ACTIONS(2144), - [anon_sym_GT] = ACTIONS(2144), - [anon_sym_QMARK] = ACTIONS(2144), - [anon_sym_AT] = ACTIONS(2144), - [anon_sym_LBRACK] = ACTIONS(2144), - [anon_sym_BSLASH] = ACTIONS(2146), - [anon_sym_RBRACK] = ACTIONS(2144), - [anon_sym_CARET] = ACTIONS(2144), - [anon_sym__] = ACTIONS(2144), - [anon_sym_BQUOTE] = ACTIONS(2144), - [anon_sym_LBRACE] = ACTIONS(2144), - [anon_sym_PIPE] = ACTIONS(2144), - [anon_sym_RBRACE] = ACTIONS(2144), - [anon_sym_TILDE] = ACTIONS(2144), - [aux_sym__html_block_1_token1] = ACTIONS(2144), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2146), - [anon_sym_LT_QMARK] = ACTIONS(2146), - [aux_sym__html_block_4_token1] = ACTIONS(2146), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2144), - [aux_sym__html_block_6_token1] = ACTIONS(2146), - [aux_sym__html_block_6_token2] = ACTIONS(2144), - [sym__open_tag_html_block] = ACTIONS(2144), - [sym__open_tag_html_block_newline] = ACTIONS(2144), - [sym__closing_tag_html_block] = ACTIONS(2144), - [sym__closing_tag_html_block_newline] = ACTIONS(2144), - [sym_backslash_escape] = ACTIONS(2144), - [sym_entity_reference] = ACTIONS(2144), - [sym_numeric_character_reference] = ACTIONS(2144), - [sym_uri_autolink] = ACTIONS(2144), - [sym_email_autolink] = ACTIONS(2144), - [sym__whitespace_ge_2] = ACTIONS(2144), - [aux_sym__whitespace_token1] = ACTIONS(2146), - [sym__word_no_digit] = ACTIONS(2144), - [sym__digits] = ACTIONS(2144), - [aux_sym__newline_token1] = ACTIONS(2144), - [sym__block_quote_start] = ACTIONS(2144), - [sym__indented_chunk_start] = ACTIONS(2144), - [sym_atx_h1_marker] = ACTIONS(2144), - [sym_atx_h2_marker] = ACTIONS(2144), - [sym_atx_h3_marker] = ACTIONS(2144), - [sym_atx_h4_marker] = ACTIONS(2144), - [sym_atx_h5_marker] = ACTIONS(2144), - [sym_atx_h6_marker] = ACTIONS(2144), - [sym__thematic_break] = ACTIONS(2144), - [sym__list_marker_minus] = ACTIONS(2144), - [sym__list_marker_plus] = ACTIONS(2144), - [sym__list_marker_star] = ACTIONS(2144), - [sym__list_marker_parenthesis] = ACTIONS(2144), - [sym__list_marker_dot] = ACTIONS(2144), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2144), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2144), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2144), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2144), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2144), - [sym__fenced_code_block_start_backtick] = ACTIONS(2144), - [sym__fenced_code_block_start_tilde] = ACTIONS(2144), - [sym__blank_line_start] = ACTIONS(2144), - [sym__code_span_start] = ACTIONS(2144), - [sym__emphasis_open_star] = ACTIONS(2144), - [sym__emphasis_open_underscore] = ACTIONS(2144), - }, - [421] = { - [sym__block_interrupt_paragraph] = STATE(1646), - [sym_thematic_break] = STATE(1646), - [sym_atx_heading] = STATE(1646), - [sym_fenced_code_block] = STATE(1646), - [sym__html_block_1] = STATE(1646), - [sym__html_block_2] = STATE(1646), - [sym__html_block_3] = STATE(1646), - [sym__html_block_4] = STATE(1646), - [sym__html_block_5] = STATE(1646), - [sym__html_block_6] = STATE(1646), - [sym__blank_line] = STATE(1646), - [sym_block_quote] = STATE(1646), - [anon_sym_BANG] = ACTIONS(415), - [anon_sym_DQUOTE] = ACTIONS(415), - [anon_sym_POUND] = ACTIONS(415), - [anon_sym_DOLLAR] = ACTIONS(415), - [anon_sym_PERCENT] = ACTIONS(415), - [anon_sym_AMP] = ACTIONS(417), - [anon_sym_SQUOTE] = ACTIONS(415), - [anon_sym_LPAREN] = ACTIONS(415), - [anon_sym_RPAREN] = ACTIONS(415), - [anon_sym_STAR] = ACTIONS(415), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_COMMA] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_DOT] = ACTIONS(415), - [anon_sym_SLASH] = ACTIONS(415), - [anon_sym_COLON] = ACTIONS(415), - [anon_sym_SEMI] = ACTIONS(415), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_EQ] = ACTIONS(415), - [anon_sym_GT] = ACTIONS(415), - [anon_sym_QMARK] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(415), - [anon_sym_LBRACK] = ACTIONS(415), - [anon_sym_BSLASH] = ACTIONS(417), - [anon_sym_RBRACK] = ACTIONS(415), - [anon_sym_CARET] = ACTIONS(415), - [anon_sym__] = ACTIONS(415), - [anon_sym_BQUOTE] = ACTIONS(415), - [anon_sym_LBRACE] = ACTIONS(415), - [anon_sym_PIPE] = ACTIONS(415), - [anon_sym_RBRACE] = ACTIONS(415), - [anon_sym_TILDE] = ACTIONS(415), - [aux_sym__html_block_1_token1] = ACTIONS(2104), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2106), - [anon_sym_LT_QMARK] = ACTIONS(2108), - [aux_sym__html_block_4_token1] = ACTIONS(2110), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2112), - [aux_sym__html_block_6_token1] = ACTIONS(2114), - [aux_sym__html_block_6_token2] = ACTIONS(2116), - [sym_backslash_escape] = ACTIONS(415), - [sym_entity_reference] = ACTIONS(415), - [sym_numeric_character_reference] = ACTIONS(415), - [sym__whitespace_ge_2] = ACTIONS(415), - [aux_sym__whitespace_token1] = ACTIONS(417), - [sym__word_no_digit] = ACTIONS(415), - [sym__digits] = ACTIONS(415), - [aux_sym__newline_token1] = ACTIONS(415), - [sym__block_quote_start] = ACTIONS(2118), - [sym_atx_h1_marker] = ACTIONS(2120), - [sym_atx_h2_marker] = ACTIONS(2120), - [sym_atx_h3_marker] = ACTIONS(2120), - [sym_atx_h4_marker] = ACTIONS(2120), - [sym_atx_h5_marker] = ACTIONS(2120), - [sym_atx_h6_marker] = ACTIONS(2120), - [sym_setext_h1_underline] = ACTIONS(2152), - [sym_setext_h2_underline] = ACTIONS(2152), - [sym__thematic_break] = ACTIONS(2124), - [sym__list_marker_minus] = ACTIONS(2152), - [sym__list_marker_plus] = ACTIONS(2152), - [sym__list_marker_star] = ACTIONS(2152), - [sym__list_marker_parenthesis] = ACTIONS(2152), - [sym__list_marker_dot] = ACTIONS(2152), - [sym__fenced_code_block_start_backtick] = ACTIONS(2126), - [sym__fenced_code_block_start_tilde] = ACTIONS(2128), - [sym__blank_line_start] = ACTIONS(2130), - [sym__split_token] = ACTIONS(447), - [sym__soft_line_break_marker] = ACTIONS(447), - }, [422] = { - [ts_builtin_sym_end] = ACTIONS(2154), [anon_sym_BANG] = ACTIONS(2154), [anon_sym_DQUOTE] = ACTIONS(2154), [anon_sym_POUND] = ACTIONS(2154), @@ -68352,6 +68358,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__word_no_digit] = ACTIONS(2154), [sym__digits] = ACTIONS(2154), [aux_sym__newline_token1] = ACTIONS(2154), + [sym__block_close] = ACTIONS(2154), [sym__block_quote_start] = ACTIONS(2154), [sym__indented_chunk_start] = ACTIONS(2154), [sym_atx_h1_marker] = ACTIONS(2154), @@ -68379,6 +68386,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_underscore] = ACTIONS(2154), }, [423] = { + [ts_builtin_sym_end] = ACTIONS(2108), + [anon_sym_BANG] = ACTIONS(2108), + [anon_sym_DQUOTE] = ACTIONS(2108), + [anon_sym_POUND] = ACTIONS(2108), + [anon_sym_DOLLAR] = ACTIONS(2108), + [anon_sym_PERCENT] = ACTIONS(2108), + [anon_sym_AMP] = ACTIONS(2110), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_LPAREN] = ACTIONS(2108), + [anon_sym_RPAREN] = ACTIONS(2108), + [anon_sym_STAR] = ACTIONS(2108), + [anon_sym_PLUS] = ACTIONS(2108), + [anon_sym_COMMA] = ACTIONS(2108), + [anon_sym_DASH] = ACTIONS(2108), + [anon_sym_DOT] = ACTIONS(2108), + [anon_sym_SLASH] = ACTIONS(2108), + [anon_sym_COLON] = ACTIONS(2108), + [anon_sym_SEMI] = ACTIONS(2108), + [anon_sym_LT] = ACTIONS(2110), + [anon_sym_EQ] = ACTIONS(2108), + [anon_sym_GT] = ACTIONS(2108), + [anon_sym_QMARK] = ACTIONS(2108), + [anon_sym_AT] = ACTIONS(2108), + [anon_sym_LBRACK] = ACTIONS(2108), + [anon_sym_BSLASH] = ACTIONS(2110), + [anon_sym_RBRACK] = ACTIONS(2108), + [anon_sym_CARET] = ACTIONS(2108), + [anon_sym__] = ACTIONS(2108), + [anon_sym_BQUOTE] = ACTIONS(2108), + [anon_sym_LBRACE] = ACTIONS(2108), + [anon_sym_PIPE] = ACTIONS(2108), + [anon_sym_RBRACE] = ACTIONS(2108), + [anon_sym_TILDE] = ACTIONS(2108), + [aux_sym__html_block_1_token1] = ACTIONS(2108), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2110), + [anon_sym_LT_QMARK] = ACTIONS(2110), + [aux_sym__html_block_4_token1] = ACTIONS(2110), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2108), + [aux_sym__html_block_6_token1] = ACTIONS(2110), + [aux_sym__html_block_6_token2] = ACTIONS(2108), + [sym__open_tag_html_block] = ACTIONS(2108), + [sym__open_tag_html_block_newline] = ACTIONS(2108), + [sym__closing_tag_html_block] = ACTIONS(2108), + [sym__closing_tag_html_block_newline] = ACTIONS(2108), + [sym_backslash_escape] = ACTIONS(2108), + [sym_entity_reference] = ACTIONS(2108), + [sym_numeric_character_reference] = ACTIONS(2108), + [sym_uri_autolink] = ACTIONS(2108), + [sym_email_autolink] = ACTIONS(2108), + [sym__whitespace_ge_2] = ACTIONS(2108), + [aux_sym__whitespace_token1] = ACTIONS(2110), + [sym__word_no_digit] = ACTIONS(2108), + [sym__digits] = ACTIONS(2108), + [aux_sym__newline_token1] = ACTIONS(2108), + [sym__block_quote_start] = ACTIONS(2108), + [sym__indented_chunk_start] = ACTIONS(2108), + [sym_atx_h1_marker] = ACTIONS(2108), + [sym_atx_h2_marker] = ACTIONS(2108), + [sym_atx_h3_marker] = ACTIONS(2108), + [sym_atx_h4_marker] = ACTIONS(2108), + [sym_atx_h5_marker] = ACTIONS(2108), + [sym_atx_h6_marker] = ACTIONS(2108), + [sym__thematic_break] = ACTIONS(2108), + [sym__list_marker_minus] = ACTIONS(2108), + [sym__list_marker_plus] = ACTIONS(2108), + [sym__list_marker_star] = ACTIONS(2108), + [sym__list_marker_parenthesis] = ACTIONS(2108), + [sym__list_marker_dot] = ACTIONS(2108), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2108), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2108), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2108), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2108), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2108), + [sym__fenced_code_block_start_backtick] = ACTIONS(2108), + [sym__fenced_code_block_start_tilde] = ACTIONS(2108), + [sym__blank_line_start] = ACTIONS(2108), + [sym__code_span_start] = ACTIONS(2108), + [sym__emphasis_open_star] = ACTIONS(2108), + [sym__emphasis_open_underscore] = ACTIONS(2108), + }, + [424] = { + [ts_builtin_sym_end] = ACTIONS(2148), + [anon_sym_BANG] = ACTIONS(2148), + [anon_sym_DQUOTE] = ACTIONS(2148), + [anon_sym_POUND] = ACTIONS(2148), + [anon_sym_DOLLAR] = ACTIONS(2148), + [anon_sym_PERCENT] = ACTIONS(2148), + [anon_sym_AMP] = ACTIONS(2150), + [anon_sym_SQUOTE] = ACTIONS(2148), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_RPAREN] = ACTIONS(2148), + [anon_sym_STAR] = ACTIONS(2148), + [anon_sym_PLUS] = ACTIONS(2148), + [anon_sym_COMMA] = ACTIONS(2148), + [anon_sym_DASH] = ACTIONS(2148), + [anon_sym_DOT] = ACTIONS(2148), + [anon_sym_SLASH] = ACTIONS(2148), + [anon_sym_COLON] = ACTIONS(2148), + [anon_sym_SEMI] = ACTIONS(2148), + [anon_sym_LT] = ACTIONS(2150), + [anon_sym_EQ] = ACTIONS(2148), + [anon_sym_GT] = ACTIONS(2148), + [anon_sym_QMARK] = ACTIONS(2148), + [anon_sym_AT] = ACTIONS(2148), + [anon_sym_LBRACK] = ACTIONS(2148), + [anon_sym_BSLASH] = ACTIONS(2150), + [anon_sym_RBRACK] = ACTIONS(2148), + [anon_sym_CARET] = ACTIONS(2148), + [anon_sym__] = ACTIONS(2148), + [anon_sym_BQUOTE] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2148), + [anon_sym_PIPE] = ACTIONS(2148), + [anon_sym_RBRACE] = ACTIONS(2148), + [anon_sym_TILDE] = ACTIONS(2148), + [aux_sym__html_block_1_token1] = ACTIONS(2148), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2150), + [anon_sym_LT_QMARK] = ACTIONS(2150), + [aux_sym__html_block_4_token1] = ACTIONS(2150), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2148), + [aux_sym__html_block_6_token1] = ACTIONS(2150), + [aux_sym__html_block_6_token2] = ACTIONS(2148), + [sym__open_tag_html_block] = ACTIONS(2148), + [sym__open_tag_html_block_newline] = ACTIONS(2148), + [sym__closing_tag_html_block] = ACTIONS(2148), + [sym__closing_tag_html_block_newline] = ACTIONS(2148), + [sym_backslash_escape] = ACTIONS(2148), + [sym_entity_reference] = ACTIONS(2148), + [sym_numeric_character_reference] = ACTIONS(2148), + [sym_uri_autolink] = ACTIONS(2148), + [sym_email_autolink] = ACTIONS(2148), + [sym__whitespace_ge_2] = ACTIONS(2148), + [aux_sym__whitespace_token1] = ACTIONS(2150), + [sym__word_no_digit] = ACTIONS(2148), + [sym__digits] = ACTIONS(2148), + [aux_sym__newline_token1] = ACTIONS(2148), + [sym__block_quote_start] = ACTIONS(2148), + [sym__indented_chunk_start] = ACTIONS(2148), + [sym_atx_h1_marker] = ACTIONS(2148), + [sym_atx_h2_marker] = ACTIONS(2148), + [sym_atx_h3_marker] = ACTIONS(2148), + [sym_atx_h4_marker] = ACTIONS(2148), + [sym_atx_h5_marker] = ACTIONS(2148), + [sym_atx_h6_marker] = ACTIONS(2148), + [sym__thematic_break] = ACTIONS(2148), + [sym__list_marker_minus] = ACTIONS(2148), + [sym__list_marker_plus] = ACTIONS(2148), + [sym__list_marker_star] = ACTIONS(2148), + [sym__list_marker_parenthesis] = ACTIONS(2148), + [sym__list_marker_dot] = ACTIONS(2148), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2148), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2148), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2148), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2148), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2148), + [sym__fenced_code_block_start_backtick] = ACTIONS(2148), + [sym__fenced_code_block_start_tilde] = ACTIONS(2148), + [sym__blank_line_start] = ACTIONS(2148), + [sym__code_span_start] = ACTIONS(2148), + [sym__emphasis_open_star] = ACTIONS(2148), + [sym__emphasis_open_underscore] = ACTIONS(2148), + }, + [425] = { + [ts_builtin_sym_end] = ACTIONS(2154), [anon_sym_BANG] = ACTIONS(2154), [anon_sym_DQUOTE] = ACTIONS(2154), [anon_sym_POUND] = ACTIONS(2154), @@ -68432,7 +68602,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__word_no_digit] = ACTIONS(2154), [sym__digits] = ACTIONS(2154), [aux_sym__newline_token1] = ACTIONS(2154), - [sym__block_close] = ACTIONS(2154), [sym__block_quote_start] = ACTIONS(2154), [sym__indented_chunk_start] = ACTIONS(2154), [sym_atx_h1_marker] = ACTIONS(2154), @@ -68459,196 +68628,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_star] = ACTIONS(2154), [sym__emphasis_open_underscore] = ACTIONS(2154), }, - [424] = { - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_BANG] = ACTIONS(2088), - [anon_sym_DQUOTE] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(2088), - [anon_sym_DOLLAR] = ACTIONS(2088), - [anon_sym_PERCENT] = ACTIONS(2088), - [anon_sym_AMP] = ACTIONS(2090), - [anon_sym_SQUOTE] = ACTIONS(2088), - [anon_sym_LPAREN] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_STAR] = ACTIONS(2088), - [anon_sym_PLUS] = ACTIONS(2088), - [anon_sym_COMMA] = ACTIONS(2088), - [anon_sym_DASH] = ACTIONS(2088), - [anon_sym_DOT] = ACTIONS(2088), - [anon_sym_SLASH] = ACTIONS(2088), - [anon_sym_COLON] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_LT] = ACTIONS(2090), - [anon_sym_EQ] = ACTIONS(2088), - [anon_sym_GT] = ACTIONS(2088), - [anon_sym_QMARK] = ACTIONS(2088), - [anon_sym_AT] = ACTIONS(2088), - [anon_sym_LBRACK] = ACTIONS(2088), - [anon_sym_BSLASH] = ACTIONS(2090), - [anon_sym_RBRACK] = ACTIONS(2088), - [anon_sym_CARET] = ACTIONS(2088), - [anon_sym__] = ACTIONS(2088), - [anon_sym_BQUOTE] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_TILDE] = ACTIONS(2088), - [aux_sym__html_block_1_token1] = ACTIONS(2088), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2090), - [anon_sym_LT_QMARK] = ACTIONS(2090), - [aux_sym__html_block_4_token1] = ACTIONS(2090), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2088), - [aux_sym__html_block_6_token1] = ACTIONS(2090), - [aux_sym__html_block_6_token2] = ACTIONS(2088), - [sym__open_tag_html_block] = ACTIONS(2088), - [sym__open_tag_html_block_newline] = ACTIONS(2088), - [sym__closing_tag_html_block] = ACTIONS(2088), - [sym__closing_tag_html_block_newline] = ACTIONS(2088), - [sym_backslash_escape] = ACTIONS(2088), - [sym_entity_reference] = ACTIONS(2088), - [sym_numeric_character_reference] = ACTIONS(2088), - [sym_uri_autolink] = ACTIONS(2088), - [sym_email_autolink] = ACTIONS(2088), - [sym__whitespace_ge_2] = ACTIONS(2088), - [aux_sym__whitespace_token1] = ACTIONS(2090), - [sym__word_no_digit] = ACTIONS(2088), - [sym__digits] = ACTIONS(2088), - [aux_sym__newline_token1] = ACTIONS(2088), - [sym__block_quote_start] = ACTIONS(2088), - [sym__indented_chunk_start] = ACTIONS(2088), - [sym_atx_h1_marker] = ACTIONS(2088), - [sym_atx_h2_marker] = ACTIONS(2088), - [sym_atx_h3_marker] = ACTIONS(2088), - [sym_atx_h4_marker] = ACTIONS(2088), - [sym_atx_h5_marker] = ACTIONS(2088), - [sym_atx_h6_marker] = ACTIONS(2088), - [sym__thematic_break] = ACTIONS(2088), - [sym__list_marker_minus] = ACTIONS(2088), - [sym__list_marker_plus] = ACTIONS(2088), - [sym__list_marker_star] = ACTIONS(2088), - [sym__list_marker_parenthesis] = ACTIONS(2088), - [sym__list_marker_dot] = ACTIONS(2088), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2088), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2088), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2088), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2088), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2088), - [sym__fenced_code_block_start_backtick] = ACTIONS(2088), - [sym__fenced_code_block_start_tilde] = ACTIONS(2088), - [sym__blank_line_start] = ACTIONS(2088), - [sym__code_span_start] = ACTIONS(2088), - [sym__emphasis_open_star] = ACTIONS(2088), - [sym__emphasis_open_underscore] = ACTIONS(2088), - }, - [425] = { - [anon_sym_BANG] = ACTIONS(2132), - [anon_sym_DQUOTE] = ACTIONS(2132), - [anon_sym_POUND] = ACTIONS(2132), - [anon_sym_DOLLAR] = ACTIONS(2132), - [anon_sym_PERCENT] = ACTIONS(2132), - [anon_sym_AMP] = ACTIONS(2134), - [anon_sym_SQUOTE] = ACTIONS(2132), - [anon_sym_LPAREN] = ACTIONS(2132), - [anon_sym_RPAREN] = ACTIONS(2132), - [anon_sym_STAR] = ACTIONS(2132), - [anon_sym_PLUS] = ACTIONS(2132), - [anon_sym_COMMA] = ACTIONS(2132), - [anon_sym_DASH] = ACTIONS(2132), - [anon_sym_DOT] = ACTIONS(2132), - [anon_sym_SLASH] = ACTIONS(2132), - [anon_sym_COLON] = ACTIONS(2132), - [anon_sym_SEMI] = ACTIONS(2132), - [anon_sym_LT] = ACTIONS(2134), - [anon_sym_EQ] = ACTIONS(2132), - [anon_sym_GT] = ACTIONS(2132), - [anon_sym_QMARK] = ACTIONS(2132), - [anon_sym_AT] = ACTIONS(2132), - [anon_sym_LBRACK] = ACTIONS(2132), - [anon_sym_BSLASH] = ACTIONS(2134), - [anon_sym_RBRACK] = ACTIONS(2132), - [anon_sym_CARET] = ACTIONS(2132), - [anon_sym__] = ACTIONS(2132), - [anon_sym_BQUOTE] = ACTIONS(2132), - [anon_sym_LBRACE] = ACTIONS(2132), - [anon_sym_PIPE] = ACTIONS(2132), - [anon_sym_RBRACE] = ACTIONS(2132), - [anon_sym_TILDE] = ACTIONS(2132), - [aux_sym__html_block_1_token1] = ACTIONS(2132), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2134), - [anon_sym_LT_QMARK] = ACTIONS(2134), - [aux_sym__html_block_4_token1] = ACTIONS(2134), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2132), - [aux_sym__html_block_6_token1] = ACTIONS(2134), - [aux_sym__html_block_6_token2] = ACTIONS(2132), - [sym__open_tag_html_block] = ACTIONS(2132), - [sym__open_tag_html_block_newline] = ACTIONS(2132), - [sym__closing_tag_html_block] = ACTIONS(2132), - [sym__closing_tag_html_block_newline] = ACTIONS(2132), - [sym_backslash_escape] = ACTIONS(2132), - [sym_entity_reference] = ACTIONS(2132), - [sym_numeric_character_reference] = ACTIONS(2132), - [sym_uri_autolink] = ACTIONS(2132), - [sym_email_autolink] = ACTIONS(2132), - [sym__whitespace_ge_2] = ACTIONS(2132), - [aux_sym__whitespace_token1] = ACTIONS(2134), - [sym__word_no_digit] = ACTIONS(2132), - [sym__digits] = ACTIONS(2132), - [aux_sym__newline_token1] = ACTIONS(2132), - [sym__block_close] = ACTIONS(2132), - [sym__block_quote_start] = ACTIONS(2132), - [sym__indented_chunk_start] = ACTIONS(2132), - [sym_atx_h1_marker] = ACTIONS(2132), - [sym_atx_h2_marker] = ACTIONS(2132), - [sym_atx_h3_marker] = ACTIONS(2132), - [sym_atx_h4_marker] = ACTIONS(2132), - [sym_atx_h5_marker] = ACTIONS(2132), - [sym_atx_h6_marker] = ACTIONS(2132), - [sym__thematic_break] = ACTIONS(2132), - [sym__list_marker_minus] = ACTIONS(2132), - [sym__list_marker_plus] = ACTIONS(2132), - [sym__list_marker_star] = ACTIONS(2132), - [sym__list_marker_parenthesis] = ACTIONS(2132), - [sym__list_marker_dot] = ACTIONS(2132), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2132), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2132), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2132), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2132), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2132), - [sym__fenced_code_block_start_backtick] = ACTIONS(2132), - [sym__fenced_code_block_start_tilde] = ACTIONS(2132), - [sym__blank_line_start] = ACTIONS(2132), - [sym__code_span_start] = ACTIONS(2132), - [sym__emphasis_open_star] = ACTIONS(2132), - [sym__emphasis_open_underscore] = ACTIONS(2132), - }, [426] = { - [sym__soft_line_break] = STATE(956), - [sym_image] = STATE(956), - [sym__image_inline_link] = STATE(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(892), - [sym_html_tag] = STATE(956), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(956), - [sym__whitespace] = STATE(956), - [sym__word] = STATE(956), - [sym__newline] = STATE(2134), - [sym__inline_element_no_link] = STATE(956), - [aux_sym__inline_no_link] = STATE(439), - [sym__text_inline_no_link] = STATE(956), - [sym__emphasis_star_no_link] = STATE(957), - [sym__strong_emphasis_star_no_link] = STATE(956), - [sym__emphasis_underscore_no_link] = STATE(957), - [sym__strong_emphasis_underscore_no_link] = STATE(956), - [sym__code_span] = STATE(956), + [sym__soft_line_break] = STATE(963), + [sym_image] = STATE(963), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(890), + [sym_html_tag] = STATE(963), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(963), + [sym__whitespace] = STATE(963), + [sym__word] = STATE(963), + [sym__newline] = STATE(2141), + [sym__inline_element_no_link] = STATE(963), + [aux_sym__inline_no_link] = STATE(446), + [sym__text_inline_no_link] = STATE(963), + [sym__emphasis_star_no_link] = STATE(964), + [sym__strong_emphasis_star_no_link] = STATE(963), + [sym__emphasis_underscore_no_link] = STATE(964), + [sym__strong_emphasis_underscore_no_link] = STATE(963), + [sym__code_span] = STATE(963), [anon_sym_BANG] = ACTIONS(2158), [anon_sym_DQUOTE] = ACTIONS(2161), [anon_sym_POUND] = ACTIONS(2161), @@ -68671,87 +68678,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(2161), [anon_sym_QMARK] = ACTIONS(2161), [anon_sym_AT] = ACTIONS(2161), - [anon_sym_LBRACK] = ACTIONS(931), - [anon_sym_BSLASH] = ACTIONS(2170), - [anon_sym_RBRACK] = ACTIONS(2173), - [anon_sym_CARET] = ACTIONS(2161), - [anon_sym__] = ACTIONS(2161), - [anon_sym_BQUOTE] = ACTIONS(2161), - [anon_sym_LBRACE] = ACTIONS(2161), - [anon_sym_PIPE] = ACTIONS(2161), - [anon_sym_RBRACE] = ACTIONS(2161), - [anon_sym_TILDE] = ACTIONS(2161), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2176), - [anon_sym_LT_QMARK] = ACTIONS(2179), - [aux_sym__html_block_4_token1] = ACTIONS(2182), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2185), - [sym_backslash_escape] = ACTIONS(2188), - [sym_entity_reference] = ACTIONS(2188), - [sym_numeric_character_reference] = ACTIONS(2188), - [sym_uri_autolink] = ACTIONS(2188), - [sym_email_autolink] = ACTIONS(2188), - [sym__whitespace_ge_2] = ACTIONS(2191), - [aux_sym__whitespace_token1] = ACTIONS(2194), - [sym__word_no_digit] = ACTIONS(2188), - [sym__digits] = ACTIONS(2188), - [aux_sym__newline_token1] = ACTIONS(919), - [sym__code_span_start] = ACTIONS(2197), - [sym__emphasis_open_star] = ACTIONS(2200), - [sym__emphasis_open_underscore] = ACTIONS(2203), - [sym__emphasis_close_star] = ACTIONS(931), - [sym__last_token_punctuation] = ACTIONS(2206), - }, - [427] = { - [sym__soft_line_break] = STATE(956), - [sym_image] = STATE(956), - [sym__image_inline_link] = STATE(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(892), - [sym_html_tag] = STATE(956), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(956), - [sym__whitespace] = STATE(956), - [sym__word] = STATE(956), - [sym__newline] = STATE(2134), - [sym__inline_element_no_link] = STATE(956), - [aux_sym__inline_no_link] = STATE(439), - [sym__text_inline_no_link] = STATE(956), - [sym__emphasis_star_no_link] = STATE(957), - [sym__strong_emphasis_star_no_link] = STATE(956), - [sym__emphasis_underscore_no_link] = STATE(957), - [sym__strong_emphasis_underscore_no_link] = STATE(956), - [sym__code_span] = STATE(956), - [anon_sym_BANG] = ACTIONS(2158), - [anon_sym_DQUOTE] = ACTIONS(2161), - [anon_sym_POUND] = ACTIONS(2161), - [anon_sym_DOLLAR] = ACTIONS(2161), - [anon_sym_PERCENT] = ACTIONS(2161), - [anon_sym_AMP] = ACTIONS(2164), - [anon_sym_SQUOTE] = ACTIONS(2161), - [anon_sym_LPAREN] = ACTIONS(2161), - [anon_sym_RPAREN] = ACTIONS(2161), - [anon_sym_STAR] = ACTIONS(2161), - [anon_sym_PLUS] = ACTIONS(2161), - [anon_sym_COMMA] = ACTIONS(2161), - [anon_sym_DASH] = ACTIONS(2161), - [anon_sym_DOT] = ACTIONS(2161), - [anon_sym_SLASH] = ACTIONS(2161), - [anon_sym_COLON] = ACTIONS(2161), - [anon_sym_SEMI] = ACTIONS(2161), - [anon_sym_LT] = ACTIONS(2167), - [anon_sym_EQ] = ACTIONS(2161), - [anon_sym_GT] = ACTIONS(2161), - [anon_sym_QMARK] = ACTIONS(2161), - [anon_sym_AT] = ACTIONS(2161), - [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(694), [anon_sym_BSLASH] = ACTIONS(2170), [anon_sym_RBRACK] = ACTIONS(2173), [anon_sym_CARET] = ACTIONS(2161), @@ -68778,37 +68705,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_start] = ACTIONS(2197), [sym__emphasis_open_star] = ACTIONS(2200), [sym__emphasis_open_underscore] = ACTIONS(2203), - [sym__emphasis_close_star] = ACTIONS(931), + [sym__emphasis_close_underscore] = ACTIONS(694), [sym__last_token_punctuation] = ACTIONS(2206), }, - [428] = { - [sym__soft_line_break] = STATE(956), - [sym_image] = STATE(956), - [sym__image_inline_link] = STATE(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(892), - [sym_html_tag] = STATE(956), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(956), - [sym__whitespace] = STATE(956), - [sym__word] = STATE(956), - [sym__newline] = STATE(2134), - [sym__inline_element_no_link] = STATE(956), - [aux_sym__inline_no_link] = STATE(441), - [sym__text_inline_no_link] = STATE(956), - [sym__emphasis_star_no_link] = STATE(957), - [sym__strong_emphasis_star_no_link] = STATE(956), - [sym__emphasis_underscore_no_link] = STATE(957), - [sym__strong_emphasis_underscore_no_link] = STATE(956), - [sym__code_span] = STATE(956), + [427] = { + [sym__soft_line_break] = STATE(963), + [sym_image] = STATE(963), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(890), + [sym_html_tag] = STATE(963), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(963), + [sym__whitespace] = STATE(963), + [sym__word] = STATE(963), + [sym__newline] = STATE(2141), + [sym__inline_element_no_link] = STATE(963), + [aux_sym__inline_no_link] = STATE(442), + [sym__text_inline_no_link] = STATE(963), + [sym__emphasis_star_no_link] = STATE(964), + [sym__strong_emphasis_star_no_link] = STATE(963), + [sym__emphasis_underscore_no_link] = STATE(964), + [sym__strong_emphasis_underscore_no_link] = STATE(963), + [sym__code_span] = STATE(963), [anon_sym_BANG] = ACTIONS(2208), [anon_sym_DQUOTE] = ACTIONS(2211), [anon_sym_POUND] = ACTIONS(2211), @@ -68831,7 +68758,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(2211), [anon_sym_QMARK] = ACTIONS(2211), [anon_sym_AT] = ACTIONS(2211), - [anon_sym_LBRACK] = ACTIONS(675), + [anon_sym_LBRACK] = ACTIONS(1042), [anon_sym_BSLASH] = ACTIONS(2220), [anon_sym_RBRACK] = ACTIONS(2223), [anon_sym_CARET] = ACTIONS(2211), @@ -68854,41 +68781,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__whitespace_token1] = ACTIONS(2244), [sym__word_no_digit] = ACTIONS(2238), [sym__digits] = ACTIONS(2238), - [aux_sym__newline_token1] = ACTIONS(41), + [aux_sym__newline_token1] = ACTIONS(1030), [sym__code_span_start] = ACTIONS(2247), [sym__emphasis_open_star] = ACTIONS(2250), [sym__emphasis_open_underscore] = ACTIONS(2253), - [sym__emphasis_close_underscore] = ACTIONS(675), + [sym__emphasis_close_star] = ACTIONS(1042), [sym__last_token_punctuation] = ACTIONS(2256), }, - [429] = { - [sym__soft_line_break] = STATE(956), - [sym_image] = STATE(956), - [sym__image_inline_link] = STATE(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(892), - [sym_html_tag] = STATE(956), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(956), - [sym__whitespace] = STATE(956), - [sym__word] = STATE(956), - [sym__newline] = STATE(2134), - [sym__inline_element_no_link] = STATE(956), - [aux_sym__inline_no_link] = STATE(441), - [sym__text_inline_no_link] = STATE(956), - [sym__emphasis_star_no_link] = STATE(957), - [sym__strong_emphasis_star_no_link] = STATE(956), - [sym__emphasis_underscore_no_link] = STATE(957), - [sym__strong_emphasis_underscore_no_link] = STATE(956), - [sym__code_span] = STATE(956), + [428] = { + [sym__soft_line_break] = STATE(963), + [sym_image] = STATE(963), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(890), + [sym_html_tag] = STATE(963), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(963), + [sym__whitespace] = STATE(963), + [sym__word] = STATE(963), + [sym__newline] = STATE(2141), + [sym__inline_element_no_link] = STATE(963), + [aux_sym__inline_no_link] = STATE(442), + [sym__text_inline_no_link] = STATE(963), + [sym__emphasis_star_no_link] = STATE(964), + [sym__strong_emphasis_star_no_link] = STATE(963), + [sym__emphasis_underscore_no_link] = STATE(964), + [sym__strong_emphasis_underscore_no_link] = STATE(963), + [sym__code_span] = STATE(963), [anon_sym_BANG] = ACTIONS(2208), [anon_sym_DQUOTE] = ACTIONS(2211), [anon_sym_POUND] = ACTIONS(2211), @@ -68911,7 +68838,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(2211), [anon_sym_QMARK] = ACTIONS(2211), [anon_sym_AT] = ACTIONS(2211), - [anon_sym_LBRACK] = ACTIONS(675), + [anon_sym_LBRACK] = ACTIONS(1042), [anon_sym_BSLASH] = ACTIONS(2220), [anon_sym_RBRACK] = ACTIONS(2223), [anon_sym_CARET] = ACTIONS(2211), @@ -68934,42 +68861,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__whitespace_token1] = ACTIONS(2244), [sym__word_no_digit] = ACTIONS(2238), [sym__digits] = ACTIONS(2238), - [aux_sym__newline_token1] = ACTIONS(663), + [aux_sym__newline_token1] = ACTIONS(41), [sym__code_span_start] = ACTIONS(2247), [sym__emphasis_open_star] = ACTIONS(2250), [sym__emphasis_open_underscore] = ACTIONS(2253), - [sym__emphasis_close_underscore] = ACTIONS(675), + [sym__emphasis_close_star] = ACTIONS(1042), [sym__last_token_punctuation] = ACTIONS(2256), }, - [430] = { - [sym__soft_line_break] = STATE(956), - [sym_image] = STATE(956), - [sym__image_inline_link] = STATE(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(892), - [sym_html_tag] = STATE(956), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(956), - [sym__whitespace] = STATE(994), - [sym__word] = STATE(994), + [429] = { + [sym__soft_line_break] = STATE(963), + [sym_image] = STATE(963), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(890), + [sym_html_tag] = STATE(963), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(963), + [sym__whitespace] = STATE(961), + [sym__word] = STATE(961), [sym__newline] = STATE(1035), - [sym__inline_element_no_link] = STATE(956), - [aux_sym__inline_no_link] = STATE(444), - [sym__text_inline_no_link] = STATE(994), - [sym__emphasis_star_no_link] = STATE(957), - [sym__strong_emphasis_star_no_link] = STATE(956), - [sym__emphasis_underscore_no_link] = STATE(957), - [sym__strong_emphasis_underscore_no_link] = STATE(956), - [sym__code_span] = STATE(956), - [aux_sym_link_label_repeat1] = STATE(880), + [sym__inline_element_no_link] = STATE(963), + [aux_sym__inline_no_link] = STATE(443), + [sym__text_inline_no_link] = STATE(961), + [sym__emphasis_star_no_link] = STATE(964), + [sym__strong_emphasis_star_no_link] = STATE(963), + [sym__emphasis_underscore_no_link] = STATE(964), + [sym__strong_emphasis_underscore_no_link] = STATE(963), + [sym__code_span] = STATE(963), + [aux_sym_link_label_repeat1] = STATE(832), [anon_sym_BANG] = ACTIONS(2258), [anon_sym_DQUOTE] = ACTIONS(2261), [anon_sym_POUND] = ACTIONS(2261), @@ -68992,7 +68919,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(2261), [anon_sym_QMARK] = ACTIONS(2261), [anon_sym_AT] = ACTIONS(2261), - [anon_sym_LBRACK] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1845), [anon_sym_BSLASH] = ACTIONS(2270), [anon_sym_RBRACK] = ACTIONS(2273), [anon_sym_CARET] = ACTIONS(2261), @@ -69021,34 +68948,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_underscore] = ACTIONS(2309), [sym__last_token_punctuation] = ACTIONS(2312), }, + [430] = { + [sym__soft_line_break] = STATE(963), + [sym_image] = STATE(963), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(890), + [sym_html_tag] = STATE(963), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(963), + [sym__whitespace] = STATE(963), + [sym__word] = STATE(963), + [sym__newline] = STATE(2141), + [sym__inline_element_no_link] = STATE(963), + [aux_sym__inline_no_link] = STATE(446), + [sym__text_inline_no_link] = STATE(963), + [sym__emphasis_star_no_link] = STATE(964), + [sym__strong_emphasis_star_no_link] = STATE(963), + [sym__emphasis_underscore_no_link] = STATE(964), + [sym__strong_emphasis_underscore_no_link] = STATE(963), + [sym__code_span] = STATE(963), + [anon_sym_BANG] = ACTIONS(2158), + [anon_sym_DQUOTE] = ACTIONS(2161), + [anon_sym_POUND] = ACTIONS(2161), + [anon_sym_DOLLAR] = ACTIONS(2161), + [anon_sym_PERCENT] = ACTIONS(2161), + [anon_sym_AMP] = ACTIONS(2164), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_LPAREN] = ACTIONS(2161), + [anon_sym_RPAREN] = ACTIONS(2161), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_PLUS] = ACTIONS(2161), + [anon_sym_COMMA] = ACTIONS(2161), + [anon_sym_DASH] = ACTIONS(2161), + [anon_sym_DOT] = ACTIONS(2161), + [anon_sym_SLASH] = ACTIONS(2161), + [anon_sym_COLON] = ACTIONS(2161), + [anon_sym_SEMI] = ACTIONS(2161), + [anon_sym_LT] = ACTIONS(2167), + [anon_sym_EQ] = ACTIONS(2161), + [anon_sym_GT] = ACTIONS(2161), + [anon_sym_QMARK] = ACTIONS(2161), + [anon_sym_AT] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_BSLASH] = ACTIONS(2170), + [anon_sym_RBRACK] = ACTIONS(2173), + [anon_sym_CARET] = ACTIONS(2161), + [anon_sym__] = ACTIONS(2161), + [anon_sym_BQUOTE] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(2161), + [anon_sym_PIPE] = ACTIONS(2161), + [anon_sym_RBRACE] = ACTIONS(2161), + [anon_sym_TILDE] = ACTIONS(2161), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2176), + [anon_sym_LT_QMARK] = ACTIONS(2179), + [aux_sym__html_block_4_token1] = ACTIONS(2182), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2185), + [sym_backslash_escape] = ACTIONS(2188), + [sym_entity_reference] = ACTIONS(2188), + [sym_numeric_character_reference] = ACTIONS(2188), + [sym_uri_autolink] = ACTIONS(2188), + [sym_email_autolink] = ACTIONS(2188), + [sym__whitespace_ge_2] = ACTIONS(2191), + [aux_sym__whitespace_token1] = ACTIONS(2194), + [sym__word_no_digit] = ACTIONS(2188), + [sym__digits] = ACTIONS(2188), + [aux_sym__newline_token1] = ACTIONS(682), + [sym__code_span_start] = ACTIONS(2197), + [sym__emphasis_open_star] = ACTIONS(2200), + [sym__emphasis_open_underscore] = ACTIONS(2203), + [sym__emphasis_close_underscore] = ACTIONS(694), + [sym__last_token_punctuation] = ACTIONS(2206), + }, [431] = { - [sym__soft_line_break] = STATE(956), - [sym_image] = STATE(956), - [sym__image_inline_link] = STATE(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(892), - [sym_html_tag] = STATE(956), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(956), - [sym__whitespace] = STATE(956), - [sym__word] = STATE(956), - [sym__newline] = STATE(2134), - [sym__inline_element_no_link] = STATE(956), - [aux_sym__inline_no_link] = STATE(444), - [sym__text_inline_no_link] = STATE(956), - [sym__emphasis_star_no_link] = STATE(957), - [sym__strong_emphasis_star_no_link] = STATE(956), - [sym__emphasis_underscore_no_link] = STATE(957), - [sym__strong_emphasis_underscore_no_link] = STATE(956), - [sym__code_span] = STATE(956), + [sym__soft_line_break] = STATE(963), + [sym_image] = STATE(963), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(890), + [sym_html_tag] = STATE(963), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(963), + [sym__whitespace] = STATE(963), + [sym__word] = STATE(963), + [sym__newline] = STATE(2141), + [sym__inline_element_no_link] = STATE(963), + [aux_sym__inline_no_link] = STATE(443), + [sym__text_inline_no_link] = STATE(963), + [sym__emphasis_star_no_link] = STATE(964), + [sym__strong_emphasis_star_no_link] = STATE(963), + [sym__emphasis_underscore_no_link] = STATE(964), + [sym__strong_emphasis_underscore_no_link] = STATE(963), + [sym__code_span] = STATE(963), [anon_sym_BANG] = ACTIONS(2258), [anon_sym_DQUOTE] = ACTIONS(2261), [anon_sym_POUND] = ACTIONS(2261), @@ -69071,7 +69078,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(2261), [anon_sym_QMARK] = ACTIONS(2261), [anon_sym_AT] = ACTIONS(2261), - [anon_sym_LBRACK] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1845), [anon_sym_BSLASH] = ACTIONS(2270), [anon_sym_RBRACK] = ACTIONS(2273), [anon_sym_CARET] = ACTIONS(2261), @@ -69094,25 +69101,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__whitespace_token1] = ACTIONS(2297), [sym__word_no_digit] = ACTIONS(2291), [sym__digits] = ACTIONS(2291), - [aux_sym__newline_token1] = ACTIONS(1540), + [aux_sym__newline_token1] = ACTIONS(1467), [sym__code_span_start] = ACTIONS(2303), [sym__emphasis_open_star] = ACTIONS(2306), [sym__emphasis_open_underscore] = ACTIONS(2309), [sym__last_token_punctuation] = ACTIONS(2312), }, [432] = { - [sym__block_interrupt_paragraph] = STATE(1738), - [sym_thematic_break] = STATE(1738), - [sym_atx_heading] = STATE(1738), - [sym_fenced_code_block] = STATE(1738), - [sym__html_block_1] = STATE(1738), - [sym__html_block_2] = STATE(1738), - [sym__html_block_3] = STATE(1738), - [sym__html_block_4] = STATE(1738), - [sym__html_block_5] = STATE(1738), - [sym__html_block_6] = STATE(1738), - [sym__blank_line] = STATE(1738), - [sym_block_quote] = STATE(1738), + [sym__block_interrupt_paragraph] = STATE(1735), + [sym_thematic_break] = STATE(1735), + [sym_atx_heading] = STATE(1735), + [sym_fenced_code_block] = STATE(1735), + [sym__html_block_1] = STATE(1735), + [sym__html_block_2] = STATE(1735), + [sym__html_block_3] = STATE(1735), + [sym__html_block_4] = STATE(1735), + [sym__html_block_5] = STATE(1735), + [sym__html_block_6] = STATE(1735), + [sym__blank_line] = STATE(1735), + [sym_block_quote] = STATE(1735), [anon_sym_BANG] = ACTIONS(415), [anon_sym_DQUOTE] = ACTIONS(415), [anon_sym_POUND] = ACTIONS(415), @@ -69180,50 +69187,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_close] = ACTIONS(415), }, [433] = { - [sym__block_interrupt_paragraph] = STATE(1732), - [sym_thematic_break] = STATE(1732), - [sym_atx_heading] = STATE(1732), - [sym_fenced_code_block] = STATE(1732), - [sym__html_block_1] = STATE(1732), - [sym__html_block_2] = STATE(1732), - [sym__html_block_3] = STATE(1732), - [sym__html_block_4] = STATE(1732), - [sym__html_block_5] = STATE(1732), - [sym__html_block_6] = STATE(1732), - [sym__blank_line] = STATE(1732), - [sym_block_quote] = STATE(1732), - [anon_sym_BANG] = ACTIONS(495), - [anon_sym_DQUOTE] = ACTIONS(495), - [anon_sym_POUND] = ACTIONS(495), - [anon_sym_DOLLAR] = ACTIONS(495), - [anon_sym_PERCENT] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(495), - [anon_sym_SQUOTE] = ACTIONS(495), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_RPAREN] = ACTIONS(495), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(495), - [anon_sym_COMMA] = ACTIONS(495), - [anon_sym_DASH] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(495), - [anon_sym_SLASH] = ACTIONS(495), - [anon_sym_COLON] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(495), - [anon_sym_LT] = ACTIONS(497), - [anon_sym_EQ] = ACTIONS(495), - [anon_sym_GT] = ACTIONS(495), - [anon_sym_QMARK] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(495), - [anon_sym_BSLASH] = ACTIONS(495), - [anon_sym_RBRACK] = ACTIONS(495), - [anon_sym_CARET] = ACTIONS(495), - [anon_sym__] = ACTIONS(495), - [anon_sym_BQUOTE] = ACTIONS(495), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_PIPE] = ACTIONS(495), - [anon_sym_RBRACE] = ACTIONS(495), - [anon_sym_TILDE] = ACTIONS(495), + [sym__block_interrupt_paragraph] = STATE(1734), + [sym_thematic_break] = STATE(1734), + [sym_atx_heading] = 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), + [sym__blank_line] = STATE(1734), + [sym_block_quote] = STATE(1734), + [anon_sym_BANG] = ACTIONS(465), + [anon_sym_DQUOTE] = ACTIONS(465), + [anon_sym_POUND] = ACTIONS(465), + [anon_sym_DOLLAR] = ACTIONS(465), + [anon_sym_PERCENT] = ACTIONS(465), + [anon_sym_AMP] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(465), + [anon_sym_STAR] = ACTIONS(465), + [anon_sym_PLUS] = ACTIONS(465), + [anon_sym_COMMA] = ACTIONS(465), + [anon_sym_DASH] = ACTIONS(465), + [anon_sym_DOT] = ACTIONS(465), + [anon_sym_SLASH] = ACTIONS(465), + [anon_sym_COLON] = ACTIONS(465), + [anon_sym_SEMI] = ACTIONS(465), + [anon_sym_LT] = ACTIONS(467), + [anon_sym_EQ] = ACTIONS(465), + [anon_sym_GT] = ACTIONS(465), + [anon_sym_QMARK] = ACTIONS(465), + [anon_sym_AT] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_BSLASH] = ACTIONS(465), + [anon_sym_RBRACK] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(465), + [anon_sym__] = ACTIONS(465), + [anon_sym_BQUOTE] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(465), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_RBRACE] = ACTIONS(465), + [anon_sym_TILDE] = ACTIONS(465), [aux_sym__html_block_1_token1] = ACTIONS(2314), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2316), [anon_sym_LT_QMARK] = ACTIONS(2318), @@ -69231,11 +69238,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2322), [aux_sym__html_block_6_token1] = ACTIONS(2324), [aux_sym__html_block_6_token2] = ACTIONS(2326), - [sym__whitespace_ge_2] = ACTIONS(495), - [aux_sym__whitespace_token1] = ACTIONS(497), - [sym__word_no_digit] = ACTIONS(495), - [sym__digits] = ACTIONS(495), - [aux_sym__newline_token1] = ACTIONS(495), + [sym__whitespace_ge_2] = ACTIONS(465), + [aux_sym__whitespace_token1] = ACTIONS(467), + [sym__word_no_digit] = ACTIONS(465), + [sym__digits] = ACTIONS(465), + [aux_sym__newline_token1] = ACTIONS(465), [sym__block_quote_start] = ACTIONS(2328), [sym_atx_h1_marker] = ACTIONS(2330), [sym_atx_h2_marker] = ACTIONS(2330), @@ -69256,53 +69263,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line_start] = ACTIONS(2340), [sym__split_token] = ACTIONS(447), [sym__soft_line_break_marker] = ACTIONS(447), - [sym__code_span_close] = ACTIONS(495), + [sym__code_span_close] = ACTIONS(465), }, [434] = { - [sym__block_interrupt_paragraph] = STATE(1752), - [sym_thematic_break] = STATE(1752), - [sym_atx_heading] = STATE(1752), - [sym_fenced_code_block] = STATE(1752), - [sym__html_block_1] = STATE(1752), - [sym__html_block_2] = STATE(1752), - [sym__html_block_3] = STATE(1752), - [sym__html_block_4] = STATE(1752), - [sym__html_block_5] = STATE(1752), - [sym__html_block_6] = STATE(1752), - [sym__blank_line] = STATE(1752), - [sym_block_quote] = STATE(1752), - [anon_sym_BANG] = ACTIONS(495), - [anon_sym_DQUOTE] = ACTIONS(495), - [anon_sym_POUND] = ACTIONS(495), - [anon_sym_DOLLAR] = ACTIONS(495), - [anon_sym_PERCENT] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(495), - [anon_sym_SQUOTE] = ACTIONS(495), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_RPAREN] = ACTIONS(495), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(495), - [anon_sym_COMMA] = ACTIONS(495), - [anon_sym_DASH] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(495), - [anon_sym_SLASH] = ACTIONS(495), - [anon_sym_COLON] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(495), - [anon_sym_LT] = ACTIONS(497), - [anon_sym_EQ] = ACTIONS(495), - [anon_sym_GT] = ACTIONS(495), - [anon_sym_QMARK] = ACTIONS(495), - [anon_sym_AT] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(495), - [anon_sym_BSLASH] = ACTIONS(495), - [anon_sym_RBRACK] = ACTIONS(495), - [anon_sym_CARET] = ACTIONS(495), - [anon_sym__] = ACTIONS(495), - [anon_sym_BQUOTE] = ACTIONS(495), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_PIPE] = ACTIONS(495), - [anon_sym_RBRACE] = ACTIONS(495), - [anon_sym_TILDE] = ACTIONS(495), + [sym__block_interrupt_paragraph] = STATE(1749), + [sym_thematic_break] = STATE(1749), + [sym_atx_heading] = STATE(1749), + [sym_fenced_code_block] = STATE(1749), + [sym__html_block_1] = STATE(1749), + [sym__html_block_2] = STATE(1749), + [sym__html_block_3] = STATE(1749), + [sym__html_block_4] = STATE(1749), + [sym__html_block_5] = STATE(1749), + [sym__html_block_6] = STATE(1749), + [sym__blank_line] = STATE(1749), + [sym_block_quote] = STATE(1749), + [anon_sym_BANG] = ACTIONS(465), + [anon_sym_DQUOTE] = ACTIONS(465), + [anon_sym_POUND] = ACTIONS(465), + [anon_sym_DOLLAR] = ACTIONS(465), + [anon_sym_PERCENT] = ACTIONS(465), + [anon_sym_AMP] = ACTIONS(465), + [anon_sym_SQUOTE] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(465), + [anon_sym_RPAREN] = ACTIONS(465), + [anon_sym_STAR] = ACTIONS(465), + [anon_sym_PLUS] = ACTIONS(465), + [anon_sym_COMMA] = ACTIONS(465), + [anon_sym_DASH] = ACTIONS(465), + [anon_sym_DOT] = ACTIONS(465), + [anon_sym_SLASH] = ACTIONS(465), + [anon_sym_COLON] = ACTIONS(465), + [anon_sym_SEMI] = ACTIONS(465), + [anon_sym_LT] = ACTIONS(467), + [anon_sym_EQ] = ACTIONS(465), + [anon_sym_GT] = ACTIONS(465), + [anon_sym_QMARK] = ACTIONS(465), + [anon_sym_AT] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_BSLASH] = ACTIONS(465), + [anon_sym_RBRACK] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(465), + [anon_sym__] = ACTIONS(465), + [anon_sym_BQUOTE] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(465), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_RBRACE] = ACTIONS(465), + [anon_sym_TILDE] = ACTIONS(465), [aux_sym__html_block_1_token1] = ACTIONS(2344), [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2346), [anon_sym_LT_QMARK] = ACTIONS(2348), @@ -69310,11 +69317,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2352), [aux_sym__html_block_6_token1] = ACTIONS(2354), [aux_sym__html_block_6_token2] = ACTIONS(2356), - [sym__whitespace_ge_2] = ACTIONS(495), - [aux_sym__whitespace_token1] = ACTIONS(497), - [sym__word_no_digit] = ACTIONS(495), - [sym__digits] = ACTIONS(495), - [aux_sym__newline_token1] = ACTIONS(495), + [sym__whitespace_ge_2] = ACTIONS(465), + [aux_sym__whitespace_token1] = ACTIONS(467), + [sym__word_no_digit] = ACTIONS(465), + [sym__digits] = ACTIONS(465), + [aux_sym__newline_token1] = ACTIONS(465), [sym__block_quote_start] = ACTIONS(2358), [sym_atx_h1_marker] = ACTIONS(2360), [sym_atx_h2_marker] = ACTIONS(2360), @@ -69337,18 +69344,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__soft_line_break_marker] = ACTIONS(447), }, [435] = { - [sym__block_interrupt_paragraph] = STATE(1749), - [sym_thematic_break] = STATE(1749), - [sym_atx_heading] = STATE(1749), - [sym_fenced_code_block] = STATE(1749), - [sym__html_block_1] = STATE(1749), - [sym__html_block_2] = STATE(1749), - [sym__html_block_3] = STATE(1749), - [sym__html_block_4] = STATE(1749), - [sym__html_block_5] = STATE(1749), - [sym__html_block_6] = STATE(1749), - [sym__blank_line] = STATE(1749), - [sym_block_quote] = STATE(1749), + [sym__block_interrupt_paragraph] = STATE(1754), + [sym_thematic_break] = STATE(1754), + [sym_atx_heading] = STATE(1754), + [sym_fenced_code_block] = STATE(1754), + [sym__html_block_1] = STATE(1754), + [sym__html_block_2] = STATE(1754), + [sym__html_block_3] = STATE(1754), + [sym__html_block_4] = STATE(1754), + [sym__html_block_5] = STATE(1754), + [sym__html_block_6] = STATE(1754), + [sym__blank_line] = STATE(1754), + [sym_block_quote] = STATE(1754), [anon_sym_BANG] = ACTIONS(415), [anon_sym_DQUOTE] = ACTIONS(415), [anon_sym_POUND] = ACTIONS(415), @@ -69415,33 +69422,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__soft_line_break_marker] = ACTIONS(447), }, [436] = { - [sym__soft_line_break] = STATE(436), - [sym_image] = STATE(436), - [sym__image_inline_link] = STATE(801), - [sym__image_shortcut_link] = STATE(801), - [sym__image_full_reference_link] = STATE(801), - [sym__image_collapsed_reference_link] = STATE(801), - [sym__image_description] = STATE(2122), - [sym__image_description_non_empty] = STATE(859), - [sym_html_tag] = STATE(436), - [sym__open_tag] = STATE(683), - [sym__closing_tag] = STATE(683), - [sym__html_comment] = STATE(683), - [sym__processing_instruction] = STATE(683), - [sym__declaration] = STATE(683), - [sym__cdata_section] = STATE(683), - [sym_hard_line_break] = STATE(436), - [sym__whitespace] = STATE(436), - [sym__word] = STATE(436), - [sym__newline] = STATE(2123), - [sym__inline_element_no_underscore_no_link] = STATE(436), - [aux_sym__inline_no_underscore_no_link] = STATE(436), - [sym__text_inline_no_underscore_no_link] = STATE(436), - [sym__emphasis_star_no_link] = STATE(999), - [sym__strong_emphasis_star_no_link] = STATE(436), - [sym__emphasis_underscore_no_link] = STATE(999), - [sym__strong_emphasis_underscore_no_link] = STATE(436), - [sym__code_span] = STATE(436), + [sym__soft_line_break] = STATE(448), + [sym_image] = STATE(448), + [sym__image_inline_link] = STATE(663), + [sym__image_shortcut_link] = STATE(663), + [sym__image_full_reference_link] = STATE(663), + [sym__image_collapsed_reference_link] = STATE(663), + [sym__image_description] = STATE(2134), + [sym__image_description_non_empty] = STATE(843), + [sym_html_tag] = STATE(448), + [sym__open_tag] = STATE(702), + [sym__closing_tag] = STATE(702), + [sym__html_comment] = STATE(702), + [sym__processing_instruction] = STATE(702), + [sym__declaration] = STATE(702), + [sym__cdata_section] = STATE(702), + [sym_hard_line_break] = STATE(448), + [sym__whitespace] = STATE(448), + [sym__word] = STATE(448), + [sym__newline] = STATE(2143), + [sym__inline_element_no_underscore_no_link] = STATE(448), + [aux_sym__inline_no_underscore_no_link] = STATE(448), + [sym__text_inline_no_underscore_no_link] = STATE(448), + [sym__emphasis_star_no_link] = STATE(1005), + [sym__strong_emphasis_star_no_link] = STATE(448), + [sym__emphasis_underscore_no_link] = STATE(1006), + [sym__strong_emphasis_underscore_no_link] = STATE(448), + [sym__code_span] = STATE(448), [anon_sym_BANG] = ACTIONS(2374), [anon_sym_DQUOTE] = ACTIONS(2377), [anon_sym_POUND] = ACTIONS(2377), @@ -69465,6 +69472,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(2377), [anon_sym_AT] = ACTIONS(2377), [anon_sym_BSLASH] = ACTIONS(2386), + [anon_sym_RBRACK] = ACTIONS(2389), [anon_sym_CARET] = ACTIONS(2377), [anon_sym__] = ACTIONS(2377), [anon_sym_BQUOTE] = ACTIONS(2377), @@ -69472,1131 +69480,1130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(2377), [anon_sym_RBRACE] = ACTIONS(2377), [anon_sym_TILDE] = ACTIONS(2377), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2389), - [anon_sym_LT_QMARK] = ACTIONS(2392), - [aux_sym__html_block_4_token1] = ACTIONS(2395), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2398), - [sym_backslash_escape] = ACTIONS(2401), - [sym_entity_reference] = ACTIONS(2401), - [sym_numeric_character_reference] = ACTIONS(2401), - [sym_uri_autolink] = ACTIONS(2401), - [sym_email_autolink] = ACTIONS(2401), - [sym__whitespace_ge_2] = ACTIONS(2404), - [aux_sym__whitespace_token1] = ACTIONS(2407), - [sym__word_no_digit] = ACTIONS(2401), - [sym__digits] = ACTIONS(2401), - [aux_sym__newline_token1] = ACTIONS(2410), - [sym__code_span_start] = ACTIONS(2413), - [sym__emphasis_open_star] = ACTIONS(2416), - [sym__emphasis_open_underscore] = ACTIONS(2419), - [sym__emphasis_close_underscore] = ACTIONS(2422), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2391), + [anon_sym_LT_QMARK] = ACTIONS(2394), + [aux_sym__html_block_4_token1] = ACTIONS(2397), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2400), + [sym_backslash_escape] = ACTIONS(2403), + [sym_entity_reference] = ACTIONS(2403), + [sym_numeric_character_reference] = ACTIONS(2403), + [sym_uri_autolink] = ACTIONS(2403), + [sym_email_autolink] = ACTIONS(2403), + [sym__whitespace_ge_2] = ACTIONS(2406), + [aux_sym__whitespace_token1] = ACTIONS(2409), + [sym__word_no_digit] = ACTIONS(2403), + [sym__digits] = ACTIONS(2403), + [aux_sym__newline_token1] = ACTIONS(2412), + [sym__code_span_start] = ACTIONS(2415), + [sym__emphasis_open_star] = ACTIONS(2418), + [sym__emphasis_open_underscore] = ACTIONS(2421), }, [437] = { - [sym__soft_line_break] = STATE(447), - [sym_image] = STATE(447), - [sym__image_inline_link] = STATE(708), - [sym__image_shortcut_link] = STATE(708), - [sym__image_full_reference_link] = STATE(708), - [sym__image_collapsed_reference_link] = STATE(708), - [sym__image_description] = STATE(2137), - [sym__image_description_non_empty] = STATE(847), - [sym_html_tag] = STATE(447), - [sym__open_tag] = STATE(710), - [sym__closing_tag] = STATE(710), - [sym__html_comment] = STATE(710), - [sym__processing_instruction] = STATE(710), - [sym__declaration] = STATE(710), - [sym__cdata_section] = STATE(710), - [sym_hard_line_break] = STATE(447), - [sym__whitespace] = STATE(447), - [sym__word] = STATE(447), - [sym__newline] = STATE(2120), - [sym__inline_element_no_star_no_link] = STATE(447), - [aux_sym__inline_no_star_no_link] = STATE(447), - [sym__text_inline_no_star_no_link] = STATE(447), - [sym__emphasis_star_no_link] = STATE(998), - [sym__strong_emphasis_star_no_link] = STATE(447), - [sym__emphasis_underscore_no_link] = STATE(998), - [sym__strong_emphasis_underscore_no_link] = STATE(447), - [sym__code_span] = STATE(447), + [sym__soft_line_break] = STATE(437), + [sym_image] = STATE(437), + [sym__image_inline_link] = STATE(663), + [sym__image_shortcut_link] = STATE(663), + [sym__image_full_reference_link] = STATE(663), + [sym__image_collapsed_reference_link] = STATE(663), + [sym__image_description] = STATE(2134), + [sym__image_description_non_empty] = STATE(843), + [sym_html_tag] = STATE(437), + [sym__open_tag] = STATE(702), + [sym__closing_tag] = STATE(702), + [sym__html_comment] = STATE(702), + [sym__processing_instruction] = STATE(702), + [sym__declaration] = STATE(702), + [sym__cdata_section] = STATE(702), + [sym_hard_line_break] = STATE(437), + [sym__whitespace] = STATE(437), + [sym__word] = STATE(437), + [sym__newline] = STATE(2143), + [sym__inline_element_no_underscore_no_link] = STATE(437), + [aux_sym__inline_no_underscore_no_link] = STATE(437), + [sym__text_inline_no_underscore_no_link] = STATE(437), + [sym__emphasis_star_no_link] = STATE(1005), + [sym__strong_emphasis_star_no_link] = STATE(437), + [sym__emphasis_underscore_no_link] = STATE(1005), + [sym__strong_emphasis_underscore_no_link] = STATE(437), + [sym__code_span] = STATE(437), [anon_sym_BANG] = ACTIONS(2424), - [anon_sym_DQUOTE] = ACTIONS(2426), - [anon_sym_POUND] = ACTIONS(2426), - [anon_sym_DOLLAR] = ACTIONS(2426), - [anon_sym_PERCENT] = ACTIONS(2426), - [anon_sym_AMP] = ACTIONS(2428), - [anon_sym_SQUOTE] = ACTIONS(2426), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_RPAREN] = ACTIONS(2426), - [anon_sym_STAR] = ACTIONS(2426), - [anon_sym_PLUS] = ACTIONS(2426), - [anon_sym_COMMA] = ACTIONS(2426), - [anon_sym_DASH] = ACTIONS(2426), - [anon_sym_DOT] = ACTIONS(2426), - [anon_sym_SLASH] = ACTIONS(2426), - [anon_sym_COLON] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(2426), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_EQ] = ACTIONS(2426), - [anon_sym_GT] = ACTIONS(2426), - [anon_sym_QMARK] = ACTIONS(2426), - [anon_sym_AT] = ACTIONS(2426), - [anon_sym_BSLASH] = ACTIONS(2432), - [anon_sym_CARET] = ACTIONS(2426), - [anon_sym__] = ACTIONS(2426), - [anon_sym_BQUOTE] = ACTIONS(2426), - [anon_sym_LBRACE] = ACTIONS(2426), - [anon_sym_PIPE] = ACTIONS(2426), - [anon_sym_RBRACE] = ACTIONS(2426), - [anon_sym_TILDE] = ACTIONS(2426), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2434), - [anon_sym_LT_QMARK] = ACTIONS(2436), - [aux_sym__html_block_4_token1] = ACTIONS(2438), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2440), - [sym_backslash_escape] = ACTIONS(2442), - [sym_entity_reference] = ACTIONS(2442), - [sym_numeric_character_reference] = ACTIONS(2442), - [sym_uri_autolink] = ACTIONS(2442), - [sym_email_autolink] = ACTIONS(2442), - [sym__whitespace_ge_2] = ACTIONS(600), - [aux_sym__whitespace_token1] = ACTIONS(602), - [sym__word_no_digit] = ACTIONS(2442), - [sym__digits] = ACTIONS(2442), - [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(2444), - [sym__emphasis_open_star] = ACTIONS(2446), - [sym__emphasis_open_underscore] = ACTIONS(2448), - [sym__emphasis_close_star] = ACTIONS(2450), + [anon_sym_DQUOTE] = ACTIONS(2427), + [anon_sym_POUND] = ACTIONS(2427), + [anon_sym_DOLLAR] = ACTIONS(2427), + [anon_sym_PERCENT] = ACTIONS(2427), + [anon_sym_AMP] = ACTIONS(2430), + [anon_sym_SQUOTE] = ACTIONS(2427), + [anon_sym_LPAREN] = ACTIONS(2427), + [anon_sym_RPAREN] = ACTIONS(2427), + [anon_sym_STAR] = ACTIONS(2427), + [anon_sym_PLUS] = ACTIONS(2427), + [anon_sym_COMMA] = ACTIONS(2427), + [anon_sym_DASH] = ACTIONS(2427), + [anon_sym_DOT] = ACTIONS(2427), + [anon_sym_SLASH] = ACTIONS(2427), + [anon_sym_COLON] = ACTIONS(2427), + [anon_sym_SEMI] = ACTIONS(2427), + [anon_sym_LT] = ACTIONS(2433), + [anon_sym_EQ] = ACTIONS(2427), + [anon_sym_GT] = ACTIONS(2427), + [anon_sym_QMARK] = ACTIONS(2427), + [anon_sym_AT] = ACTIONS(2427), + [anon_sym_BSLASH] = ACTIONS(2436), + [anon_sym_CARET] = ACTIONS(2427), + [anon_sym__] = ACTIONS(2427), + [anon_sym_BQUOTE] = ACTIONS(2427), + [anon_sym_LBRACE] = ACTIONS(2427), + [anon_sym_PIPE] = ACTIONS(2427), + [anon_sym_RBRACE] = ACTIONS(2427), + [anon_sym_TILDE] = ACTIONS(2427), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2439), + [anon_sym_LT_QMARK] = ACTIONS(2442), + [aux_sym__html_block_4_token1] = ACTIONS(2445), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2448), + [sym_backslash_escape] = ACTIONS(2451), + [sym_entity_reference] = ACTIONS(2451), + [sym_numeric_character_reference] = ACTIONS(2451), + [sym_uri_autolink] = ACTIONS(2451), + [sym_email_autolink] = ACTIONS(2451), + [sym__whitespace_ge_2] = ACTIONS(2454), + [aux_sym__whitespace_token1] = ACTIONS(2457), + [sym__word_no_digit] = ACTIONS(2451), + [sym__digits] = ACTIONS(2451), + [aux_sym__newline_token1] = ACTIONS(2460), + [sym__code_span_start] = ACTIONS(2463), + [sym__emphasis_open_star] = ACTIONS(2466), + [sym__emphasis_open_underscore] = ACTIONS(2469), + [sym__emphasis_close_underscore] = ACTIONS(2472), }, [438] = { - [sym__soft_line_break] = STATE(436), - [sym_image] = STATE(436), - [sym__image_inline_link] = STATE(801), - [sym__image_shortcut_link] = STATE(801), - [sym__image_full_reference_link] = STATE(801), - [sym__image_collapsed_reference_link] = STATE(801), - [sym__image_description] = STATE(2122), - [sym__image_description_non_empty] = STATE(859), - [sym_html_tag] = STATE(436), - [sym__open_tag] = STATE(683), - [sym__closing_tag] = STATE(683), - [sym__html_comment] = STATE(683), - [sym__processing_instruction] = STATE(683), - [sym__declaration] = STATE(683), - [sym__cdata_section] = STATE(683), - [sym_hard_line_break] = STATE(436), - [sym__whitespace] = STATE(436), - [sym__word] = STATE(436), - [sym__newline] = STATE(2123), - [sym__inline_element_no_underscore_no_link] = STATE(436), - [aux_sym__inline_no_underscore_no_link] = STATE(436), - [sym__text_inline_no_underscore_no_link] = STATE(436), - [sym__emphasis_star_no_link] = STATE(999), - [sym__strong_emphasis_star_no_link] = STATE(436), - [sym__emphasis_underscore_no_link] = STATE(999), - [sym__strong_emphasis_underscore_no_link] = STATE(436), - [sym__code_span] = STATE(436), - [anon_sym_BANG] = ACTIONS(2452), - [anon_sym_DQUOTE] = ACTIONS(2454), - [anon_sym_POUND] = ACTIONS(2454), - [anon_sym_DOLLAR] = ACTIONS(2454), - [anon_sym_PERCENT] = ACTIONS(2454), - [anon_sym_AMP] = ACTIONS(2456), - [anon_sym_SQUOTE] = ACTIONS(2454), - [anon_sym_LPAREN] = ACTIONS(2454), - [anon_sym_RPAREN] = ACTIONS(2454), - [anon_sym_STAR] = ACTIONS(2454), - [anon_sym_PLUS] = ACTIONS(2454), - [anon_sym_COMMA] = ACTIONS(2454), - [anon_sym_DASH] = ACTIONS(2454), - [anon_sym_DOT] = ACTIONS(2454), - [anon_sym_SLASH] = ACTIONS(2454), - [anon_sym_COLON] = ACTIONS(2454), - [anon_sym_SEMI] = ACTIONS(2454), - [anon_sym_LT] = ACTIONS(2458), - [anon_sym_EQ] = ACTIONS(2454), - [anon_sym_GT] = ACTIONS(2454), - [anon_sym_QMARK] = ACTIONS(2454), - [anon_sym_AT] = ACTIONS(2454), - [anon_sym_BSLASH] = ACTIONS(2460), - [anon_sym_CARET] = ACTIONS(2454), - [anon_sym__] = ACTIONS(2454), - [anon_sym_BQUOTE] = ACTIONS(2454), - [anon_sym_LBRACE] = ACTIONS(2454), - [anon_sym_PIPE] = ACTIONS(2454), - [anon_sym_RBRACE] = ACTIONS(2454), - [anon_sym_TILDE] = ACTIONS(2454), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2462), - [anon_sym_LT_QMARK] = ACTIONS(2464), - [aux_sym__html_block_4_token1] = ACTIONS(2466), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2468), - [sym_backslash_escape] = ACTIONS(2470), - [sym_entity_reference] = ACTIONS(2470), - [sym_numeric_character_reference] = ACTIONS(2470), - [sym_uri_autolink] = ACTIONS(2470), - [sym_email_autolink] = ACTIONS(2470), - [sym__whitespace_ge_2] = ACTIONS(733), - [aux_sym__whitespace_token1] = ACTIONS(735), - [sym__word_no_digit] = ACTIONS(2470), - [sym__digits] = ACTIONS(2470), + [sym__soft_line_break] = STATE(444), + [sym_image] = STATE(444), + [sym__image_inline_link] = STATE(713), + [sym__image_shortcut_link] = STATE(713), + [sym__image_full_reference_link] = STATE(713), + [sym__image_collapsed_reference_link] = STATE(713), + [sym__image_description] = STATE(2120), + [sym__image_description_non_empty] = STATE(870), + [sym_html_tag] = STATE(444), + [sym__open_tag] = STATE(715), + [sym__closing_tag] = STATE(715), + [sym__html_comment] = STATE(715), + [sym__processing_instruction] = STATE(715), + [sym__declaration] = STATE(715), + [sym__cdata_section] = STATE(715), + [sym_hard_line_break] = STATE(444), + [sym__whitespace] = STATE(444), + [sym__word] = STATE(444), + [sym__newline] = STATE(2144), + [sym__inline_element_no_star_no_link] = STATE(444), + [aux_sym__inline_no_star_no_link] = STATE(444), + [sym__text_inline_no_star_no_link] = STATE(444), + [sym__emphasis_star_no_link] = STATE(1003), + [sym__strong_emphasis_star_no_link] = STATE(444), + [sym__emphasis_underscore_no_link] = STATE(1003), + [sym__strong_emphasis_underscore_no_link] = STATE(444), + [sym__code_span] = STATE(444), + [anon_sym_BANG] = ACTIONS(2474), + [anon_sym_DQUOTE] = ACTIONS(2476), + [anon_sym_POUND] = ACTIONS(2476), + [anon_sym_DOLLAR] = ACTIONS(2476), + [anon_sym_PERCENT] = ACTIONS(2476), + [anon_sym_AMP] = ACTIONS(2478), + [anon_sym_SQUOTE] = ACTIONS(2476), + [anon_sym_LPAREN] = ACTIONS(2476), + [anon_sym_RPAREN] = ACTIONS(2476), + [anon_sym_STAR] = ACTIONS(2476), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_COMMA] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_DOT] = ACTIONS(2476), + [anon_sym_SLASH] = ACTIONS(2476), + [anon_sym_COLON] = ACTIONS(2476), + [anon_sym_SEMI] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2480), + [anon_sym_EQ] = ACTIONS(2476), + [anon_sym_GT] = ACTIONS(2476), + [anon_sym_QMARK] = ACTIONS(2476), + [anon_sym_AT] = ACTIONS(2476), + [anon_sym_BSLASH] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2476), + [anon_sym__] = ACTIONS(2476), + [anon_sym_BQUOTE] = ACTIONS(2476), + [anon_sym_LBRACE] = ACTIONS(2476), + [anon_sym_PIPE] = ACTIONS(2476), + [anon_sym_RBRACE] = ACTIONS(2476), + [anon_sym_TILDE] = ACTIONS(2476), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2484), + [anon_sym_LT_QMARK] = ACTIONS(2486), + [aux_sym__html_block_4_token1] = ACTIONS(2488), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2490), + [sym_backslash_escape] = ACTIONS(2492), + [sym_entity_reference] = ACTIONS(2492), + [sym_numeric_character_reference] = ACTIONS(2492), + [sym_uri_autolink] = ACTIONS(2492), + [sym_email_autolink] = ACTIONS(2492), + [sym__whitespace_ge_2] = ACTIONS(619), + [aux_sym__whitespace_token1] = ACTIONS(621), + [sym__word_no_digit] = ACTIONS(2492), + [sym__digits] = ACTIONS(2492), [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(2472), - [sym__emphasis_open_star] = ACTIONS(2474), - [sym__emphasis_open_underscore] = ACTIONS(2476), - [sym__emphasis_close_underscore] = ACTIONS(2478), + [sym__code_span_start] = ACTIONS(2494), + [sym__emphasis_open_star] = ACTIONS(2496), + [sym__emphasis_open_underscore] = ACTIONS(2498), + [sym__emphasis_close_star] = ACTIONS(2500), }, [439] = { - [sym__soft_line_break] = STATE(956), - [sym_image] = STATE(956), - [sym__image_inline_link] = STATE(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(892), - [sym_html_tag] = STATE(956), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(956), - [sym__whitespace] = STATE(956), - [sym__word] = STATE(956), - [sym__newline] = STATE(2134), - [sym__inline_element_no_link] = STATE(956), - [aux_sym__inline_no_link] = STATE(448), - [sym__text_inline_no_link] = STATE(956), - [sym__emphasis_star_no_link] = STATE(957), - [sym__strong_emphasis_star_no_link] = STATE(956), - [sym__emphasis_underscore_no_link] = STATE(957), - [sym__strong_emphasis_underscore_no_link] = STATE(956), - [sym__code_span] = STATE(956), - [anon_sym_BANG] = ACTIONS(2480), - [anon_sym_DQUOTE] = ACTIONS(2482), - [anon_sym_POUND] = ACTIONS(2482), - [anon_sym_DOLLAR] = ACTIONS(2482), - [anon_sym_PERCENT] = ACTIONS(2482), - [anon_sym_AMP] = ACTIONS(2484), - [anon_sym_SQUOTE] = ACTIONS(2482), - [anon_sym_LPAREN] = ACTIONS(2482), - [anon_sym_RPAREN] = ACTIONS(2482), - [anon_sym_STAR] = ACTIONS(2482), - [anon_sym_PLUS] = ACTIONS(2482), - [anon_sym_COMMA] = ACTIONS(2482), - [anon_sym_DASH] = ACTIONS(2482), - [anon_sym_DOT] = ACTIONS(2482), - [anon_sym_SLASH] = ACTIONS(2482), - [anon_sym_COLON] = ACTIONS(2482), - [anon_sym_SEMI] = ACTIONS(2482), - [anon_sym_LT] = ACTIONS(2486), - [anon_sym_EQ] = ACTIONS(2482), - [anon_sym_GT] = ACTIONS(2482), - [anon_sym_QMARK] = ACTIONS(2482), - [anon_sym_AT] = ACTIONS(2482), - [anon_sym_BSLASH] = ACTIONS(2488), - [anon_sym_RBRACK] = ACTIONS(2490), - [anon_sym_CARET] = ACTIONS(2482), - [anon_sym__] = ACTIONS(2482), - [anon_sym_BQUOTE] = ACTIONS(2482), - [anon_sym_LBRACE] = ACTIONS(2482), - [anon_sym_PIPE] = ACTIONS(2482), - [anon_sym_RBRACE] = ACTIONS(2482), - [anon_sym_TILDE] = ACTIONS(2482), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2492), - [anon_sym_LT_QMARK] = ACTIONS(2494), - [aux_sym__html_block_4_token1] = ACTIONS(2496), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2498), - [sym_backslash_escape] = ACTIONS(2500), - [sym_entity_reference] = ACTIONS(2500), - [sym_numeric_character_reference] = ACTIONS(2500), - [sym_uri_autolink] = ACTIONS(2500), - [sym_email_autolink] = ACTIONS(2500), - [sym__whitespace_ge_2] = ACTIONS(856), - [aux_sym__whitespace_token1] = ACTIONS(858), - [sym__word_no_digit] = ACTIONS(2500), - [sym__digits] = ACTIONS(2500), + [sym__soft_line_break] = STATE(437), + [sym_image] = STATE(437), + [sym__image_inline_link] = STATE(663), + [sym__image_shortcut_link] = STATE(663), + [sym__image_full_reference_link] = STATE(663), + [sym__image_collapsed_reference_link] = STATE(663), + [sym__image_description] = STATE(2134), + [sym__image_description_non_empty] = STATE(843), + [sym_html_tag] = STATE(437), + [sym__open_tag] = STATE(702), + [sym__closing_tag] = STATE(702), + [sym__html_comment] = STATE(702), + [sym__processing_instruction] = STATE(702), + [sym__declaration] = STATE(702), + [sym__cdata_section] = STATE(702), + [sym_hard_line_break] = STATE(437), + [sym__whitespace] = STATE(437), + [sym__word] = STATE(437), + [sym__newline] = STATE(2143), + [sym__inline_element_no_underscore_no_link] = STATE(437), + [aux_sym__inline_no_underscore_no_link] = STATE(437), + [sym__text_inline_no_underscore_no_link] = STATE(437), + [sym__emphasis_star_no_link] = STATE(1005), + [sym__strong_emphasis_star_no_link] = STATE(437), + [sym__emphasis_underscore_no_link] = STATE(1005), + [sym__strong_emphasis_underscore_no_link] = STATE(437), + [sym__code_span] = STATE(437), + [anon_sym_BANG] = ACTIONS(2502), + [anon_sym_DQUOTE] = ACTIONS(2504), + [anon_sym_POUND] = ACTIONS(2504), + [anon_sym_DOLLAR] = ACTIONS(2504), + [anon_sym_PERCENT] = ACTIONS(2504), + [anon_sym_AMP] = ACTIONS(2506), + [anon_sym_SQUOTE] = ACTIONS(2504), + [anon_sym_LPAREN] = ACTIONS(2504), + [anon_sym_RPAREN] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(2504), + [anon_sym_PLUS] = ACTIONS(2504), + [anon_sym_COMMA] = ACTIONS(2504), + [anon_sym_DASH] = ACTIONS(2504), + [anon_sym_DOT] = ACTIONS(2504), + [anon_sym_SLASH] = ACTIONS(2504), + [anon_sym_COLON] = ACTIONS(2504), + [anon_sym_SEMI] = ACTIONS(2504), + [anon_sym_LT] = ACTIONS(2508), + [anon_sym_EQ] = ACTIONS(2504), + [anon_sym_GT] = ACTIONS(2504), + [anon_sym_QMARK] = ACTIONS(2504), + [anon_sym_AT] = ACTIONS(2504), + [anon_sym_BSLASH] = ACTIONS(2510), + [anon_sym_CARET] = ACTIONS(2504), + [anon_sym__] = ACTIONS(2504), + [anon_sym_BQUOTE] = ACTIONS(2504), + [anon_sym_LBRACE] = ACTIONS(2504), + [anon_sym_PIPE] = ACTIONS(2504), + [anon_sym_RBRACE] = ACTIONS(2504), + [anon_sym_TILDE] = ACTIONS(2504), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2512), + [anon_sym_LT_QMARK] = ACTIONS(2514), + [aux_sym__html_block_4_token1] = ACTIONS(2516), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2518), + [sym_backslash_escape] = ACTIONS(2520), + [sym_entity_reference] = ACTIONS(2520), + [sym_numeric_character_reference] = ACTIONS(2520), + [sym_uri_autolink] = ACTIONS(2520), + [sym_email_autolink] = ACTIONS(2520), + [sym__whitespace_ge_2] = ACTIONS(581), + [aux_sym__whitespace_token1] = ACTIONS(583), + [sym__word_no_digit] = ACTIONS(2520), + [sym__digits] = ACTIONS(2520), [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(2502), - [sym__emphasis_open_star] = ACTIONS(2504), - [sym__emphasis_open_underscore] = ACTIONS(2506), + [sym__code_span_start] = ACTIONS(2522), + [sym__emphasis_open_star] = ACTIONS(2524), + [sym__emphasis_open_underscore] = ACTIONS(2526), + [sym__emphasis_close_underscore] = ACTIONS(2528), }, [440] = { - [sym__soft_line_break] = STATE(438), - [sym_image] = STATE(438), - [sym__image_inline_link] = STATE(801), - [sym__image_shortcut_link] = STATE(801), - [sym__image_full_reference_link] = STATE(801), - [sym__image_collapsed_reference_link] = STATE(801), - [sym__image_description] = STATE(2122), - [sym__image_description_non_empty] = STATE(859), - [sym_html_tag] = STATE(438), - [sym__open_tag] = STATE(683), - [sym__closing_tag] = STATE(683), - [sym__html_comment] = STATE(683), - [sym__processing_instruction] = STATE(683), - [sym__declaration] = STATE(683), - [sym__cdata_section] = STATE(683), - [sym_hard_line_break] = STATE(438), - [sym__whitespace] = STATE(438), - [sym__word] = STATE(438), - [sym__newline] = STATE(2123), - [sym__inline_element_no_underscore_no_link] = STATE(438), - [aux_sym__inline_no_underscore_no_link] = STATE(438), - [sym__text_inline_no_underscore_no_link] = STATE(438), - [sym__emphasis_star_no_link] = STATE(999), - [sym__strong_emphasis_star_no_link] = STATE(438), - [sym__emphasis_underscore_no_link] = STATE(922), - [sym__strong_emphasis_underscore_no_link] = STATE(438), - [sym__code_span] = STATE(438), - [anon_sym_BANG] = ACTIONS(2508), - [anon_sym_DQUOTE] = ACTIONS(2511), - [anon_sym_POUND] = ACTIONS(2511), - [anon_sym_DOLLAR] = ACTIONS(2511), - [anon_sym_PERCENT] = ACTIONS(2511), - [anon_sym_AMP] = ACTIONS(2514), - [anon_sym_SQUOTE] = ACTIONS(2511), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_RPAREN] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_COMMA] = ACTIONS(2511), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_DOT] = ACTIONS(2511), - [anon_sym_SLASH] = ACTIONS(2511), - [anon_sym_COLON] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2511), - [anon_sym_LT] = ACTIONS(2517), - [anon_sym_EQ] = ACTIONS(2511), - [anon_sym_GT] = ACTIONS(2511), - [anon_sym_QMARK] = ACTIONS(2511), - [anon_sym_AT] = ACTIONS(2511), - [anon_sym_BSLASH] = ACTIONS(2520), - [anon_sym_RBRACK] = ACTIONS(2523), - [anon_sym_CARET] = ACTIONS(2511), - [anon_sym__] = ACTIONS(2511), - [anon_sym_BQUOTE] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2511), - [anon_sym_PIPE] = ACTIONS(2511), - [anon_sym_RBRACE] = ACTIONS(2511), - [anon_sym_TILDE] = ACTIONS(2511), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2525), - [anon_sym_LT_QMARK] = ACTIONS(2528), - [aux_sym__html_block_4_token1] = ACTIONS(2531), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2534), - [sym_backslash_escape] = ACTIONS(2537), - [sym_entity_reference] = ACTIONS(2537), - [sym_numeric_character_reference] = ACTIONS(2537), - [sym_uri_autolink] = ACTIONS(2537), - [sym_email_autolink] = ACTIONS(2537), - [sym__whitespace_ge_2] = ACTIONS(2540), - [aux_sym__whitespace_token1] = ACTIONS(2543), - [sym__word_no_digit] = ACTIONS(2537), - [sym__digits] = ACTIONS(2537), - [aux_sym__newline_token1] = ACTIONS(2546), - [sym__code_span_start] = ACTIONS(2549), - [sym__emphasis_open_star] = ACTIONS(2552), - [sym__emphasis_open_underscore] = ACTIONS(2555), + [sym__soft_line_break] = STATE(441), + [sym_image] = STATE(441), + [sym__image_inline_link] = STATE(713), + [sym__image_shortcut_link] = STATE(713), + [sym__image_full_reference_link] = STATE(713), + [sym__image_collapsed_reference_link] = STATE(713), + [sym__image_description] = STATE(2120), + [sym__image_description_non_empty] = STATE(870), + [sym_html_tag] = STATE(441), + [sym__open_tag] = STATE(715), + [sym__closing_tag] = STATE(715), + [sym__html_comment] = STATE(715), + [sym__processing_instruction] = STATE(715), + [sym__declaration] = STATE(715), + [sym__cdata_section] = STATE(715), + [sym_hard_line_break] = STATE(441), + [sym__whitespace] = STATE(441), + [sym__word] = STATE(441), + [sym__newline] = STATE(2144), + [sym__inline_element_no_star_no_link] = STATE(441), + [aux_sym__inline_no_star_no_link] = STATE(441), + [sym__text_inline_no_star_no_link] = STATE(441), + [sym__emphasis_star_no_link] = STATE(1013), + [sym__strong_emphasis_star_no_link] = STATE(441), + [sym__emphasis_underscore_no_link] = STATE(1003), + [sym__strong_emphasis_underscore_no_link] = STATE(441), + [sym__code_span] = STATE(441), + [anon_sym_BANG] = ACTIONS(2530), + [anon_sym_DQUOTE] = ACTIONS(2533), + [anon_sym_POUND] = ACTIONS(2533), + [anon_sym_DOLLAR] = ACTIONS(2533), + [anon_sym_PERCENT] = ACTIONS(2533), + [anon_sym_AMP] = ACTIONS(2536), + [anon_sym_SQUOTE] = ACTIONS(2533), + [anon_sym_LPAREN] = ACTIONS(2533), + [anon_sym_RPAREN] = ACTIONS(2533), + [anon_sym_STAR] = ACTIONS(2533), + [anon_sym_PLUS] = ACTIONS(2533), + [anon_sym_COMMA] = ACTIONS(2533), + [anon_sym_DASH] = ACTIONS(2533), + [anon_sym_DOT] = ACTIONS(2533), + [anon_sym_SLASH] = ACTIONS(2533), + [anon_sym_COLON] = ACTIONS(2533), + [anon_sym_SEMI] = ACTIONS(2533), + [anon_sym_LT] = ACTIONS(2539), + [anon_sym_EQ] = ACTIONS(2533), + [anon_sym_GT] = ACTIONS(2533), + [anon_sym_QMARK] = ACTIONS(2533), + [anon_sym_AT] = ACTIONS(2533), + [anon_sym_BSLASH] = ACTIONS(2542), + [anon_sym_CARET] = ACTIONS(2533), + [anon_sym__] = ACTIONS(2533), + [anon_sym_BQUOTE] = ACTIONS(2533), + [anon_sym_LBRACE] = ACTIONS(2533), + [anon_sym_PIPE] = ACTIONS(2533), + [anon_sym_RBRACE] = ACTIONS(2533), + [anon_sym_TILDE] = ACTIONS(2533), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2545), + [anon_sym_LT_QMARK] = ACTIONS(2548), + [aux_sym__html_block_4_token1] = ACTIONS(2551), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2554), + [sym_backslash_escape] = ACTIONS(2557), + [sym_entity_reference] = ACTIONS(2557), + [sym_numeric_character_reference] = ACTIONS(2557), + [sym_uri_autolink] = ACTIONS(2557), + [sym_email_autolink] = ACTIONS(2557), + [sym__whitespace_ge_2] = ACTIONS(2560), + [aux_sym__whitespace_token1] = ACTIONS(2563), + [sym__word_no_digit] = ACTIONS(2557), + [sym__digits] = ACTIONS(2557), + [aux_sym__newline_token1] = ACTIONS(2566), + [sym__code_span_start] = ACTIONS(2569), + [sym__emphasis_open_star] = ACTIONS(2572), + [sym__emphasis_open_underscore] = ACTIONS(2575), + [sym__emphasis_close_underscore] = ACTIONS(2578), }, [441] = { - [sym__soft_line_break] = STATE(956), - [sym_image] = STATE(956), - [sym__image_inline_link] = STATE(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(892), - [sym_html_tag] = STATE(956), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(956), - [sym__whitespace] = STATE(956), - [sym__word] = STATE(956), - [sym__newline] = STATE(2134), - [sym__inline_element_no_link] = STATE(956), - [aux_sym__inline_no_link] = STATE(448), - [sym__text_inline_no_link] = STATE(956), - [sym__emphasis_star_no_link] = STATE(957), - [sym__strong_emphasis_star_no_link] = STATE(956), - [sym__emphasis_underscore_no_link] = STATE(957), - [sym__strong_emphasis_underscore_no_link] = STATE(956), - [sym__code_span] = STATE(956), - [anon_sym_BANG] = ACTIONS(2480), - [anon_sym_DQUOTE] = ACTIONS(2482), - [anon_sym_POUND] = ACTIONS(2482), - [anon_sym_DOLLAR] = ACTIONS(2482), - [anon_sym_PERCENT] = ACTIONS(2482), - [anon_sym_AMP] = ACTIONS(2484), - [anon_sym_SQUOTE] = ACTIONS(2482), - [anon_sym_LPAREN] = ACTIONS(2482), - [anon_sym_RPAREN] = ACTIONS(2482), - [anon_sym_STAR] = ACTIONS(2482), - [anon_sym_PLUS] = ACTIONS(2482), - [anon_sym_COMMA] = ACTIONS(2482), - [anon_sym_DASH] = ACTIONS(2482), - [anon_sym_DOT] = ACTIONS(2482), - [anon_sym_SLASH] = ACTIONS(2482), - [anon_sym_COLON] = ACTIONS(2482), - [anon_sym_SEMI] = ACTIONS(2482), - [anon_sym_LT] = ACTIONS(2486), - [anon_sym_EQ] = ACTIONS(2482), - [anon_sym_GT] = ACTIONS(2482), - [anon_sym_QMARK] = ACTIONS(2482), - [anon_sym_AT] = ACTIONS(2482), - [anon_sym_BSLASH] = ACTIONS(2488), - [anon_sym_RBRACK] = ACTIONS(2558), - [anon_sym_CARET] = ACTIONS(2482), - [anon_sym__] = ACTIONS(2482), - [anon_sym_BQUOTE] = ACTIONS(2482), - [anon_sym_LBRACE] = ACTIONS(2482), - [anon_sym_PIPE] = ACTIONS(2482), - [anon_sym_RBRACE] = ACTIONS(2482), - [anon_sym_TILDE] = ACTIONS(2482), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2492), - [anon_sym_LT_QMARK] = ACTIONS(2494), - [aux_sym__html_block_4_token1] = ACTIONS(2496), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2498), - [sym_backslash_escape] = ACTIONS(2500), - [sym_entity_reference] = ACTIONS(2500), - [sym_numeric_character_reference] = ACTIONS(2500), - [sym_uri_autolink] = ACTIONS(2500), - [sym_email_autolink] = ACTIONS(2500), - [sym__whitespace_ge_2] = ACTIONS(856), - [aux_sym__whitespace_token1] = ACTIONS(858), - [sym__word_no_digit] = ACTIONS(2500), - [sym__digits] = ACTIONS(2500), + [sym__soft_line_break] = STATE(444), + [sym_image] = STATE(444), + [sym__image_inline_link] = STATE(713), + [sym__image_shortcut_link] = STATE(713), + [sym__image_full_reference_link] = STATE(713), + [sym__image_collapsed_reference_link] = STATE(713), + [sym__image_description] = STATE(2120), + [sym__image_description_non_empty] = STATE(870), + [sym_html_tag] = STATE(444), + [sym__open_tag] = STATE(715), + [sym__closing_tag] = STATE(715), + [sym__html_comment] = STATE(715), + [sym__processing_instruction] = STATE(715), + [sym__declaration] = STATE(715), + [sym__cdata_section] = STATE(715), + [sym_hard_line_break] = STATE(444), + [sym__whitespace] = STATE(444), + [sym__word] = STATE(444), + [sym__newline] = STATE(2144), + [sym__inline_element_no_star_no_link] = STATE(444), + [aux_sym__inline_no_star_no_link] = STATE(444), + [sym__text_inline_no_star_no_link] = STATE(444), + [sym__emphasis_star_no_link] = STATE(1003), + [sym__strong_emphasis_star_no_link] = STATE(444), + [sym__emphasis_underscore_no_link] = STATE(1003), + [sym__strong_emphasis_underscore_no_link] = STATE(444), + [sym__code_span] = STATE(444), + [anon_sym_BANG] = ACTIONS(2474), + [anon_sym_DQUOTE] = ACTIONS(2476), + [anon_sym_POUND] = ACTIONS(2476), + [anon_sym_DOLLAR] = ACTIONS(2476), + [anon_sym_PERCENT] = ACTIONS(2476), + [anon_sym_AMP] = ACTIONS(2478), + [anon_sym_SQUOTE] = ACTIONS(2476), + [anon_sym_LPAREN] = ACTIONS(2476), + [anon_sym_RPAREN] = ACTIONS(2476), + [anon_sym_STAR] = ACTIONS(2476), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_COMMA] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_DOT] = ACTIONS(2476), + [anon_sym_SLASH] = ACTIONS(2476), + [anon_sym_COLON] = ACTIONS(2476), + [anon_sym_SEMI] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2480), + [anon_sym_EQ] = ACTIONS(2476), + [anon_sym_GT] = ACTIONS(2476), + [anon_sym_QMARK] = ACTIONS(2476), + [anon_sym_AT] = ACTIONS(2476), + [anon_sym_BSLASH] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2476), + [anon_sym__] = ACTIONS(2476), + [anon_sym_BQUOTE] = ACTIONS(2476), + [anon_sym_LBRACE] = ACTIONS(2476), + [anon_sym_PIPE] = ACTIONS(2476), + [anon_sym_RBRACE] = ACTIONS(2476), + [anon_sym_TILDE] = ACTIONS(2476), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2484), + [anon_sym_LT_QMARK] = ACTIONS(2486), + [aux_sym__html_block_4_token1] = ACTIONS(2488), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2490), + [sym_backslash_escape] = ACTIONS(2492), + [sym_entity_reference] = ACTIONS(2492), + [sym_numeric_character_reference] = ACTIONS(2492), + [sym_uri_autolink] = ACTIONS(2492), + [sym_email_autolink] = ACTIONS(2492), + [sym__whitespace_ge_2] = ACTIONS(619), + [aux_sym__whitespace_token1] = ACTIONS(621), + [sym__word_no_digit] = ACTIONS(2492), + [sym__digits] = ACTIONS(2492), [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(2502), - [sym__emphasis_open_star] = ACTIONS(2504), - [sym__emphasis_open_underscore] = ACTIONS(2506), + [sym__code_span_start] = ACTIONS(2494), + [sym__emphasis_open_star] = ACTIONS(2496), + [sym__emphasis_open_underscore] = ACTIONS(2498), + [sym__emphasis_close_star] = ACTIONS(2580), }, [442] = { - [sym__soft_line_break] = STATE(445), - [sym_image] = STATE(445), - [sym__image_inline_link] = STATE(801), - [sym__image_shortcut_link] = STATE(801), - [sym__image_full_reference_link] = STATE(801), - [sym__image_collapsed_reference_link] = STATE(801), - [sym__image_description] = STATE(2122), - [sym__image_description_non_empty] = STATE(859), - [sym_html_tag] = STATE(445), - [sym__open_tag] = STATE(683), - [sym__closing_tag] = STATE(683), - [sym__html_comment] = STATE(683), - [sym__processing_instruction] = STATE(683), - [sym__declaration] = STATE(683), - [sym__cdata_section] = STATE(683), - [sym_hard_line_break] = STATE(445), - [sym__whitespace] = STATE(445), - [sym__word] = STATE(445), - [sym__newline] = STATE(2123), - [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(999), - [sym__strong_emphasis_star_no_link] = STATE(445), - [sym__emphasis_underscore_no_link] = STATE(988), - [sym__strong_emphasis_underscore_no_link] = STATE(445), - [sym__code_span] = STATE(445), - [anon_sym_BANG] = ACTIONS(2560), - [anon_sym_DQUOTE] = ACTIONS(2563), - [anon_sym_POUND] = ACTIONS(2563), - [anon_sym_DOLLAR] = ACTIONS(2563), - [anon_sym_PERCENT] = ACTIONS(2563), - [anon_sym_AMP] = ACTIONS(2566), - [anon_sym_SQUOTE] = ACTIONS(2563), - [anon_sym_LPAREN] = ACTIONS(2563), - [anon_sym_RPAREN] = ACTIONS(2563), - [anon_sym_STAR] = ACTIONS(2563), - [anon_sym_PLUS] = ACTIONS(2563), - [anon_sym_COMMA] = ACTIONS(2563), - [anon_sym_DASH] = ACTIONS(2563), - [anon_sym_DOT] = ACTIONS(2563), - [anon_sym_SLASH] = ACTIONS(2563), - [anon_sym_COLON] = ACTIONS(2563), - [anon_sym_SEMI] = ACTIONS(2563), - [anon_sym_LT] = ACTIONS(2569), - [anon_sym_EQ] = ACTIONS(2563), - [anon_sym_GT] = ACTIONS(2563), - [anon_sym_QMARK] = ACTIONS(2563), - [anon_sym_AT] = ACTIONS(2563), - [anon_sym_BSLASH] = ACTIONS(2572), - [anon_sym_CARET] = ACTIONS(2563), - [anon_sym__] = ACTIONS(2563), - [anon_sym_BQUOTE] = ACTIONS(2563), - [anon_sym_LBRACE] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2563), - [anon_sym_RBRACE] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(2563), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2575), - [anon_sym_LT_QMARK] = ACTIONS(2578), - [aux_sym__html_block_4_token1] = ACTIONS(2581), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2584), - [sym_backslash_escape] = ACTIONS(2587), - [sym_entity_reference] = ACTIONS(2587), - [sym_numeric_character_reference] = ACTIONS(2587), - [sym_uri_autolink] = ACTIONS(2587), - [sym_email_autolink] = ACTIONS(2587), - [sym__whitespace_ge_2] = ACTIONS(2590), - [aux_sym__whitespace_token1] = ACTIONS(2593), - [sym__word_no_digit] = ACTIONS(2587), - [sym__digits] = ACTIONS(2587), - [aux_sym__newline_token1] = ACTIONS(2596), - [sym__code_span_start] = ACTIONS(2599), - [sym__emphasis_open_star] = ACTIONS(2602), - [sym__emphasis_open_underscore] = ACTIONS(2605), - [sym__emphasis_close_star] = ACTIONS(2608), + [sym__soft_line_break] = STATE(963), + [sym_image] = STATE(963), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(890), + [sym_html_tag] = STATE(963), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(963), + [sym__whitespace] = STATE(963), + [sym__word] = STATE(963), + [sym__newline] = STATE(2141), + [sym__inline_element_no_link] = STATE(963), + [aux_sym__inline_no_link] = STATE(447), + [sym__text_inline_no_link] = STATE(963), + [sym__emphasis_star_no_link] = STATE(964), + [sym__strong_emphasis_star_no_link] = STATE(963), + [sym__emphasis_underscore_no_link] = STATE(964), + [sym__strong_emphasis_underscore_no_link] = STATE(963), + [sym__code_span] = STATE(963), + [anon_sym_BANG] = ACTIONS(2582), + [anon_sym_DQUOTE] = ACTIONS(2584), + [anon_sym_POUND] = ACTIONS(2584), + [anon_sym_DOLLAR] = ACTIONS(2584), + [anon_sym_PERCENT] = ACTIONS(2584), + [anon_sym_AMP] = ACTIONS(2586), + [anon_sym_SQUOTE] = ACTIONS(2584), + [anon_sym_LPAREN] = ACTIONS(2584), + [anon_sym_RPAREN] = ACTIONS(2584), + [anon_sym_STAR] = ACTIONS(2584), + [anon_sym_PLUS] = ACTIONS(2584), + [anon_sym_COMMA] = ACTIONS(2584), + [anon_sym_DASH] = ACTIONS(2584), + [anon_sym_DOT] = ACTIONS(2584), + [anon_sym_SLASH] = ACTIONS(2584), + [anon_sym_COLON] = ACTIONS(2584), + [anon_sym_SEMI] = ACTIONS(2584), + [anon_sym_LT] = ACTIONS(2588), + [anon_sym_EQ] = ACTIONS(2584), + [anon_sym_GT] = ACTIONS(2584), + [anon_sym_QMARK] = ACTIONS(2584), + [anon_sym_AT] = ACTIONS(2584), + [anon_sym_BSLASH] = ACTIONS(2590), + [anon_sym_RBRACK] = ACTIONS(2592), + [anon_sym_CARET] = ACTIONS(2584), + [anon_sym__] = ACTIONS(2584), + [anon_sym_BQUOTE] = ACTIONS(2584), + [anon_sym_LBRACE] = ACTIONS(2584), + [anon_sym_PIPE] = ACTIONS(2584), + [anon_sym_RBRACE] = ACTIONS(2584), + [anon_sym_TILDE] = ACTIONS(2584), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2594), + [anon_sym_LT_QMARK] = ACTIONS(2596), + [aux_sym__html_block_4_token1] = ACTIONS(2598), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2600), + [sym_backslash_escape] = ACTIONS(2602), + [sym_entity_reference] = ACTIONS(2602), + [sym_numeric_character_reference] = ACTIONS(2602), + [sym_uri_autolink] = ACTIONS(2602), + [sym_email_autolink] = ACTIONS(2602), + [sym__whitespace_ge_2] = ACTIONS(981), + [aux_sym__whitespace_token1] = ACTIONS(983), + [sym__word_no_digit] = ACTIONS(2602), + [sym__digits] = ACTIONS(2602), + [aux_sym__newline_token1] = ACTIONS(41), + [sym__code_span_start] = ACTIONS(2604), + [sym__emphasis_open_star] = ACTIONS(2606), + [sym__emphasis_open_underscore] = ACTIONS(2608), }, [443] = { - [sym__soft_line_break] = STATE(447), - [sym_image] = STATE(447), - [sym__image_inline_link] = STATE(708), - [sym__image_shortcut_link] = STATE(708), - [sym__image_full_reference_link] = STATE(708), - [sym__image_collapsed_reference_link] = STATE(708), - [sym__image_description] = STATE(2137), - [sym__image_description_non_empty] = STATE(847), - [sym_html_tag] = STATE(447), - [sym__open_tag] = STATE(710), - [sym__closing_tag] = STATE(710), - [sym__html_comment] = STATE(710), - [sym__processing_instruction] = STATE(710), - [sym__declaration] = STATE(710), - [sym__cdata_section] = STATE(710), - [sym_hard_line_break] = STATE(447), - [sym__whitespace] = STATE(447), - [sym__word] = STATE(447), - [sym__newline] = STATE(2120), - [sym__inline_element_no_star_no_link] = STATE(447), - [aux_sym__inline_no_star_no_link] = STATE(447), - [sym__text_inline_no_star_no_link] = STATE(447), - [sym__emphasis_star_no_link] = STATE(998), - [sym__strong_emphasis_star_no_link] = STATE(447), - [sym__emphasis_underscore_no_link] = STATE(998), - [sym__strong_emphasis_underscore_no_link] = STATE(447), - [sym__code_span] = STATE(447), - [anon_sym_BANG] = ACTIONS(2424), - [anon_sym_DQUOTE] = ACTIONS(2426), - [anon_sym_POUND] = ACTIONS(2426), - [anon_sym_DOLLAR] = ACTIONS(2426), - [anon_sym_PERCENT] = ACTIONS(2426), - [anon_sym_AMP] = ACTIONS(2428), - [anon_sym_SQUOTE] = ACTIONS(2426), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_RPAREN] = ACTIONS(2426), - [anon_sym_STAR] = ACTIONS(2426), - [anon_sym_PLUS] = ACTIONS(2426), - [anon_sym_COMMA] = ACTIONS(2426), - [anon_sym_DASH] = ACTIONS(2426), - [anon_sym_DOT] = ACTIONS(2426), - [anon_sym_SLASH] = ACTIONS(2426), - [anon_sym_COLON] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(2426), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_EQ] = ACTIONS(2426), - [anon_sym_GT] = ACTIONS(2426), - [anon_sym_QMARK] = ACTIONS(2426), - [anon_sym_AT] = ACTIONS(2426), - [anon_sym_BSLASH] = ACTIONS(2432), - [anon_sym_CARET] = ACTIONS(2426), - [anon_sym__] = ACTIONS(2426), - [anon_sym_BQUOTE] = ACTIONS(2426), - [anon_sym_LBRACE] = ACTIONS(2426), - [anon_sym_PIPE] = ACTIONS(2426), - [anon_sym_RBRACE] = ACTIONS(2426), - [anon_sym_TILDE] = ACTIONS(2426), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2434), - [anon_sym_LT_QMARK] = ACTIONS(2436), - [aux_sym__html_block_4_token1] = ACTIONS(2438), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2440), - [sym_backslash_escape] = ACTIONS(2442), - [sym_entity_reference] = ACTIONS(2442), - [sym_numeric_character_reference] = ACTIONS(2442), - [sym_uri_autolink] = ACTIONS(2442), - [sym_email_autolink] = ACTIONS(2442), - [sym__whitespace_ge_2] = ACTIONS(600), - [aux_sym__whitespace_token1] = ACTIONS(602), - [sym__word_no_digit] = ACTIONS(2442), - [sym__digits] = ACTIONS(2442), + [sym__soft_line_break] = STATE(963), + [sym_image] = STATE(963), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(890), + [sym_html_tag] = STATE(963), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(963), + [sym__whitespace] = STATE(963), + [sym__word] = STATE(963), + [sym__newline] = STATE(2141), + [sym__inline_element_no_link] = STATE(963), + [aux_sym__inline_no_link] = STATE(447), + [sym__text_inline_no_link] = STATE(963), + [sym__emphasis_star_no_link] = STATE(964), + [sym__strong_emphasis_star_no_link] = STATE(963), + [sym__emphasis_underscore_no_link] = STATE(964), + [sym__strong_emphasis_underscore_no_link] = STATE(963), + [sym__code_span] = STATE(963), + [anon_sym_BANG] = ACTIONS(2582), + [anon_sym_DQUOTE] = ACTIONS(2584), + [anon_sym_POUND] = ACTIONS(2584), + [anon_sym_DOLLAR] = ACTIONS(2584), + [anon_sym_PERCENT] = ACTIONS(2584), + [anon_sym_AMP] = ACTIONS(2586), + [anon_sym_SQUOTE] = ACTIONS(2584), + [anon_sym_LPAREN] = ACTIONS(2584), + [anon_sym_RPAREN] = ACTIONS(2584), + [anon_sym_STAR] = ACTIONS(2584), + [anon_sym_PLUS] = ACTIONS(2584), + [anon_sym_COMMA] = ACTIONS(2584), + [anon_sym_DASH] = ACTIONS(2584), + [anon_sym_DOT] = ACTIONS(2584), + [anon_sym_SLASH] = ACTIONS(2584), + [anon_sym_COLON] = ACTIONS(2584), + [anon_sym_SEMI] = ACTIONS(2584), + [anon_sym_LT] = ACTIONS(2588), + [anon_sym_EQ] = ACTIONS(2584), + [anon_sym_GT] = ACTIONS(2584), + [anon_sym_QMARK] = ACTIONS(2584), + [anon_sym_AT] = ACTIONS(2584), + [anon_sym_BSLASH] = ACTIONS(2590), + [anon_sym_RBRACK] = ACTIONS(2610), + [anon_sym_CARET] = ACTIONS(2584), + [anon_sym__] = ACTIONS(2584), + [anon_sym_BQUOTE] = ACTIONS(2584), + [anon_sym_LBRACE] = ACTIONS(2584), + [anon_sym_PIPE] = ACTIONS(2584), + [anon_sym_RBRACE] = ACTIONS(2584), + [anon_sym_TILDE] = ACTIONS(2584), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2594), + [anon_sym_LT_QMARK] = ACTIONS(2596), + [aux_sym__html_block_4_token1] = ACTIONS(2598), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2600), + [sym_backslash_escape] = ACTIONS(2602), + [sym_entity_reference] = ACTIONS(2602), + [sym_numeric_character_reference] = ACTIONS(2602), + [sym_uri_autolink] = ACTIONS(2602), + [sym_email_autolink] = ACTIONS(2602), + [sym__whitespace_ge_2] = ACTIONS(981), + [aux_sym__whitespace_token1] = ACTIONS(983), + [sym__word_no_digit] = ACTIONS(2602), + [sym__digits] = ACTIONS(2602), [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(2444), - [sym__emphasis_open_star] = ACTIONS(2446), - [sym__emphasis_open_underscore] = ACTIONS(2448), - [sym__emphasis_close_star] = ACTIONS(2610), + [sym__code_span_start] = ACTIONS(2604), + [sym__emphasis_open_star] = ACTIONS(2606), + [sym__emphasis_open_underscore] = ACTIONS(2608), }, [444] = { - [sym__soft_line_break] = STATE(956), - [sym_image] = STATE(956), - [sym__image_inline_link] = STATE(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(892), - [sym_html_tag] = STATE(956), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(956), - [sym__whitespace] = STATE(956), - [sym__word] = STATE(956), - [sym__newline] = STATE(2134), - [sym__inline_element_no_link] = STATE(956), - [aux_sym__inline_no_link] = STATE(448), - [sym__text_inline_no_link] = STATE(956), - [sym__emphasis_star_no_link] = STATE(957), - [sym__strong_emphasis_star_no_link] = STATE(956), - [sym__emphasis_underscore_no_link] = STATE(957), - [sym__strong_emphasis_underscore_no_link] = STATE(956), - [sym__code_span] = STATE(956), - [anon_sym_BANG] = ACTIONS(2480), - [anon_sym_DQUOTE] = ACTIONS(2482), - [anon_sym_POUND] = ACTIONS(2482), - [anon_sym_DOLLAR] = ACTIONS(2482), - [anon_sym_PERCENT] = ACTIONS(2482), - [anon_sym_AMP] = ACTIONS(2484), - [anon_sym_SQUOTE] = ACTIONS(2482), - [anon_sym_LPAREN] = ACTIONS(2482), - [anon_sym_RPAREN] = ACTIONS(2482), - [anon_sym_STAR] = ACTIONS(2482), - [anon_sym_PLUS] = ACTIONS(2482), - [anon_sym_COMMA] = ACTIONS(2482), - [anon_sym_DASH] = ACTIONS(2482), - [anon_sym_DOT] = ACTIONS(2482), - [anon_sym_SLASH] = ACTIONS(2482), - [anon_sym_COLON] = ACTIONS(2482), - [anon_sym_SEMI] = ACTIONS(2482), - [anon_sym_LT] = ACTIONS(2486), - [anon_sym_EQ] = ACTIONS(2482), - [anon_sym_GT] = ACTIONS(2482), - [anon_sym_QMARK] = ACTIONS(2482), - [anon_sym_AT] = ACTIONS(2482), - [anon_sym_BSLASH] = ACTIONS(2488), - [anon_sym_RBRACK] = ACTIONS(2612), - [anon_sym_CARET] = ACTIONS(2482), - [anon_sym__] = ACTIONS(2482), - [anon_sym_BQUOTE] = ACTIONS(2482), - [anon_sym_LBRACE] = ACTIONS(2482), - [anon_sym_PIPE] = ACTIONS(2482), - [anon_sym_RBRACE] = ACTIONS(2482), - [anon_sym_TILDE] = ACTIONS(2482), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2492), - [anon_sym_LT_QMARK] = ACTIONS(2494), - [aux_sym__html_block_4_token1] = ACTIONS(2496), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2498), - [sym_backslash_escape] = ACTIONS(2500), - [sym_entity_reference] = ACTIONS(2500), - [sym_numeric_character_reference] = ACTIONS(2500), - [sym_uri_autolink] = ACTIONS(2500), - [sym_email_autolink] = ACTIONS(2500), - [sym__whitespace_ge_2] = ACTIONS(856), - [aux_sym__whitespace_token1] = ACTIONS(858), - [sym__word_no_digit] = ACTIONS(2500), - [sym__digits] = ACTIONS(2500), - [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(2502), - [sym__emphasis_open_star] = ACTIONS(2504), - [sym__emphasis_open_underscore] = ACTIONS(2506), + [sym__soft_line_break] = STATE(444), + [sym_image] = STATE(444), + [sym__image_inline_link] = STATE(713), + [sym__image_shortcut_link] = STATE(713), + [sym__image_full_reference_link] = STATE(713), + [sym__image_collapsed_reference_link] = STATE(713), + [sym__image_description] = STATE(2120), + [sym__image_description_non_empty] = STATE(870), + [sym_html_tag] = STATE(444), + [sym__open_tag] = STATE(715), + [sym__closing_tag] = STATE(715), + [sym__html_comment] = STATE(715), + [sym__processing_instruction] = STATE(715), + [sym__declaration] = STATE(715), + [sym__cdata_section] = STATE(715), + [sym_hard_line_break] = STATE(444), + [sym__whitespace] = STATE(444), + [sym__word] = STATE(444), + [sym__newline] = STATE(2144), + [sym__inline_element_no_star_no_link] = STATE(444), + [aux_sym__inline_no_star_no_link] = STATE(444), + [sym__text_inline_no_star_no_link] = STATE(444), + [sym__emphasis_star_no_link] = STATE(1003), + [sym__strong_emphasis_star_no_link] = STATE(444), + [sym__emphasis_underscore_no_link] = STATE(1003), + [sym__strong_emphasis_underscore_no_link] = STATE(444), + [sym__code_span] = STATE(444), + [anon_sym_BANG] = ACTIONS(2612), + [anon_sym_DQUOTE] = ACTIONS(2615), + [anon_sym_POUND] = ACTIONS(2615), + [anon_sym_DOLLAR] = ACTIONS(2615), + [anon_sym_PERCENT] = ACTIONS(2615), + [anon_sym_AMP] = ACTIONS(2618), + [anon_sym_SQUOTE] = ACTIONS(2615), + [anon_sym_LPAREN] = ACTIONS(2615), + [anon_sym_RPAREN] = ACTIONS(2615), + [anon_sym_STAR] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_COMMA] = ACTIONS(2615), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_DOT] = ACTIONS(2615), + [anon_sym_SLASH] = ACTIONS(2615), + [anon_sym_COLON] = ACTIONS(2615), + [anon_sym_SEMI] = ACTIONS(2615), + [anon_sym_LT] = ACTIONS(2621), + [anon_sym_EQ] = ACTIONS(2615), + [anon_sym_GT] = ACTIONS(2615), + [anon_sym_QMARK] = ACTIONS(2615), + [anon_sym_AT] = ACTIONS(2615), + [anon_sym_BSLASH] = ACTIONS(2624), + [anon_sym_CARET] = ACTIONS(2615), + [anon_sym__] = ACTIONS(2615), + [anon_sym_BQUOTE] = ACTIONS(2615), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_PIPE] = ACTIONS(2615), + [anon_sym_RBRACE] = ACTIONS(2615), + [anon_sym_TILDE] = ACTIONS(2615), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2627), + [anon_sym_LT_QMARK] = ACTIONS(2630), + [aux_sym__html_block_4_token1] = ACTIONS(2633), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2636), + [sym_backslash_escape] = ACTIONS(2639), + [sym_entity_reference] = ACTIONS(2639), + [sym_numeric_character_reference] = ACTIONS(2639), + [sym_uri_autolink] = ACTIONS(2639), + [sym_email_autolink] = ACTIONS(2639), + [sym__whitespace_ge_2] = ACTIONS(2642), + [aux_sym__whitespace_token1] = ACTIONS(2645), + [sym__word_no_digit] = ACTIONS(2639), + [sym__digits] = ACTIONS(2639), + [aux_sym__newline_token1] = ACTIONS(2648), + [sym__code_span_start] = ACTIONS(2651), + [sym__emphasis_open_star] = ACTIONS(2654), + [sym__emphasis_open_underscore] = ACTIONS(2657), + [sym__emphasis_close_star] = ACTIONS(2660), }, [445] = { - [sym__soft_line_break] = STATE(436), - [sym_image] = STATE(436), - [sym__image_inline_link] = STATE(801), - [sym__image_shortcut_link] = STATE(801), - [sym__image_full_reference_link] = STATE(801), - [sym__image_collapsed_reference_link] = STATE(801), - [sym__image_description] = STATE(2122), - [sym__image_description_non_empty] = STATE(859), - [sym_html_tag] = STATE(436), - [sym__open_tag] = STATE(683), - [sym__closing_tag] = STATE(683), - [sym__html_comment] = STATE(683), - [sym__processing_instruction] = STATE(683), - [sym__declaration] = STATE(683), - [sym__cdata_section] = STATE(683), - [sym_hard_line_break] = STATE(436), - [sym__whitespace] = STATE(436), - [sym__word] = STATE(436), - [sym__newline] = STATE(2123), - [sym__inline_element_no_underscore_no_link] = STATE(436), - [aux_sym__inline_no_underscore_no_link] = STATE(436), - [sym__text_inline_no_underscore_no_link] = STATE(436), - [sym__emphasis_star_no_link] = STATE(999), - [sym__strong_emphasis_star_no_link] = STATE(436), - [sym__emphasis_underscore_no_link] = STATE(999), - [sym__strong_emphasis_underscore_no_link] = STATE(436), - [sym__code_span] = STATE(436), - [anon_sym_BANG] = ACTIONS(2452), - [anon_sym_DQUOTE] = ACTIONS(2454), - [anon_sym_POUND] = ACTIONS(2454), - [anon_sym_DOLLAR] = ACTIONS(2454), - [anon_sym_PERCENT] = ACTIONS(2454), - [anon_sym_AMP] = ACTIONS(2456), - [anon_sym_SQUOTE] = ACTIONS(2454), - [anon_sym_LPAREN] = ACTIONS(2454), - [anon_sym_RPAREN] = ACTIONS(2454), - [anon_sym_STAR] = ACTIONS(2454), - [anon_sym_PLUS] = ACTIONS(2454), - [anon_sym_COMMA] = ACTIONS(2454), - [anon_sym_DASH] = ACTIONS(2454), - [anon_sym_DOT] = ACTIONS(2454), - [anon_sym_SLASH] = ACTIONS(2454), - [anon_sym_COLON] = ACTIONS(2454), - [anon_sym_SEMI] = ACTIONS(2454), - [anon_sym_LT] = ACTIONS(2458), - [anon_sym_EQ] = ACTIONS(2454), - [anon_sym_GT] = ACTIONS(2454), - [anon_sym_QMARK] = ACTIONS(2454), - [anon_sym_AT] = ACTIONS(2454), - [anon_sym_BSLASH] = ACTIONS(2460), - [anon_sym_CARET] = ACTIONS(2454), - [anon_sym__] = ACTIONS(2454), - [anon_sym_BQUOTE] = ACTIONS(2454), - [anon_sym_LBRACE] = ACTIONS(2454), - [anon_sym_PIPE] = ACTIONS(2454), - [anon_sym_RBRACE] = ACTIONS(2454), - [anon_sym_TILDE] = ACTIONS(2454), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2462), - [anon_sym_LT_QMARK] = ACTIONS(2464), - [aux_sym__html_block_4_token1] = ACTIONS(2466), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2468), - [sym_backslash_escape] = ACTIONS(2470), - [sym_entity_reference] = ACTIONS(2470), - [sym_numeric_character_reference] = ACTIONS(2470), - [sym_uri_autolink] = ACTIONS(2470), - [sym_email_autolink] = ACTIONS(2470), - [sym__whitespace_ge_2] = ACTIONS(733), - [aux_sym__whitespace_token1] = ACTIONS(735), - [sym__word_no_digit] = ACTIONS(2470), - [sym__digits] = ACTIONS(2470), - [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(2472), - [sym__emphasis_open_star] = ACTIONS(2474), - [sym__emphasis_open_underscore] = ACTIONS(2476), - [sym__emphasis_close_underscore] = ACTIONS(2614), - }, - [446] = { - [sym__soft_line_break] = STATE(436), - [sym_image] = STATE(436), - [sym__image_inline_link] = STATE(801), - [sym__image_shortcut_link] = STATE(801), - [sym__image_full_reference_link] = STATE(801), - [sym__image_collapsed_reference_link] = STATE(801), - [sym__image_description] = STATE(2122), - [sym__image_description_non_empty] = STATE(859), - [sym_html_tag] = STATE(436), - [sym__open_tag] = STATE(683), - [sym__closing_tag] = STATE(683), - [sym__html_comment] = STATE(683), - [sym__processing_instruction] = STATE(683), - [sym__declaration] = STATE(683), - [sym__cdata_section] = STATE(683), - [sym_hard_line_break] = STATE(436), - [sym__whitespace] = STATE(436), - [sym__word] = STATE(436), - [sym__newline] = STATE(2123), - [sym__inline_element_no_underscore_no_link] = STATE(436), - [aux_sym__inline_no_underscore_no_link] = STATE(436), - [sym__text_inline_no_underscore_no_link] = STATE(436), - [sym__emphasis_star_no_link] = STATE(999), - [sym__strong_emphasis_star_no_link] = STATE(436), - [sym__emphasis_underscore_no_link] = STATE(999), - [sym__strong_emphasis_underscore_no_link] = STATE(436), - [sym__code_span] = STATE(436), - [anon_sym_BANG] = ACTIONS(2452), - [anon_sym_DQUOTE] = ACTIONS(2454), - [anon_sym_POUND] = ACTIONS(2454), - [anon_sym_DOLLAR] = ACTIONS(2454), - [anon_sym_PERCENT] = ACTIONS(2454), - [anon_sym_AMP] = ACTIONS(2456), - [anon_sym_SQUOTE] = ACTIONS(2454), - [anon_sym_LPAREN] = ACTIONS(2454), - [anon_sym_RPAREN] = ACTIONS(2454), - [anon_sym_STAR] = ACTIONS(2454), - [anon_sym_PLUS] = ACTIONS(2454), - [anon_sym_COMMA] = ACTIONS(2454), - [anon_sym_DASH] = ACTIONS(2454), - [anon_sym_DOT] = ACTIONS(2454), - [anon_sym_SLASH] = ACTIONS(2454), - [anon_sym_COLON] = ACTIONS(2454), - [anon_sym_SEMI] = ACTIONS(2454), - [anon_sym_LT] = ACTIONS(2458), - [anon_sym_EQ] = ACTIONS(2454), - [anon_sym_GT] = ACTIONS(2454), - [anon_sym_QMARK] = ACTIONS(2454), - [anon_sym_AT] = ACTIONS(2454), - [anon_sym_BSLASH] = ACTIONS(2460), - [anon_sym_CARET] = ACTIONS(2454), - [anon_sym__] = ACTIONS(2454), - [anon_sym_BQUOTE] = ACTIONS(2454), - [anon_sym_LBRACE] = ACTIONS(2454), - [anon_sym_PIPE] = ACTIONS(2454), - [anon_sym_RBRACE] = ACTIONS(2454), - [anon_sym_TILDE] = ACTIONS(2454), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2462), - [anon_sym_LT_QMARK] = ACTIONS(2464), - [aux_sym__html_block_4_token1] = ACTIONS(2466), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2468), - [sym_backslash_escape] = ACTIONS(2470), - [sym_entity_reference] = ACTIONS(2470), - [sym_numeric_character_reference] = ACTIONS(2470), - [sym_uri_autolink] = ACTIONS(2470), - [sym_email_autolink] = ACTIONS(2470), - [sym__whitespace_ge_2] = ACTIONS(733), - [aux_sym__whitespace_token1] = ACTIONS(735), - [sym__word_no_digit] = ACTIONS(2470), - [sym__digits] = ACTIONS(2470), - [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(2472), - [sym__emphasis_open_star] = ACTIONS(2474), - [sym__emphasis_open_underscore] = ACTIONS(2476), - [sym__emphasis_close_underscore] = ACTIONS(2616), - }, - [447] = { - [sym__soft_line_break] = STATE(447), - [sym_image] = STATE(447), - [sym__image_inline_link] = STATE(708), - [sym__image_shortcut_link] = STATE(708), - [sym__image_full_reference_link] = STATE(708), - [sym__image_collapsed_reference_link] = STATE(708), - [sym__image_description] = STATE(2137), - [sym__image_description_non_empty] = STATE(847), - [sym_html_tag] = STATE(447), - [sym__open_tag] = STATE(710), - [sym__closing_tag] = STATE(710), - [sym__html_comment] = STATE(710), - [sym__processing_instruction] = STATE(710), - [sym__declaration] = STATE(710), - [sym__cdata_section] = STATE(710), - [sym_hard_line_break] = STATE(447), - [sym__whitespace] = STATE(447), - [sym__word] = STATE(447), - [sym__newline] = STATE(2120), - [sym__inline_element_no_star_no_link] = STATE(447), - [aux_sym__inline_no_star_no_link] = STATE(447), - [sym__text_inline_no_star_no_link] = STATE(447), - [sym__emphasis_star_no_link] = STATE(998), - [sym__strong_emphasis_star_no_link] = STATE(447), - [sym__emphasis_underscore_no_link] = STATE(998), - [sym__strong_emphasis_underscore_no_link] = STATE(447), - [sym__code_span] = STATE(447), - [anon_sym_BANG] = ACTIONS(2618), - [anon_sym_DQUOTE] = ACTIONS(2621), - [anon_sym_POUND] = ACTIONS(2621), - [anon_sym_DOLLAR] = ACTIONS(2621), - [anon_sym_PERCENT] = ACTIONS(2621), - [anon_sym_AMP] = ACTIONS(2624), - [anon_sym_SQUOTE] = ACTIONS(2621), - [anon_sym_LPAREN] = ACTIONS(2621), - [anon_sym_RPAREN] = ACTIONS(2621), - [anon_sym_STAR] = ACTIONS(2621), - [anon_sym_PLUS] = ACTIONS(2621), - [anon_sym_COMMA] = ACTIONS(2621), - [anon_sym_DASH] = ACTIONS(2621), - [anon_sym_DOT] = ACTIONS(2621), - [anon_sym_SLASH] = ACTIONS(2621), - [anon_sym_COLON] = ACTIONS(2621), - [anon_sym_SEMI] = ACTIONS(2621), - [anon_sym_LT] = ACTIONS(2627), - [anon_sym_EQ] = ACTIONS(2621), - [anon_sym_GT] = ACTIONS(2621), - [anon_sym_QMARK] = ACTIONS(2621), - [anon_sym_AT] = ACTIONS(2621), - [anon_sym_BSLASH] = ACTIONS(2630), - [anon_sym_CARET] = ACTIONS(2621), - [anon_sym__] = ACTIONS(2621), - [anon_sym_BQUOTE] = ACTIONS(2621), - [anon_sym_LBRACE] = ACTIONS(2621), - [anon_sym_PIPE] = ACTIONS(2621), - [anon_sym_RBRACE] = ACTIONS(2621), - [anon_sym_TILDE] = ACTIONS(2621), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2633), - [anon_sym_LT_QMARK] = ACTIONS(2636), - [aux_sym__html_block_4_token1] = ACTIONS(2639), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2642), - [sym_backslash_escape] = ACTIONS(2645), - [sym_entity_reference] = ACTIONS(2645), - [sym_numeric_character_reference] = ACTIONS(2645), - [sym_uri_autolink] = ACTIONS(2645), - [sym_email_autolink] = ACTIONS(2645), - [sym__whitespace_ge_2] = ACTIONS(2648), - [aux_sym__whitespace_token1] = ACTIONS(2651), - [sym__word_no_digit] = ACTIONS(2645), - [sym__digits] = ACTIONS(2645), - [aux_sym__newline_token1] = ACTIONS(2654), - [sym__code_span_start] = ACTIONS(2657), - [sym__emphasis_open_star] = ACTIONS(2660), - [sym__emphasis_open_underscore] = ACTIONS(2663), - [sym__emphasis_close_star] = ACTIONS(2666), - }, - [448] = { - [sym__soft_line_break] = STATE(956), - [sym_image] = STATE(956), - [sym__image_inline_link] = STATE(915), - [sym__image_shortcut_link] = STATE(915), - [sym__image_full_reference_link] = STATE(915), - [sym__image_collapsed_reference_link] = STATE(915), - [sym__image_description] = STATE(2143), - [sym__image_description_non_empty] = STATE(892), - [sym_html_tag] = STATE(956), - [sym__open_tag] = STATE(904), - [sym__closing_tag] = STATE(904), - [sym__html_comment] = STATE(904), - [sym__processing_instruction] = STATE(904), - [sym__declaration] = STATE(904), - [sym__cdata_section] = STATE(904), - [sym_hard_line_break] = STATE(956), - [sym__whitespace] = STATE(956), - [sym__word] = STATE(956), - [sym__newline] = STATE(2134), - [sym__inline_element_no_link] = STATE(956), - [aux_sym__inline_no_link] = STATE(448), - [sym__text_inline_no_link] = STATE(956), - [sym__emphasis_star_no_link] = STATE(957), - [sym__strong_emphasis_star_no_link] = STATE(956), - [sym__emphasis_underscore_no_link] = STATE(957), - [sym__strong_emphasis_underscore_no_link] = STATE(956), - [sym__code_span] = STATE(956), - [anon_sym_BANG] = ACTIONS(2668), - [anon_sym_DQUOTE] = ACTIONS(2671), - [anon_sym_POUND] = ACTIONS(2671), - [anon_sym_DOLLAR] = ACTIONS(2671), - [anon_sym_PERCENT] = ACTIONS(2671), - [anon_sym_AMP] = ACTIONS(2674), - [anon_sym_SQUOTE] = ACTIONS(2671), - [anon_sym_LPAREN] = ACTIONS(2671), - [anon_sym_RPAREN] = ACTIONS(2671), - [anon_sym_STAR] = ACTIONS(2671), - [anon_sym_PLUS] = ACTIONS(2671), - [anon_sym_COMMA] = ACTIONS(2671), - [anon_sym_DASH] = ACTIONS(2671), - [anon_sym_DOT] = ACTIONS(2671), - [anon_sym_SLASH] = ACTIONS(2671), - [anon_sym_COLON] = ACTIONS(2671), - [anon_sym_SEMI] = ACTIONS(2671), - [anon_sym_LT] = ACTIONS(2677), - [anon_sym_EQ] = ACTIONS(2671), - [anon_sym_GT] = ACTIONS(2671), - [anon_sym_QMARK] = ACTIONS(2671), - [anon_sym_AT] = ACTIONS(2671), - [anon_sym_BSLASH] = ACTIONS(2680), - [anon_sym_RBRACK] = ACTIONS(2683), - [anon_sym_CARET] = ACTIONS(2671), - [anon_sym__] = ACTIONS(2671), - [anon_sym_BQUOTE] = ACTIONS(2671), - [anon_sym_LBRACE] = ACTIONS(2671), - [anon_sym_PIPE] = ACTIONS(2671), - [anon_sym_RBRACE] = ACTIONS(2671), - [anon_sym_TILDE] = ACTIONS(2671), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2685), - [anon_sym_LT_QMARK] = ACTIONS(2688), - [aux_sym__html_block_4_token1] = ACTIONS(2691), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2694), - [sym_backslash_escape] = ACTIONS(2697), - [sym_entity_reference] = ACTIONS(2697), - [sym_numeric_character_reference] = ACTIONS(2697), - [sym_uri_autolink] = ACTIONS(2697), - [sym_email_autolink] = ACTIONS(2697), - [sym__whitespace_ge_2] = ACTIONS(2700), - [aux_sym__whitespace_token1] = ACTIONS(2703), - [sym__word_no_digit] = ACTIONS(2697), - [sym__digits] = ACTIONS(2697), - [aux_sym__newline_token1] = ACTIONS(2706), - [sym__code_span_start] = ACTIONS(2709), - [sym__emphasis_open_star] = ACTIONS(2712), - [sym__emphasis_open_underscore] = ACTIONS(2715), - }, - [449] = { - [sym__soft_line_break] = STATE(447), - [sym_image] = STATE(447), - [sym__image_inline_link] = STATE(708), - [sym__image_shortcut_link] = STATE(708), - [sym__image_full_reference_link] = STATE(708), - [sym__image_collapsed_reference_link] = STATE(708), - [sym__image_description] = STATE(2137), - [sym__image_description_non_empty] = STATE(847), - [sym_html_tag] = STATE(447), - [sym__open_tag] = STATE(710), - [sym__closing_tag] = STATE(710), - [sym__html_comment] = STATE(710), - [sym__processing_instruction] = STATE(710), - [sym__declaration] = STATE(710), - [sym__cdata_section] = STATE(710), - [sym_hard_line_break] = STATE(447), - [sym__whitespace] = STATE(447), - [sym__word] = STATE(447), - [sym__newline] = STATE(2120), - [sym__inline_element_no_star_no_link] = STATE(447), - [aux_sym__inline_no_star_no_link] = STATE(447), - [sym__text_inline_no_star_no_link] = STATE(447), - [sym__emphasis_star_no_link] = STATE(998), - [sym__strong_emphasis_star_no_link] = STATE(447), - [sym__emphasis_underscore_no_link] = STATE(998), - [sym__strong_emphasis_underscore_no_link] = STATE(447), - [sym__code_span] = STATE(447), - [anon_sym_BANG] = ACTIONS(2424), - [anon_sym_DQUOTE] = ACTIONS(2426), - [anon_sym_POUND] = ACTIONS(2426), - [anon_sym_DOLLAR] = ACTIONS(2426), - [anon_sym_PERCENT] = ACTIONS(2426), - [anon_sym_AMP] = ACTIONS(2428), - [anon_sym_SQUOTE] = ACTIONS(2426), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_RPAREN] = ACTIONS(2426), - [anon_sym_STAR] = ACTIONS(2426), - [anon_sym_PLUS] = ACTIONS(2426), - [anon_sym_COMMA] = ACTIONS(2426), - [anon_sym_DASH] = ACTIONS(2426), - [anon_sym_DOT] = ACTIONS(2426), - [anon_sym_SLASH] = ACTIONS(2426), - [anon_sym_COLON] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(2426), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_EQ] = ACTIONS(2426), - [anon_sym_GT] = ACTIONS(2426), - [anon_sym_QMARK] = ACTIONS(2426), - [anon_sym_AT] = ACTIONS(2426), - [anon_sym_BSLASH] = ACTIONS(2432), - [anon_sym_CARET] = ACTIONS(2426), - [anon_sym__] = ACTIONS(2426), - [anon_sym_BQUOTE] = ACTIONS(2426), - [anon_sym_LBRACE] = ACTIONS(2426), - [anon_sym_PIPE] = ACTIONS(2426), - [anon_sym_RBRACE] = ACTIONS(2426), - [anon_sym_TILDE] = ACTIONS(2426), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2434), - [anon_sym_LT_QMARK] = ACTIONS(2436), - [aux_sym__html_block_4_token1] = ACTIONS(2438), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2440), - [sym_backslash_escape] = ACTIONS(2442), - [sym_entity_reference] = ACTIONS(2442), - [sym_numeric_character_reference] = ACTIONS(2442), - [sym_uri_autolink] = ACTIONS(2442), - [sym_email_autolink] = ACTIONS(2442), - [sym__whitespace_ge_2] = ACTIONS(600), - [aux_sym__whitespace_token1] = ACTIONS(602), - [sym__word_no_digit] = ACTIONS(2442), - [sym__digits] = ACTIONS(2442), - [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(2444), - [sym__emphasis_open_star] = ACTIONS(2446), - [sym__emphasis_open_underscore] = ACTIONS(2448), - [sym__emphasis_close_star] = ACTIONS(2718), - }, - [450] = { [sym__soft_line_break] = STATE(449), [sym_image] = STATE(449), - [sym__image_inline_link] = STATE(708), - [sym__image_shortcut_link] = STATE(708), - [sym__image_full_reference_link] = STATE(708), - [sym__image_collapsed_reference_link] = STATE(708), - [sym__image_description] = STATE(2137), - [sym__image_description_non_empty] = STATE(847), + [sym__image_inline_link] = STATE(663), + [sym__image_shortcut_link] = STATE(663), + [sym__image_full_reference_link] = STATE(663), + [sym__image_collapsed_reference_link] = STATE(663), + [sym__image_description] = STATE(2134), + [sym__image_description_non_empty] = STATE(843), [sym_html_tag] = STATE(449), - [sym__open_tag] = STATE(710), - [sym__closing_tag] = STATE(710), - [sym__html_comment] = STATE(710), - [sym__processing_instruction] = STATE(710), - [sym__declaration] = STATE(710), - [sym__cdata_section] = STATE(710), + [sym__open_tag] = STATE(702), + [sym__closing_tag] = STATE(702), + [sym__html_comment] = STATE(702), + [sym__processing_instruction] = STATE(702), + [sym__declaration] = STATE(702), + [sym__cdata_section] = STATE(702), [sym_hard_line_break] = STATE(449), [sym__whitespace] = STATE(449), [sym__word] = STATE(449), - [sym__newline] = STATE(2120), - [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__newline] = STATE(2143), + [sym__inline_element_no_underscore_no_link] = STATE(449), + [aux_sym__inline_no_underscore_no_link] = STATE(449), + [sym__text_inline_no_underscore_no_link] = STATE(449), [sym__emphasis_star_no_link] = STATE(1005), [sym__strong_emphasis_star_no_link] = STATE(449), - [sym__emphasis_underscore_no_link] = STATE(998), + [sym__emphasis_underscore_no_link] = STATE(956), [sym__strong_emphasis_underscore_no_link] = STATE(449), [sym__code_span] = STATE(449), - [anon_sym_BANG] = ACTIONS(2720), - [anon_sym_DQUOTE] = ACTIONS(2723), - [anon_sym_POUND] = ACTIONS(2723), - [anon_sym_DOLLAR] = ACTIONS(2723), - [anon_sym_PERCENT] = ACTIONS(2723), - [anon_sym_AMP] = ACTIONS(2726), - [anon_sym_SQUOTE] = ACTIONS(2723), - [anon_sym_LPAREN] = ACTIONS(2723), - [anon_sym_RPAREN] = ACTIONS(2723), - [anon_sym_STAR] = ACTIONS(2723), - [anon_sym_PLUS] = ACTIONS(2723), - [anon_sym_COMMA] = ACTIONS(2723), - [anon_sym_DASH] = ACTIONS(2723), - [anon_sym_DOT] = ACTIONS(2723), - [anon_sym_SLASH] = ACTIONS(2723), - [anon_sym_COLON] = ACTIONS(2723), - [anon_sym_SEMI] = ACTIONS(2723), - [anon_sym_LT] = ACTIONS(2729), - [anon_sym_EQ] = ACTIONS(2723), - [anon_sym_GT] = ACTIONS(2723), - [anon_sym_QMARK] = ACTIONS(2723), - [anon_sym_AT] = ACTIONS(2723), - [anon_sym_BSLASH] = ACTIONS(2732), - [anon_sym_CARET] = ACTIONS(2723), - [anon_sym__] = ACTIONS(2723), - [anon_sym_BQUOTE] = ACTIONS(2723), - [anon_sym_LBRACE] = ACTIONS(2723), - [anon_sym_PIPE] = ACTIONS(2723), - [anon_sym_RBRACE] = ACTIONS(2723), - [anon_sym_TILDE] = ACTIONS(2723), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2735), - [anon_sym_LT_QMARK] = ACTIONS(2738), - [aux_sym__html_block_4_token1] = ACTIONS(2741), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2744), - [sym_backslash_escape] = ACTIONS(2747), - [sym_entity_reference] = ACTIONS(2747), - [sym_numeric_character_reference] = ACTIONS(2747), - [sym_uri_autolink] = ACTIONS(2747), - [sym_email_autolink] = ACTIONS(2747), - [sym__whitespace_ge_2] = ACTIONS(2750), - [aux_sym__whitespace_token1] = ACTIONS(2753), - [sym__word_no_digit] = ACTIONS(2747), - [sym__digits] = ACTIONS(2747), - [aux_sym__newline_token1] = ACTIONS(2756), - [sym__code_span_start] = ACTIONS(2759), - [sym__emphasis_open_star] = ACTIONS(2762), - [sym__emphasis_open_underscore] = ACTIONS(2765), - [sym__emphasis_close_underscore] = ACTIONS(2768), + [anon_sym_BANG] = ACTIONS(2662), + [anon_sym_DQUOTE] = ACTIONS(2665), + [anon_sym_POUND] = ACTIONS(2665), + [anon_sym_DOLLAR] = ACTIONS(2665), + [anon_sym_PERCENT] = ACTIONS(2665), + [anon_sym_AMP] = ACTIONS(2668), + [anon_sym_SQUOTE] = ACTIONS(2665), + [anon_sym_LPAREN] = ACTIONS(2665), + [anon_sym_RPAREN] = ACTIONS(2665), + [anon_sym_STAR] = ACTIONS(2665), + [anon_sym_PLUS] = ACTIONS(2665), + [anon_sym_COMMA] = ACTIONS(2665), + [anon_sym_DASH] = ACTIONS(2665), + [anon_sym_DOT] = ACTIONS(2665), + [anon_sym_SLASH] = ACTIONS(2665), + [anon_sym_COLON] = ACTIONS(2665), + [anon_sym_SEMI] = ACTIONS(2665), + [anon_sym_LT] = ACTIONS(2671), + [anon_sym_EQ] = ACTIONS(2665), + [anon_sym_GT] = ACTIONS(2665), + [anon_sym_QMARK] = ACTIONS(2665), + [anon_sym_AT] = ACTIONS(2665), + [anon_sym_BSLASH] = ACTIONS(2674), + [anon_sym_CARET] = ACTIONS(2665), + [anon_sym__] = ACTIONS(2665), + [anon_sym_BQUOTE] = ACTIONS(2665), + [anon_sym_LBRACE] = ACTIONS(2665), + [anon_sym_PIPE] = ACTIONS(2665), + [anon_sym_RBRACE] = ACTIONS(2665), + [anon_sym_TILDE] = ACTIONS(2665), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2677), + [anon_sym_LT_QMARK] = ACTIONS(2680), + [aux_sym__html_block_4_token1] = ACTIONS(2683), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2686), + [sym_backslash_escape] = ACTIONS(2689), + [sym_entity_reference] = ACTIONS(2689), + [sym_numeric_character_reference] = ACTIONS(2689), + [sym_uri_autolink] = ACTIONS(2689), + [sym_email_autolink] = ACTIONS(2689), + [sym__whitespace_ge_2] = ACTIONS(2692), + [aux_sym__whitespace_token1] = ACTIONS(2695), + [sym__word_no_digit] = ACTIONS(2689), + [sym__digits] = ACTIONS(2689), + [aux_sym__newline_token1] = ACTIONS(2698), + [sym__code_span_start] = ACTIONS(2701), + [sym__emphasis_open_star] = ACTIONS(2704), + [sym__emphasis_open_underscore] = ACTIONS(2707), + [sym__emphasis_close_star] = ACTIONS(2710), }, - [451] = { + [446] = { + [sym__soft_line_break] = STATE(963), + [sym_image] = STATE(963), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(890), + [sym_html_tag] = STATE(963), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(963), + [sym__whitespace] = STATE(963), + [sym__word] = STATE(963), + [sym__newline] = STATE(2141), + [sym__inline_element_no_link] = STATE(963), + [aux_sym__inline_no_link] = STATE(447), + [sym__text_inline_no_link] = STATE(963), + [sym__emphasis_star_no_link] = STATE(964), + [sym__strong_emphasis_star_no_link] = STATE(963), + [sym__emphasis_underscore_no_link] = STATE(964), + [sym__strong_emphasis_underscore_no_link] = STATE(963), + [sym__code_span] = STATE(963), + [anon_sym_BANG] = ACTIONS(2582), + [anon_sym_DQUOTE] = ACTIONS(2584), + [anon_sym_POUND] = ACTIONS(2584), + [anon_sym_DOLLAR] = ACTIONS(2584), + [anon_sym_PERCENT] = ACTIONS(2584), + [anon_sym_AMP] = ACTIONS(2586), + [anon_sym_SQUOTE] = ACTIONS(2584), + [anon_sym_LPAREN] = ACTIONS(2584), + [anon_sym_RPAREN] = ACTIONS(2584), + [anon_sym_STAR] = ACTIONS(2584), + [anon_sym_PLUS] = ACTIONS(2584), + [anon_sym_COMMA] = ACTIONS(2584), + [anon_sym_DASH] = ACTIONS(2584), + [anon_sym_DOT] = ACTIONS(2584), + [anon_sym_SLASH] = ACTIONS(2584), + [anon_sym_COLON] = ACTIONS(2584), + [anon_sym_SEMI] = ACTIONS(2584), + [anon_sym_LT] = ACTIONS(2588), + [anon_sym_EQ] = ACTIONS(2584), + [anon_sym_GT] = ACTIONS(2584), + [anon_sym_QMARK] = ACTIONS(2584), + [anon_sym_AT] = ACTIONS(2584), + [anon_sym_BSLASH] = ACTIONS(2590), + [anon_sym_RBRACK] = ACTIONS(2712), + [anon_sym_CARET] = ACTIONS(2584), + [anon_sym__] = ACTIONS(2584), + [anon_sym_BQUOTE] = ACTIONS(2584), + [anon_sym_LBRACE] = ACTIONS(2584), + [anon_sym_PIPE] = ACTIONS(2584), + [anon_sym_RBRACE] = ACTIONS(2584), + [anon_sym_TILDE] = ACTIONS(2584), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2594), + [anon_sym_LT_QMARK] = ACTIONS(2596), + [aux_sym__html_block_4_token1] = ACTIONS(2598), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2600), + [sym_backslash_escape] = ACTIONS(2602), + [sym_entity_reference] = ACTIONS(2602), + [sym_numeric_character_reference] = ACTIONS(2602), + [sym_uri_autolink] = ACTIONS(2602), + [sym_email_autolink] = ACTIONS(2602), + [sym__whitespace_ge_2] = ACTIONS(981), + [aux_sym__whitespace_token1] = ACTIONS(983), + [sym__word_no_digit] = ACTIONS(2602), + [sym__digits] = ACTIONS(2602), + [aux_sym__newline_token1] = ACTIONS(41), + [sym__code_span_start] = ACTIONS(2604), + [sym__emphasis_open_star] = ACTIONS(2606), + [sym__emphasis_open_underscore] = ACTIONS(2608), + }, + [447] = { + [sym__soft_line_break] = STATE(963), + [sym_image] = STATE(963), + [sym__image_inline_link] = STATE(820), + [sym__image_shortcut_link] = STATE(820), + [sym__image_full_reference_link] = STATE(820), + [sym__image_collapsed_reference_link] = STATE(820), + [sym__image_description] = STATE(2142), + [sym__image_description_non_empty] = STATE(890), + [sym_html_tag] = STATE(963), + [sym__open_tag] = STATE(823), + [sym__closing_tag] = STATE(823), + [sym__html_comment] = STATE(823), + [sym__processing_instruction] = STATE(823), + [sym__declaration] = STATE(823), + [sym__cdata_section] = STATE(823), + [sym_hard_line_break] = STATE(963), + [sym__whitespace] = STATE(963), + [sym__word] = STATE(963), + [sym__newline] = STATE(2141), + [sym__inline_element_no_link] = STATE(963), + [aux_sym__inline_no_link] = STATE(447), + [sym__text_inline_no_link] = STATE(963), + [sym__emphasis_star_no_link] = STATE(964), + [sym__strong_emphasis_star_no_link] = STATE(963), + [sym__emphasis_underscore_no_link] = STATE(964), + [sym__strong_emphasis_underscore_no_link] = STATE(963), + [sym__code_span] = STATE(963), + [anon_sym_BANG] = ACTIONS(2714), + [anon_sym_DQUOTE] = ACTIONS(2717), + [anon_sym_POUND] = ACTIONS(2717), + [anon_sym_DOLLAR] = ACTIONS(2717), + [anon_sym_PERCENT] = ACTIONS(2717), + [anon_sym_AMP] = ACTIONS(2720), + [anon_sym_SQUOTE] = ACTIONS(2717), + [anon_sym_LPAREN] = ACTIONS(2717), + [anon_sym_RPAREN] = ACTIONS(2717), + [anon_sym_STAR] = ACTIONS(2717), + [anon_sym_PLUS] = ACTIONS(2717), + [anon_sym_COMMA] = ACTIONS(2717), + [anon_sym_DASH] = ACTIONS(2717), + [anon_sym_DOT] = ACTIONS(2717), + [anon_sym_SLASH] = ACTIONS(2717), + [anon_sym_COLON] = ACTIONS(2717), + [anon_sym_SEMI] = ACTIONS(2717), + [anon_sym_LT] = ACTIONS(2723), + [anon_sym_EQ] = ACTIONS(2717), + [anon_sym_GT] = ACTIONS(2717), + [anon_sym_QMARK] = ACTIONS(2717), + [anon_sym_AT] = ACTIONS(2717), + [anon_sym_BSLASH] = ACTIONS(2726), + [anon_sym_RBRACK] = ACTIONS(2729), + [anon_sym_CARET] = ACTIONS(2717), + [anon_sym__] = ACTIONS(2717), + [anon_sym_BQUOTE] = ACTIONS(2717), + [anon_sym_LBRACE] = ACTIONS(2717), + [anon_sym_PIPE] = ACTIONS(2717), + [anon_sym_RBRACE] = ACTIONS(2717), + [anon_sym_TILDE] = ACTIONS(2717), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2731), + [anon_sym_LT_QMARK] = ACTIONS(2734), + [aux_sym__html_block_4_token1] = ACTIONS(2737), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2740), + [sym_backslash_escape] = ACTIONS(2743), + [sym_entity_reference] = ACTIONS(2743), + [sym_numeric_character_reference] = ACTIONS(2743), + [sym_uri_autolink] = ACTIONS(2743), + [sym_email_autolink] = ACTIONS(2743), + [sym__whitespace_ge_2] = ACTIONS(2746), + [aux_sym__whitespace_token1] = ACTIONS(2749), + [sym__word_no_digit] = ACTIONS(2743), + [sym__digits] = ACTIONS(2743), + [aux_sym__newline_token1] = ACTIONS(2752), + [sym__code_span_start] = ACTIONS(2755), + [sym__emphasis_open_star] = ACTIONS(2758), + [sym__emphasis_open_underscore] = ACTIONS(2761), + }, + [448] = { [sym__soft_line_break] = STATE(437), [sym_image] = STATE(437), - [sym__image_inline_link] = STATE(708), - [sym__image_shortcut_link] = STATE(708), - [sym__image_full_reference_link] = STATE(708), - [sym__image_collapsed_reference_link] = STATE(708), - [sym__image_description] = STATE(2137), - [sym__image_description_non_empty] = STATE(847), + [sym__image_inline_link] = STATE(663), + [sym__image_shortcut_link] = STATE(663), + [sym__image_full_reference_link] = STATE(663), + [sym__image_collapsed_reference_link] = STATE(663), + [sym__image_description] = STATE(2134), + [sym__image_description_non_empty] = STATE(843), [sym_html_tag] = STATE(437), - [sym__open_tag] = STATE(710), - [sym__closing_tag] = STATE(710), - [sym__html_comment] = STATE(710), - [sym__processing_instruction] = STATE(710), - [sym__declaration] = STATE(710), - [sym__cdata_section] = STATE(710), + [sym__open_tag] = STATE(702), + [sym__closing_tag] = STATE(702), + [sym__html_comment] = STATE(702), + [sym__processing_instruction] = STATE(702), + [sym__declaration] = STATE(702), + [sym__cdata_section] = STATE(702), [sym_hard_line_break] = STATE(437), [sym__whitespace] = STATE(437), [sym__word] = STATE(437), - [sym__newline] = STATE(2120), - [sym__inline_element_no_star_no_link] = STATE(437), - [aux_sym__inline_no_star_no_link] = STATE(437), - [sym__text_inline_no_star_no_link] = STATE(437), - [sym__emphasis_star_no_link] = STATE(995), + [sym__newline] = STATE(2143), + [sym__inline_element_no_underscore_no_link] = STATE(437), + [aux_sym__inline_no_underscore_no_link] = STATE(437), + [sym__text_inline_no_underscore_no_link] = STATE(437), + [sym__emphasis_star_no_link] = STATE(1005), [sym__strong_emphasis_star_no_link] = STATE(437), - [sym__emphasis_underscore_no_link] = STATE(998), + [sym__emphasis_underscore_no_link] = STATE(1005), [sym__strong_emphasis_underscore_no_link] = STATE(437), [sym__code_span] = STATE(437), + [anon_sym_BANG] = ACTIONS(2502), + [anon_sym_DQUOTE] = ACTIONS(2504), + [anon_sym_POUND] = ACTIONS(2504), + [anon_sym_DOLLAR] = ACTIONS(2504), + [anon_sym_PERCENT] = ACTIONS(2504), + [anon_sym_AMP] = ACTIONS(2506), + [anon_sym_SQUOTE] = ACTIONS(2504), + [anon_sym_LPAREN] = ACTIONS(2504), + [anon_sym_RPAREN] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(2504), + [anon_sym_PLUS] = ACTIONS(2504), + [anon_sym_COMMA] = ACTIONS(2504), + [anon_sym_DASH] = ACTIONS(2504), + [anon_sym_DOT] = ACTIONS(2504), + [anon_sym_SLASH] = ACTIONS(2504), + [anon_sym_COLON] = ACTIONS(2504), + [anon_sym_SEMI] = ACTIONS(2504), + [anon_sym_LT] = ACTIONS(2508), + [anon_sym_EQ] = ACTIONS(2504), + [anon_sym_GT] = ACTIONS(2504), + [anon_sym_QMARK] = ACTIONS(2504), + [anon_sym_AT] = ACTIONS(2504), + [anon_sym_BSLASH] = ACTIONS(2510), + [anon_sym_CARET] = ACTIONS(2504), + [anon_sym__] = ACTIONS(2504), + [anon_sym_BQUOTE] = ACTIONS(2504), + [anon_sym_LBRACE] = ACTIONS(2504), + [anon_sym_PIPE] = ACTIONS(2504), + [anon_sym_RBRACE] = ACTIONS(2504), + [anon_sym_TILDE] = ACTIONS(2504), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2512), + [anon_sym_LT_QMARK] = ACTIONS(2514), + [aux_sym__html_block_4_token1] = ACTIONS(2516), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2518), + [sym_backslash_escape] = ACTIONS(2520), + [sym_entity_reference] = ACTIONS(2520), + [sym_numeric_character_reference] = ACTIONS(2520), + [sym_uri_autolink] = ACTIONS(2520), + [sym_email_autolink] = ACTIONS(2520), + [sym__whitespace_ge_2] = ACTIONS(581), + [aux_sym__whitespace_token1] = ACTIONS(583), + [sym__word_no_digit] = ACTIONS(2520), + [sym__digits] = ACTIONS(2520), + [aux_sym__newline_token1] = ACTIONS(41), + [sym__code_span_start] = ACTIONS(2522), + [sym__emphasis_open_star] = ACTIONS(2524), + [sym__emphasis_open_underscore] = ACTIONS(2526), + [sym__emphasis_close_underscore] = ACTIONS(2764), + }, + [449] = { + [sym__soft_line_break] = STATE(437), + [sym_image] = STATE(437), + [sym__image_inline_link] = STATE(663), + [sym__image_shortcut_link] = STATE(663), + [sym__image_full_reference_link] = STATE(663), + [sym__image_collapsed_reference_link] = STATE(663), + [sym__image_description] = STATE(2134), + [sym__image_description_non_empty] = STATE(843), + [sym_html_tag] = STATE(437), + [sym__open_tag] = STATE(702), + [sym__closing_tag] = STATE(702), + [sym__html_comment] = STATE(702), + [sym__processing_instruction] = STATE(702), + [sym__declaration] = STATE(702), + [sym__cdata_section] = STATE(702), + [sym_hard_line_break] = STATE(437), + [sym__whitespace] = STATE(437), + [sym__word] = STATE(437), + [sym__newline] = STATE(2143), + [sym__inline_element_no_underscore_no_link] = STATE(437), + [aux_sym__inline_no_underscore_no_link] = STATE(437), + [sym__text_inline_no_underscore_no_link] = STATE(437), + [sym__emphasis_star_no_link] = STATE(1005), + [sym__strong_emphasis_star_no_link] = STATE(437), + [sym__emphasis_underscore_no_link] = STATE(1005), + [sym__strong_emphasis_underscore_no_link] = STATE(437), + [sym__code_span] = STATE(437), + [anon_sym_BANG] = ACTIONS(2502), + [anon_sym_DQUOTE] = ACTIONS(2504), + [anon_sym_POUND] = ACTIONS(2504), + [anon_sym_DOLLAR] = ACTIONS(2504), + [anon_sym_PERCENT] = ACTIONS(2504), + [anon_sym_AMP] = ACTIONS(2506), + [anon_sym_SQUOTE] = ACTIONS(2504), + [anon_sym_LPAREN] = ACTIONS(2504), + [anon_sym_RPAREN] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(2504), + [anon_sym_PLUS] = ACTIONS(2504), + [anon_sym_COMMA] = ACTIONS(2504), + [anon_sym_DASH] = ACTIONS(2504), + [anon_sym_DOT] = ACTIONS(2504), + [anon_sym_SLASH] = ACTIONS(2504), + [anon_sym_COLON] = ACTIONS(2504), + [anon_sym_SEMI] = ACTIONS(2504), + [anon_sym_LT] = ACTIONS(2508), + [anon_sym_EQ] = ACTIONS(2504), + [anon_sym_GT] = ACTIONS(2504), + [anon_sym_QMARK] = ACTIONS(2504), + [anon_sym_AT] = ACTIONS(2504), + [anon_sym_BSLASH] = ACTIONS(2510), + [anon_sym_CARET] = ACTIONS(2504), + [anon_sym__] = ACTIONS(2504), + [anon_sym_BQUOTE] = ACTIONS(2504), + [anon_sym_LBRACE] = ACTIONS(2504), + [anon_sym_PIPE] = ACTIONS(2504), + [anon_sym_RBRACE] = ACTIONS(2504), + [anon_sym_TILDE] = ACTIONS(2504), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2512), + [anon_sym_LT_QMARK] = ACTIONS(2514), + [aux_sym__html_block_4_token1] = ACTIONS(2516), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2518), + [sym_backslash_escape] = ACTIONS(2520), + [sym_entity_reference] = ACTIONS(2520), + [sym_numeric_character_reference] = ACTIONS(2520), + [sym_uri_autolink] = ACTIONS(2520), + [sym_email_autolink] = ACTIONS(2520), + [sym__whitespace_ge_2] = ACTIONS(581), + [aux_sym__whitespace_token1] = ACTIONS(583), + [sym__word_no_digit] = ACTIONS(2520), + [sym__digits] = ACTIONS(2520), + [aux_sym__newline_token1] = ACTIONS(41), + [sym__code_span_start] = ACTIONS(2522), + [sym__emphasis_open_star] = ACTIONS(2524), + [sym__emphasis_open_underscore] = ACTIONS(2526), + [sym__emphasis_close_underscore] = ACTIONS(2766), + }, + [450] = { + [sym__soft_line_break] = STATE(444), + [sym_image] = STATE(444), + [sym__image_inline_link] = STATE(713), + [sym__image_shortcut_link] = STATE(713), + [sym__image_full_reference_link] = STATE(713), + [sym__image_collapsed_reference_link] = STATE(713), + [sym__image_description] = STATE(2120), + [sym__image_description_non_empty] = STATE(870), + [sym_html_tag] = STATE(444), + [sym__open_tag] = STATE(715), + [sym__closing_tag] = STATE(715), + [sym__html_comment] = STATE(715), + [sym__processing_instruction] = STATE(715), + [sym__declaration] = STATE(715), + [sym__cdata_section] = STATE(715), + [sym_hard_line_break] = STATE(444), + [sym__whitespace] = STATE(444), + [sym__word] = STATE(444), + [sym__newline] = STATE(2144), + [sym__inline_element_no_star_no_link] = STATE(444), + [aux_sym__inline_no_star_no_link] = STATE(444), + [sym__text_inline_no_star_no_link] = STATE(444), + [sym__emphasis_star_no_link] = STATE(1003), + [sym__strong_emphasis_star_no_link] = STATE(444), + [sym__emphasis_underscore_no_link] = STATE(1003), + [sym__strong_emphasis_underscore_no_link] = STATE(444), + [sym__code_span] = STATE(444), + [anon_sym_BANG] = ACTIONS(2474), + [anon_sym_DQUOTE] = ACTIONS(2476), + [anon_sym_POUND] = ACTIONS(2476), + [anon_sym_DOLLAR] = ACTIONS(2476), + [anon_sym_PERCENT] = ACTIONS(2476), + [anon_sym_AMP] = ACTIONS(2478), + [anon_sym_SQUOTE] = ACTIONS(2476), + [anon_sym_LPAREN] = ACTIONS(2476), + [anon_sym_RPAREN] = ACTIONS(2476), + [anon_sym_STAR] = ACTIONS(2476), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_COMMA] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_DOT] = ACTIONS(2476), + [anon_sym_SLASH] = ACTIONS(2476), + [anon_sym_COLON] = ACTIONS(2476), + [anon_sym_SEMI] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2480), + [anon_sym_EQ] = ACTIONS(2476), + [anon_sym_GT] = ACTIONS(2476), + [anon_sym_QMARK] = ACTIONS(2476), + [anon_sym_AT] = ACTIONS(2476), + [anon_sym_BSLASH] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2476), + [anon_sym__] = ACTIONS(2476), + [anon_sym_BQUOTE] = ACTIONS(2476), + [anon_sym_LBRACE] = ACTIONS(2476), + [anon_sym_PIPE] = ACTIONS(2476), + [anon_sym_RBRACE] = ACTIONS(2476), + [anon_sym_TILDE] = ACTIONS(2476), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2484), + [anon_sym_LT_QMARK] = ACTIONS(2486), + [aux_sym__html_block_4_token1] = ACTIONS(2488), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2490), + [sym_backslash_escape] = ACTIONS(2492), + [sym_entity_reference] = ACTIONS(2492), + [sym_numeric_character_reference] = ACTIONS(2492), + [sym_uri_autolink] = ACTIONS(2492), + [sym_email_autolink] = ACTIONS(2492), + [sym__whitespace_ge_2] = ACTIONS(619), + [aux_sym__whitespace_token1] = ACTIONS(621), + [sym__word_no_digit] = ACTIONS(2492), + [sym__digits] = ACTIONS(2492), + [aux_sym__newline_token1] = ACTIONS(41), + [sym__code_span_start] = ACTIONS(2494), + [sym__emphasis_open_star] = ACTIONS(2496), + [sym__emphasis_open_underscore] = ACTIONS(2498), + [sym__emphasis_close_star] = ACTIONS(2768), + }, + [451] = { + [sym__soft_line_break] = STATE(438), + [sym_image] = STATE(438), + [sym__image_inline_link] = STATE(713), + [sym__image_shortcut_link] = STATE(713), + [sym__image_full_reference_link] = STATE(713), + [sym__image_collapsed_reference_link] = STATE(713), + [sym__image_description] = STATE(2120), + [sym__image_description_non_empty] = STATE(870), + [sym_html_tag] = STATE(438), + [sym__open_tag] = STATE(715), + [sym__closing_tag] = STATE(715), + [sym__html_comment] = STATE(715), + [sym__processing_instruction] = STATE(715), + [sym__declaration] = STATE(715), + [sym__cdata_section] = STATE(715), + [sym_hard_line_break] = STATE(438), + [sym__whitespace] = STATE(438), + [sym__word] = STATE(438), + [sym__newline] = STATE(2144), + [sym__inline_element_no_star_no_link] = STATE(438), + [aux_sym__inline_no_star_no_link] = STATE(438), + [sym__text_inline_no_star_no_link] = STATE(438), + [sym__emphasis_star_no_link] = STATE(1002), + [sym__strong_emphasis_star_no_link] = STATE(438), + [sym__emphasis_underscore_no_link] = STATE(1003), + [sym__strong_emphasis_underscore_no_link] = STATE(438), + [sym__code_span] = STATE(438), [anon_sym_BANG] = ACTIONS(2770), [anon_sym_DQUOTE] = ACTIONS(2773), [anon_sym_POUND] = ACTIONS(2773), @@ -70620,7 +70627,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(2773), [anon_sym_AT] = ACTIONS(2773), [anon_sym_BSLASH] = ACTIONS(2782), - [anon_sym_RBRACK] = ACTIONS(2523), + [anon_sym_RBRACK] = ACTIONS(2389), [anon_sym_CARET] = ACTIONS(2773), [anon_sym__] = ACTIONS(2773), [anon_sym_BQUOTE] = ACTIONS(2773), @@ -70641,162 +70648,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__whitespace_token1] = ACTIONS(2803), [sym__word_no_digit] = ACTIONS(2797), [sym__digits] = ACTIONS(2797), - [aux_sym__newline_token1] = ACTIONS(2546), + [aux_sym__newline_token1] = ACTIONS(2412), [sym__code_span_start] = ACTIONS(2806), [sym__emphasis_open_star] = ACTIONS(2809), [sym__emphasis_open_underscore] = ACTIONS(2812), }, [452] = { - [sym__soft_line_break] = STATE(443), - [sym_image] = STATE(443), - [sym__image_inline_link] = STATE(708), - [sym__image_shortcut_link] = STATE(708), - [sym__image_full_reference_link] = STATE(708), - [sym__image_collapsed_reference_link] = STATE(708), - [sym__image_description] = STATE(2137), - [sym__image_description_non_empty] = STATE(847), - [sym_html_tag] = STATE(443), - [sym__open_tag] = STATE(710), - [sym__closing_tag] = STATE(710), - [sym__html_comment] = STATE(710), - [sym__processing_instruction] = STATE(710), - [sym__declaration] = STATE(710), - [sym__cdata_section] = STATE(710), - [sym_hard_line_break] = STATE(443), - [sym__whitespace] = STATE(443), - [sym__word] = STATE(443), - [sym__newline] = STATE(2120), - [sym__inline_element_no_star_no_link] = STATE(443), - [aux_sym__inline_no_star_no_link] = STATE(443), - [sym__text_inline_no_star_no_link] = STATE(443), - [sym__emphasis_star_no_link] = STATE(986), - [sym__strong_emphasis_star_no_link] = STATE(443), - [sym__emphasis_underscore_no_link] = STATE(998), - [sym__strong_emphasis_underscore_no_link] = STATE(443), - [sym__code_span] = STATE(443), - [anon_sym_BANG] = ACTIONS(2424), - [anon_sym_DQUOTE] = ACTIONS(2426), - [anon_sym_POUND] = ACTIONS(2426), - [anon_sym_DOLLAR] = ACTIONS(2426), - [anon_sym_PERCENT] = ACTIONS(2426), - [anon_sym_AMP] = ACTIONS(2428), - [anon_sym_SQUOTE] = ACTIONS(2426), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_RPAREN] = ACTIONS(2426), - [anon_sym_STAR] = ACTIONS(2426), - [anon_sym_PLUS] = ACTIONS(2426), - [anon_sym_COMMA] = ACTIONS(2426), - [anon_sym_DASH] = ACTIONS(2426), - [anon_sym_DOT] = ACTIONS(2426), - [anon_sym_SLASH] = ACTIONS(2426), - [anon_sym_COLON] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(2426), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_EQ] = ACTIONS(2426), - [anon_sym_GT] = ACTIONS(2426), - [anon_sym_QMARK] = ACTIONS(2426), - [anon_sym_AT] = ACTIONS(2426), - [anon_sym_BSLASH] = ACTIONS(2432), - [anon_sym_CARET] = ACTIONS(2426), - [anon_sym__] = ACTIONS(2426), - [anon_sym_BQUOTE] = ACTIONS(2426), - [anon_sym_LBRACE] = ACTIONS(2426), - [anon_sym_PIPE] = ACTIONS(2426), - [anon_sym_RBRACE] = ACTIONS(2426), - [anon_sym_TILDE] = ACTIONS(2426), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2434), - [anon_sym_LT_QMARK] = ACTIONS(2436), - [aux_sym__html_block_4_token1] = ACTIONS(2438), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2440), + [sym__soft_line_break] = STATE(439), + [sym_image] = STATE(439), + [sym__image_inline_link] = STATE(663), + [sym__image_shortcut_link] = STATE(663), + [sym__image_full_reference_link] = STATE(663), + [sym__image_collapsed_reference_link] = STATE(663), + [sym__image_description] = STATE(2134), + [sym__image_description_non_empty] = STATE(843), + [sym_html_tag] = STATE(439), + [sym__open_tag] = STATE(702), + [sym__closing_tag] = STATE(702), + [sym__html_comment] = STATE(702), + [sym__processing_instruction] = STATE(702), + [sym__declaration] = STATE(702), + [sym__cdata_section] = STATE(702), + [sym_hard_line_break] = STATE(439), + [sym__whitespace] = STATE(439), + [sym__word] = STATE(439), + [sym__newline] = STATE(2143), + [sym__inline_element_no_underscore_no_link] = STATE(439), + [aux_sym__inline_no_underscore_no_link] = STATE(439), + [sym__text_inline_no_underscore_no_link] = STATE(439), + [sym__emphasis_star_no_link] = STATE(1005), + [sym__strong_emphasis_star_no_link] = STATE(439), + [sym__emphasis_underscore_no_link] = STATE(1016), + [sym__strong_emphasis_underscore_no_link] = STATE(439), + [sym__code_span] = STATE(439), + [anon_sym_BANG] = ACTIONS(2502), + [anon_sym_DQUOTE] = ACTIONS(2504), + [anon_sym_POUND] = ACTIONS(2504), + [anon_sym_DOLLAR] = ACTIONS(2504), + [anon_sym_PERCENT] = ACTIONS(2504), + [anon_sym_AMP] = ACTIONS(2506), + [anon_sym_SQUOTE] = ACTIONS(2504), + [anon_sym_LPAREN] = ACTIONS(2504), + [anon_sym_RPAREN] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(2504), + [anon_sym_PLUS] = ACTIONS(2504), + [anon_sym_COMMA] = ACTIONS(2504), + [anon_sym_DASH] = ACTIONS(2504), + [anon_sym_DOT] = ACTIONS(2504), + [anon_sym_SLASH] = ACTIONS(2504), + [anon_sym_COLON] = ACTIONS(2504), + [anon_sym_SEMI] = ACTIONS(2504), + [anon_sym_LT] = ACTIONS(2508), + [anon_sym_EQ] = ACTIONS(2504), + [anon_sym_GT] = ACTIONS(2504), + [anon_sym_QMARK] = ACTIONS(2504), + [anon_sym_AT] = ACTIONS(2504), + [anon_sym_BSLASH] = ACTIONS(2510), + [anon_sym_CARET] = ACTIONS(2504), + [anon_sym__] = ACTIONS(2504), + [anon_sym_BQUOTE] = ACTIONS(2504), + [anon_sym_LBRACE] = ACTIONS(2504), + [anon_sym_PIPE] = ACTIONS(2504), + [anon_sym_RBRACE] = ACTIONS(2504), + [anon_sym_TILDE] = ACTIONS(2504), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2512), + [anon_sym_LT_QMARK] = ACTIONS(2514), + [aux_sym__html_block_4_token1] = ACTIONS(2516), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2518), [sym_backslash_escape] = ACTIONS(2815), [sym_entity_reference] = ACTIONS(2815), [sym_numeric_character_reference] = ACTIONS(2815), [sym_uri_autolink] = ACTIONS(2815), [sym_email_autolink] = ACTIONS(2815), - [sym__whitespace_ge_2] = ACTIONS(600), - [aux_sym__whitespace_token1] = ACTIONS(602), + [sym__whitespace_ge_2] = ACTIONS(581), + [aux_sym__whitespace_token1] = ACTIONS(583), [sym__word_no_digit] = ACTIONS(2815), [sym__digits] = ACTIONS(2815), [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(2444), - [sym__emphasis_open_star] = ACTIONS(2446), - [sym__emphasis_open_underscore] = ACTIONS(2448), + [sym__code_span_start] = ACTIONS(2522), + [sym__emphasis_open_star] = ACTIONS(2524), + [sym__emphasis_open_underscore] = ACTIONS(2526), }, [453] = { - [sym__soft_line_break] = STATE(446), - [sym_image] = STATE(446), - [sym__image_inline_link] = STATE(801), - [sym__image_shortcut_link] = STATE(801), - [sym__image_full_reference_link] = STATE(801), - [sym__image_collapsed_reference_link] = STATE(801), - [sym__image_description] = STATE(2122), - [sym__image_description_non_empty] = STATE(859), - [sym_html_tag] = STATE(446), - [sym__open_tag] = STATE(683), - [sym__closing_tag] = STATE(683), - [sym__html_comment] = STATE(683), - [sym__processing_instruction] = STATE(683), - [sym__declaration] = STATE(683), - [sym__cdata_section] = STATE(683), - [sym_hard_line_break] = STATE(446), - [sym__whitespace] = STATE(446), - [sym__word] = STATE(446), - [sym__newline] = STATE(2123), - [sym__inline_element_no_underscore_no_link] = STATE(446), - [aux_sym__inline_no_underscore_no_link] = STATE(446), - [sym__text_inline_no_underscore_no_link] = STATE(446), - [sym__emphasis_star_no_link] = STATE(999), - [sym__strong_emphasis_star_no_link] = STATE(446), - [sym__emphasis_underscore_no_link] = STATE(1006), - [sym__strong_emphasis_underscore_no_link] = STATE(446), - [sym__code_span] = STATE(446), - [anon_sym_BANG] = ACTIONS(2452), - [anon_sym_DQUOTE] = ACTIONS(2454), - [anon_sym_POUND] = ACTIONS(2454), - [anon_sym_DOLLAR] = ACTIONS(2454), - [anon_sym_PERCENT] = ACTIONS(2454), - [anon_sym_AMP] = ACTIONS(2456), - [anon_sym_SQUOTE] = ACTIONS(2454), - [anon_sym_LPAREN] = ACTIONS(2454), - [anon_sym_RPAREN] = ACTIONS(2454), - [anon_sym_STAR] = ACTIONS(2454), - [anon_sym_PLUS] = ACTIONS(2454), - [anon_sym_COMMA] = ACTIONS(2454), - [anon_sym_DASH] = ACTIONS(2454), - [anon_sym_DOT] = ACTIONS(2454), - [anon_sym_SLASH] = ACTIONS(2454), - [anon_sym_COLON] = ACTIONS(2454), - [anon_sym_SEMI] = ACTIONS(2454), - [anon_sym_LT] = ACTIONS(2458), - [anon_sym_EQ] = ACTIONS(2454), - [anon_sym_GT] = ACTIONS(2454), - [anon_sym_QMARK] = ACTIONS(2454), - [anon_sym_AT] = ACTIONS(2454), - [anon_sym_BSLASH] = ACTIONS(2460), - [anon_sym_CARET] = ACTIONS(2454), - [anon_sym__] = ACTIONS(2454), - [anon_sym_BQUOTE] = ACTIONS(2454), - [anon_sym_LBRACE] = ACTIONS(2454), - [anon_sym_PIPE] = ACTIONS(2454), - [anon_sym_RBRACE] = ACTIONS(2454), - [anon_sym_TILDE] = ACTIONS(2454), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2462), - [anon_sym_LT_QMARK] = ACTIONS(2464), - [aux_sym__html_block_4_token1] = ACTIONS(2466), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2468), + [sym__soft_line_break] = STATE(450), + [sym_image] = STATE(450), + [sym__image_inline_link] = STATE(713), + [sym__image_shortcut_link] = STATE(713), + [sym__image_full_reference_link] = STATE(713), + [sym__image_collapsed_reference_link] = STATE(713), + [sym__image_description] = STATE(2120), + [sym__image_description_non_empty] = STATE(870), + [sym_html_tag] = STATE(450), + [sym__open_tag] = STATE(715), + [sym__closing_tag] = STATE(715), + [sym__html_comment] = STATE(715), + [sym__processing_instruction] = STATE(715), + [sym__declaration] = STATE(715), + [sym__cdata_section] = STATE(715), + [sym_hard_line_break] = STATE(450), + [sym__whitespace] = STATE(450), + [sym__word] = STATE(450), + [sym__newline] = STATE(2144), + [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(936), + [sym__strong_emphasis_star_no_link] = STATE(450), + [sym__emphasis_underscore_no_link] = STATE(1003), + [sym__strong_emphasis_underscore_no_link] = STATE(450), + [sym__code_span] = STATE(450), + [anon_sym_BANG] = ACTIONS(2474), + [anon_sym_DQUOTE] = ACTIONS(2476), + [anon_sym_POUND] = ACTIONS(2476), + [anon_sym_DOLLAR] = ACTIONS(2476), + [anon_sym_PERCENT] = ACTIONS(2476), + [anon_sym_AMP] = ACTIONS(2478), + [anon_sym_SQUOTE] = ACTIONS(2476), + [anon_sym_LPAREN] = ACTIONS(2476), + [anon_sym_RPAREN] = ACTIONS(2476), + [anon_sym_STAR] = ACTIONS(2476), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_COMMA] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_DOT] = ACTIONS(2476), + [anon_sym_SLASH] = ACTIONS(2476), + [anon_sym_COLON] = ACTIONS(2476), + [anon_sym_SEMI] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2480), + [anon_sym_EQ] = ACTIONS(2476), + [anon_sym_GT] = ACTIONS(2476), + [anon_sym_QMARK] = ACTIONS(2476), + [anon_sym_AT] = ACTIONS(2476), + [anon_sym_BSLASH] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2476), + [anon_sym__] = ACTIONS(2476), + [anon_sym_BQUOTE] = ACTIONS(2476), + [anon_sym_LBRACE] = ACTIONS(2476), + [anon_sym_PIPE] = ACTIONS(2476), + [anon_sym_RBRACE] = ACTIONS(2476), + [anon_sym_TILDE] = ACTIONS(2476), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2484), + [anon_sym_LT_QMARK] = ACTIONS(2486), + [aux_sym__html_block_4_token1] = ACTIONS(2488), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2490), [sym_backslash_escape] = ACTIONS(2817), [sym_entity_reference] = ACTIONS(2817), [sym_numeric_character_reference] = ACTIONS(2817), [sym_uri_autolink] = ACTIONS(2817), [sym_email_autolink] = ACTIONS(2817), - [sym__whitespace_ge_2] = ACTIONS(733), - [aux_sym__whitespace_token1] = ACTIONS(735), + [sym__whitespace_ge_2] = ACTIONS(619), + [aux_sym__whitespace_token1] = ACTIONS(621), [sym__word_no_digit] = ACTIONS(2817), [sym__digits] = ACTIONS(2817), [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(2472), - [sym__emphasis_open_star] = ACTIONS(2474), - [sym__emphasis_open_underscore] = ACTIONS(2476), + [sym__code_span_start] = ACTIONS(2494), + [sym__emphasis_open_star] = ACTIONS(2496), + [sym__emphasis_open_underscore] = ACTIONS(2498), }, }; @@ -70818,7 +70825,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__html_block_4_token1, ACTIONS(2830), 1, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - STATE(2351), 1, + STATE(2333), 1, sym_link_label, ACTIONS(31), 2, sym__open_tag_html_block, @@ -70831,7 +70838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_BSLASH, aux_sym__whitespace_token1, - STATE(418), 7, + STATE(380), 7, sym__html_block_1, sym__html_block_2, sym__html_block_3, @@ -70839,7 +70846,7 @@ static const uint16_t ts_small_parse_table[] = { sym__html_block_5, sym__html_block_6, sym__html_block_7, - ACTIONS(1727), 40, + ACTIONS(1845), 40, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -70910,7 +70917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_BSLASH, aux_sym__whitespace_token1, - STATE(412), 7, + STATE(388), 7, sym__html_block_1, sym__html_block_2, sym__html_block_3, @@ -70918,7 +70925,7 @@ static const uint16_t ts_small_parse_table[] = { sym__html_block_5, sym__html_block_6, sym__html_block_7, - ACTIONS(1727), 40, + ACTIONS(1845), 40, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -70964,9 +70971,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__newline_token1, ACTIONS(2847), 1, sym__last_token_whitespace, - STATE(879), 1, + STATE(833), 1, sym__soft_line_break, - STATE(2134), 1, + STATE(2141), 1, sym__newline, ACTIONS(2842), 8, anon_sym_AMP, @@ -71025,107 +71032,38 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [258] = 11, - ACTIONS(663), 1, - aux_sym__newline_token1, - ACTIONS(2857), 1, - sym__whitespace_ge_2, - ACTIONS(2860), 1, - aux_sym__whitespace_token1, - ACTIONS(2866), 1, - sym__code_span_close, - STATE(2138), 1, - sym__newline, - ACTIONS(2863), 2, - sym__word_no_digit, - sym__digits, - ACTIONS(2852), 3, - anon_sym_AMP, - anon_sym_LT, - anon_sym_BSLASH, - ACTIONS(2855), 3, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - STATE(1117), 5, - sym__soft_line_break, - sym__text, - sym__whitespace, - sym__word, - aux_sym__code_span_repeat1, - ACTIONS(675), 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_entity_reference, - sym_numeric_character_reference, - sym_uri_autolink, - sym_email_autolink, - ACTIONS(2849), 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, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - [338] = 12, - ACTIONS(2596), 1, + [258] = 12, + ACTIONS(2698), 1, aux_sym__newline_token1, - ACTIONS(2878), 1, + ACTIONS(2859), 1, sym__whitespace_ge_2, - ACTIONS(2881), 1, + ACTIONS(2862), 1, aux_sym__whitespace_token1, - ACTIONS(2887), 1, + ACTIONS(2868), 1, sym__code_span_close, - STATE(2138), 1, + STATE(2129), 1, sym__newline, - ACTIONS(2874), 2, + ACTIONS(2855), 2, anon_sym_LBRACK, anon_sym_RBRACK, - ACTIONS(2884), 2, + ACTIONS(2865), 2, sym__word_no_digit, sym__digits, - ACTIONS(2871), 3, + ACTIONS(2852), 3, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - ACTIONS(2876), 3, + ACTIONS(2857), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - STATE(1137), 5, + STATE(1175), 5, sym__soft_line_break, sym__text, sym__whitespace, sym__word, aux_sym__code_span_repeat1, - ACTIONS(2608), 10, + ACTIONS(2710), 10, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -71136,7 +71074,7 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, - ACTIONS(2868), 27, + ACTIONS(2849), 27, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -71164,7 +71102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [420] = 3, + [340] = 3, ACTIONS(2847), 1, sym__last_token_whitespace, ACTIONS(2842), 8, @@ -71225,105 +71163,35 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [484] = 12, - ACTIONS(2756), 1, + [404] = 11, + ACTIONS(1030), 1, aux_sym__newline_token1, - ACTIONS(2866), 1, + ACTIONS(2868), 1, sym__code_span_close, - ACTIONS(2897), 1, - sym__whitespace_ge_2, - ACTIONS(2900), 1, - aux_sym__whitespace_token1, - STATE(2138), 1, - sym__newline, - ACTIONS(2874), 2, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(2903), 2, - sym__word_no_digit, - sym__digits, - ACTIONS(2892), 3, - anon_sym_AMP, - anon_sym_LT, - anon_sym_BSLASH, - ACTIONS(2895), 3, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - STATE(1117), 5, - sym__soft_line_break, - sym__text, - sym__whitespace, - sym__word, - aux_sym__code_span_repeat1, - ACTIONS(2768), 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_entity_reference, - sym_numeric_character_reference, - sym_uri_autolink, - sym_email_autolink, - ACTIONS(2889), 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, - [566] = 11, - ACTIONS(919), 1, - aux_sym__newline_token1, - ACTIONS(2887), 1, - sym__code_span_close, - ACTIONS(2914), 1, + ACTIONS(2878), 1, sym__whitespace_ge_2, - ACTIONS(2917), 1, + ACTIONS(2881), 1, aux_sym__whitespace_token1, - STATE(2138), 1, + STATE(2129), 1, sym__newline, - ACTIONS(2920), 2, + ACTIONS(2884), 2, sym__word_no_digit, sym__digits, - ACTIONS(2909), 3, + ACTIONS(2873), 3, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - ACTIONS(2912), 3, + ACTIONS(2876), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - STATE(1137), 5, + STATE(1175), 5, sym__soft_line_break, sym__text, sym__whitespace, sym__word, aux_sym__code_span_repeat1, - ACTIONS(931), 10, + ACTIONS(1042), 10, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -71334,7 +71202,7 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, - ACTIONS(2906), 29, + ACTIONS(2870), 29, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -71364,45 +71232,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [646] = 11, - ACTIONS(1540), 1, + [484] = 12, + ACTIONS(2566), 1, aux_sym__newline_token1, - ACTIONS(2929), 1, + ACTIONS(2895), 1, sym__whitespace_ge_2, - ACTIONS(2932), 1, + ACTIONS(2898), 1, aux_sym__whitespace_token1, - ACTIONS(2938), 1, + ACTIONS(2904), 1, sym__code_span_close, - STATE(2138), 1, + STATE(2129), 1, sym__newline, - ACTIONS(2935), 2, + ACTIONS(2855), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(2901), 2, sym__word_no_digit, sym__digits, - ACTIONS(2819), 3, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - ACTIONS(2926), 3, + ACTIONS(2890), 3, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - STATE(1162), 5, + ACTIONS(2893), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + STATE(1167), 5, sym__soft_line_break, sym__text, sym__whitespace, sym__word, aux_sym__code_span_repeat1, - ACTIONS(1727), 9, + ACTIONS(2578), 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_entity_reference, sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, - ACTIONS(2923), 29, + ACTIONS(2887), 27, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -71423,8 +71295,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, @@ -71432,89 +71302,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [725] = 12, - ACTIONS(2546), 1, + [566] = 11, + ACTIONS(682), 1, aux_sym__newline_token1, - ACTIONS(2874), 1, - anon_sym_LBRACK, - ACTIONS(2938), 1, + ACTIONS(2904), 1, sym__code_span_close, - ACTIONS(2948), 1, + ACTIONS(2914), 1, sym__whitespace_ge_2, - ACTIONS(2951), 1, + ACTIONS(2917), 1, aux_sym__whitespace_token1, - STATE(2138), 1, + STATE(2129), 1, sym__newline, - ACTIONS(2954), 2, + ACTIONS(2920), 2, sym__word_no_digit, sym__digits, - ACTIONS(2943), 3, + ACTIONS(2909), 3, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - ACTIONS(2946), 3, + ACTIONS(2912), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - STATE(1162), 5, + STATE(1167), 5, sym__soft_line_break, sym__text, sym__whitespace, sym__word, aux_sym__code_span_repeat1, - ACTIONS(2523), 9, + ACTIONS(694), 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_entity_reference, sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, - ACTIONS(2940), 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, - 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, - [806] = 2, - ACTIONS(2959), 8, - 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__html_block_6_token1, - aux_sym__whitespace_token1, - ACTIONS(2957), 48, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, + ACTIONS(2906), 29, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -71544,126 +71371,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - aux_sym__html_block_1_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - aux_sym__html_block_6_token2, - sym__open_tag_html_block, - sym__open_tag_html_block_newline, - sym__closing_tag_html_block, - sym__closing_tag_html_block_newline, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, + [646] = 11, + ACTIONS(1467), 1, aux_sym__newline_token1, - [867] = 10, - ACTIONS(2967), 1, - anon_sym_QMARK_GT, - ACTIONS(2969), 1, + ACTIONS(2929), 1, sym__whitespace_ge_2, - ACTIONS(2972), 1, + ACTIONS(2932), 1, aux_sym__whitespace_token1, - ACTIONS(2978), 1, - aux_sym__newline_token1, - ACTIONS(2975), 2, - sym__word_no_digit, - sym__digits, - ACTIONS(2855), 3, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - ACTIONS(2964), 4, - anon_sym_AMP, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_BSLASH, - STATE(1344), 4, - sym__whitespace, - sym__word, + ACTIONS(2938), 1, + sym__code_span_close, + STATE(2129), 1, sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(675), 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_entity_reference, - sym_numeric_character_reference, - sym_uri_autolink, - sym_email_autolink, - ACTIONS(2961), 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, - 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, - [943] = 10, - ACTIONS(2967), 1, - anon_sym_QMARK_GT, - ACTIONS(2969), 1, - sym__whitespace_ge_2, - ACTIONS(2972), 1, - aux_sym__whitespace_token1, - ACTIONS(2981), 1, - aux_sym__newline_token1, - ACTIONS(2975), 2, + ACTIONS(2935), 2, sym__word_no_digit, sym__digits, - ACTIONS(2855), 3, + ACTIONS(2819), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(2964), 4, + ACTIONS(2926), 3, anon_sym_AMP, anon_sym_LT, - anon_sym_QMARK, anon_sym_BSLASH, - STATE(1344), 4, + STATE(1183), 5, + sym__soft_line_break, + sym__text, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(675), 10, + aux_sym__code_span_repeat1, + ACTIONS(1845), 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_entity_reference, sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, - ACTIONS(2961), 28, + ACTIONS(2923), 29, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -71682,6 +71428,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, @@ -71692,28 +71439,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [1019] = 5, - ACTIONS(2983), 1, - sym__line_ending, - STATE(540), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(2985), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(379), 7, + [725] = 2, + ACTIONS(2942), 8, 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__html_block_6_token1, aux_sym__whitespace_token1, - ACTIONS(377), 43, + ACTIONS(2940), 48, 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, @@ -71743,7 +71482,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + aux_sym__html_block_1_token1, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + aux_sym__html_block_6_token2, + sym__open_tag_html_block, + sym__open_tag_html_block_newline, + sym__closing_tag_html_block, + sym__closing_tag_html_block_newline, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -71753,48 +71498,47 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [1085] = 13, - ACTIONS(2993), 1, - anon_sym_DASH, - ACTIONS(2996), 1, - anon_sym_GT, - ACTIONS(2999), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(3001), 1, + [786] = 12, + ACTIONS(2412), 1, + aux_sym__newline_token1, + ACTIONS(2855), 1, + anon_sym_LBRACK, + ACTIONS(2938), 1, + sym__code_span_close, + ACTIONS(2952), 1, sym__whitespace_ge_2, - ACTIONS(3004), 1, + ACTIONS(2955), 1, aux_sym__whitespace_token1, - ACTIONS(3010), 1, - aux_sym__newline_token1, - STATE(1346), 1, - aux_sym__html_comment_repeat1, - ACTIONS(3007), 2, + STATE(2129), 1, + sym__newline, + ACTIONS(2958), 2, sym__word_no_digit, sym__digits, - ACTIONS(2855), 3, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - ACTIONS(2990), 3, + ACTIONS(2947), 3, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - STATE(1347), 3, + ACTIONS(2950), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + STATE(1183), 5, + sym__soft_line_break, + sym__text, sym__whitespace, sym__word, - sym__newline, - ACTIONS(675), 10, + aux_sym__code_span_repeat1, + ACTIONS(2389), 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_entity_reference, sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, - ACTIONS(2987), 27, + ACTIONS(2944), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -71806,14 +71550,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__, @@ -71822,44 +71567,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [1167] = 10, - ACTIONS(3019), 1, + [867] = 11, + ACTIONS(2967), 1, anon_sym_RBRACK_RBRACK_GT, - ACTIONS(3021), 1, + ACTIONS(2969), 1, sym__whitespace_ge_2, - ACTIONS(3024), 1, + ACTIONS(2972), 1, aux_sym__whitespace_token1, - ACTIONS(3030), 1, + ACTIONS(2978), 1, aux_sym__newline_token1, - ACTIONS(3027), 2, + ACTIONS(2981), 1, + sym__open_block, + ACTIONS(2975), 2, sym__word_no_digit, sym__digits, - ACTIONS(2855), 3, + ACTIONS(2819), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3016), 4, + ACTIONS(2964), 4, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, anon_sym_RBRACK, - STATE(1341), 4, + STATE(1346), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(675), 10, + aux_sym__processing_instruction_repeat1, + ACTIONS(1845), 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_entity_reference, sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, - ACTIONS(3013), 28, + ACTIONS(2961), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -71888,45 +71634,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [1243] = 11, - ACTIONS(3038), 1, + [945] = 10, + ACTIONS(2989), 1, anon_sym_RBRACK_RBRACK_GT, - ACTIONS(3040), 1, + ACTIONS(2991), 1, sym__whitespace_ge_2, - ACTIONS(3043), 1, + ACTIONS(2994), 1, aux_sym__whitespace_token1, - ACTIONS(3049), 1, + ACTIONS(3000), 1, aux_sym__newline_token1, - ACTIONS(3052), 1, - sym__open_block, - ACTIONS(3046), 2, + ACTIONS(2997), 2, sym__word_no_digit, sym__digits, - ACTIONS(2819), 3, + ACTIONS(2912), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3035), 4, + ACTIONS(2986), 4, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, anon_sym_RBRACK, - STATE(1553), 4, + STATE(1540), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(1727), 9, + aux_sym__processing_instruction_repeat1, + ACTIONS(694), 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_entity_reference, sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, - ACTIONS(3032), 28, + ACTIONS(2983), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -71955,40 +71700,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [1321] = 14, - ACTIONS(3060), 1, - anon_sym_DASH, - ACTIONS(3063), 1, - anon_sym_GT, - ACTIONS(3068), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(3070), 1, + [1021] = 10, + ACTIONS(3008), 1, + anon_sym_QMARK_GT, + ACTIONS(3010), 1, sym__whitespace_ge_2, - ACTIONS(3073), 1, + ACTIONS(3013), 1, aux_sym__whitespace_token1, - ACTIONS(3079), 1, + ACTIONS(3019), 1, aux_sym__newline_token1, - STATE(1498), 1, - aux_sym__html_comment_repeat1, - ACTIONS(3066), 2, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(3076), 2, + ACTIONS(3016), 2, sym__word_no_digit, sym__digits, ACTIONS(2876), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3057), 3, + ACTIONS(3005), 4, anon_sym_AMP, anon_sym_LT, + anon_sym_QMARK, anon_sym_BSLASH, - STATE(1499), 3, + STATE(1339), 4, sym__whitespace, sym__word, sym__newline, - ACTIONS(2608), 10, + aux_sym__processing_instruction_repeat1, + ACTIONS(1042), 10, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -71999,7 +71737,7 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, - ACTIONS(3054), 25, + ACTIONS(3002), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -72011,13 +71749,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_QMARK, + anon_sym_GT, anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -72025,40 +71766,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [1405] = 14, - ACTIONS(2999), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(3088), 1, - anon_sym_DASH, - ACTIONS(3091), 1, - anon_sym_GT, - ACTIONS(3096), 1, + [1097] = 11, + ACTIONS(3029), 1, + anon_sym_QMARK_GT, + ACTIONS(3031), 1, sym__whitespace_ge_2, - ACTIONS(3099), 1, + ACTIONS(3034), 1, aux_sym__whitespace_token1, - ACTIONS(3105), 1, + ACTIONS(3040), 1, aux_sym__newline_token1, - STATE(1346), 1, - aux_sym__html_comment_repeat1, - ACTIONS(3094), 2, + ACTIONS(3027), 2, anon_sym_LBRACK, anon_sym_RBRACK, - ACTIONS(3102), 2, + ACTIONS(3037), 2, sym__word_no_digit, sym__digits, - ACTIONS(2895), 3, + ACTIONS(2893), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3085), 3, + ACTIONS(3024), 4, anon_sym_AMP, anon_sym_LT, + anon_sym_QMARK, anon_sym_BSLASH, - STATE(1347), 3, + STATE(1508), 4, sym__whitespace, sym__word, sym__newline, - ACTIONS(2768), 10, + aux_sym__processing_instruction_repeat1, + ACTIONS(2578), 10, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -72069,7 +71806,7 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, - ACTIONS(3082), 25, + ACTIONS(3021), 26, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -72081,12 +71818,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_QMARK, + anon_sym_GT, anon_sym_AT, anon_sym_CARET, anon_sym__, @@ -72095,44 +71833,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [1489] = 10, - ACTIONS(3030), 1, - aux_sym__newline_token1, - ACTIONS(3114), 1, + [1175] = 10, + ACTIONS(2989), 1, anon_sym_RBRACK_RBRACK_GT, - ACTIONS(3116), 1, + ACTIONS(2991), 1, sym__whitespace_ge_2, - ACTIONS(3119), 1, + ACTIONS(2994), 1, aux_sym__whitespace_token1, - ACTIONS(3122), 2, + ACTIONS(3043), 1, + aux_sym__newline_token1, + ACTIONS(2997), 2, sym__word_no_digit, sym__digits, ACTIONS(2912), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3111), 4, + ACTIONS(2986), 4, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, anon_sym_RBRACK, - STATE(1490), 4, + STATE(1540), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(931), 10, + aux_sym__processing_instruction_repeat1, + ACTIONS(694), 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_entity_reference, sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, - ACTIONS(3108), 28, + ACTIONS(2983), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -72161,45 +71899,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [1565] = 11, - ACTIONS(3131), 1, + [1251] = 10, + ACTIONS(3029), 1, anon_sym_QMARK_GT, - ACTIONS(3133), 1, + ACTIONS(3052), 1, sym__whitespace_ge_2, - ACTIONS(3136), 1, + ACTIONS(3055), 1, aux_sym__whitespace_token1, - ACTIONS(3142), 1, + ACTIONS(3061), 1, aux_sym__newline_token1, - ACTIONS(3145), 1, - sym__open_block, - ACTIONS(3139), 2, + ACTIONS(3058), 2, sym__word_no_digit, sym__digits, - ACTIONS(2819), 3, + ACTIONS(2912), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3128), 4, + ACTIONS(3049), 4, anon_sym_AMP, anon_sym_LT, anon_sym_QMARK, anon_sym_BSLASH, - STATE(1369), 4, + STATE(1508), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(1727), 9, + aux_sym__processing_instruction_repeat1, + ACTIONS(694), 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_entity_reference, sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, - ACTIONS(3125), 28, + ACTIONS(3046), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -72228,47 +71965,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [1643] = 11, - ACTIONS(2967), 1, - anon_sym_QMARK_GT, - ACTIONS(3155), 1, - sym__whitespace_ge_2, - ACTIONS(3158), 1, - aux_sym__whitespace_token1, - ACTIONS(3164), 1, - aux_sym__newline_token1, - ACTIONS(3153), 2, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(3161), 2, - sym__word_no_digit, - sym__digits, - ACTIONS(2895), 3, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - ACTIONS(3150), 4, + [1327] = 5, + ACTIONS(3064), 1, + sym__line_ending, + STATE(577), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(3066), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(379), 7, anon_sym_AMP, anon_sym_LT, - anon_sym_QMARK, anon_sym_BSLASH, - STATE(1344), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(2768), 10, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + aux_sym__whitespace_token1, + ACTIONS(377), 43, 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_entity_reference, - sym_numeric_character_reference, - sym_uri_autolink, - sym_email_autolink, - ACTIONS(3147), 26, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -72287,7 +72005,10 @@ 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, @@ -72295,35 +72016,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [1721] = 11, - ACTIONS(3038), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(3040), 1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, sym__whitespace_ge_2, - ACTIONS(3043), 1, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [1393] = 11, + ACTIONS(3074), 1, + anon_sym_QMARK_GT, + ACTIONS(3076), 1, + sym__whitespace_ge_2, + ACTIONS(3079), 1, aux_sym__whitespace_token1, - ACTIONS(3049), 1, + ACTIONS(3085), 1, aux_sym__newline_token1, - ACTIONS(3167), 1, + ACTIONS(3088), 1, sym__open_block, - ACTIONS(3046), 2, + ACTIONS(3082), 2, sym__word_no_digit, sym__digits, ACTIONS(2819), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3035), 4, + ACTIONS(3071), 4, anon_sym_AMP, anon_sym_LT, + anon_sym_QMARK, anon_sym_BSLASH, - anon_sym_RBRACK, - STATE(1553), 4, + STATE(1335), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(1727), 9, + aux_sym__processing_instruction_repeat1, + ACTIONS(1845), 9, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -72333,7 +72064,7 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, - ACTIONS(3032), 28, + ACTIONS(3068), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -72352,9 +72083,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, @@ -72362,33 +72093,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [1799] = 10, - ACTIONS(3114), 1, + [1471] = 10, + ACTIONS(3000), 1, + aux_sym__newline_token1, + ACTIONS(3096), 1, anon_sym_RBRACK_RBRACK_GT, - ACTIONS(3116), 1, + ACTIONS(3098), 1, sym__whitespace_ge_2, - ACTIONS(3119), 1, + ACTIONS(3101), 1, aux_sym__whitespace_token1, - ACTIONS(3169), 1, - aux_sym__newline_token1, - ACTIONS(3122), 2, + ACTIONS(3104), 2, sym__word_no_digit, sym__digits, - ACTIONS(2912), 3, + ACTIONS(2876), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3111), 4, + ACTIONS(3093), 4, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, anon_sym_RBRACK, - STATE(1490), 4, + STATE(1548), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(931), 10, + aux_sym__processing_instruction_repeat1, + ACTIONS(1042), 10, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -72399,7 +72130,7 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, - ACTIONS(3108), 28, + ACTIONS(3090), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -72428,44 +72159,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [1875] = 10, - ACTIONS(3019), 1, + [1547] = 10, + ACTIONS(3096), 1, anon_sym_RBRACK_RBRACK_GT, - ACTIONS(3021), 1, + ACTIONS(3098), 1, sym__whitespace_ge_2, - ACTIONS(3024), 1, + ACTIONS(3101), 1, aux_sym__whitespace_token1, - ACTIONS(3172), 1, + ACTIONS(3107), 1, aux_sym__newline_token1, - ACTIONS(3027), 2, + ACTIONS(3104), 2, sym__word_no_digit, sym__digits, - ACTIONS(2855), 3, + ACTIONS(2876), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3016), 4, + ACTIONS(3093), 4, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, anon_sym_RBRACK, - STATE(1341), 4, + STATE(1548), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(675), 10, + aux_sym__processing_instruction_repeat1, + ACTIONS(1042), 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_entity_reference, sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, - ACTIONS(3013), 28, + ACTIONS(3090), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -72494,49 +72225,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [1951] = 14, - ACTIONS(3181), 1, - anon_sym_DASH, - ACTIONS(3184), 1, - anon_sym_GT, - ACTIONS(3187), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(3189), 1, + [1623] = 11, + ACTIONS(3008), 1, + anon_sym_QMARK_GT, + ACTIONS(3116), 1, sym__whitespace_ge_2, - ACTIONS(3192), 1, + ACTIONS(3119), 1, aux_sym__whitespace_token1, - ACTIONS(3198), 1, + ACTIONS(3125), 1, aux_sym__newline_token1, - ACTIONS(3201), 1, - sym__open_block, - STATE(1556), 1, - aux_sym__html_comment_repeat1, - ACTIONS(3195), 2, + ACTIONS(3027), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(3122), 2, sym__word_no_digit, sym__digits, - ACTIONS(2819), 3, + ACTIONS(2857), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3178), 3, + ACTIONS(3113), 4, anon_sym_AMP, anon_sym_LT, + anon_sym_QMARK, anon_sym_BSLASH, - STATE(1547), 3, + STATE(1339), 4, sym__whitespace, sym__word, sym__newline, - ACTIONS(1727), 9, + aux_sym__processing_instruction_repeat1, + ACTIONS(2710), 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_entity_reference, sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, - ACTIONS(3175), 27, + ACTIONS(3110), 26, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -72548,15 +72277,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_QMARK, + anon_sym_GT, anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -72564,36 +72292,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [2035] = 11, - ACTIONS(3209), 1, + [1701] = 10, + ACTIONS(3008), 1, anon_sym_QMARK_GT, - ACTIONS(3211), 1, + ACTIONS(3010), 1, sym__whitespace_ge_2, - ACTIONS(3214), 1, + ACTIONS(3013), 1, aux_sym__whitespace_token1, - ACTIONS(3220), 1, + ACTIONS(3128), 1, aux_sym__newline_token1, - ACTIONS(3153), 2, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(3217), 2, + ACTIONS(3016), 2, sym__word_no_digit, sym__digits, ACTIONS(2876), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3206), 4, + ACTIONS(3005), 4, anon_sym_AMP, anon_sym_LT, anon_sym_QMARK, anon_sym_BSLASH, - STATE(1496), 4, + STATE(1339), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(2608), 10, + aux_sym__processing_instruction_repeat1, + ACTIONS(1042), 10, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -72604,7 +72329,7 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, - ACTIONS(3203), 26, + ACTIONS(3002), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -72624,6 +72349,8 @@ 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, @@ -72631,47 +72358,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [2113] = 12, - ACTIONS(3019), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(3229), 1, - anon_sym_LBRACK, - ACTIONS(3231), 1, - anon_sym_RBRACK, - ACTIONS(3233), 1, - sym__whitespace_ge_2, - ACTIONS(3236), 1, - aux_sym__whitespace_token1, - ACTIONS(3242), 1, - aux_sym__newline_token1, - ACTIONS(3239), 2, - sym__word_no_digit, - sym__digits, - ACTIONS(2895), 3, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - ACTIONS(3226), 3, + [1777] = 5, + ACTIONS(3131), 1, + sym__line_ending, + STATE(557), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(3133), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(379), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - STATE(1341), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(2768), 10, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + aux_sym__whitespace_token1, + ACTIONS(377), 43, 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_entity_reference, - sym_numeric_character_reference, - sym_uri_autolink, - sym_email_autolink, - ACTIONS(3223), 27, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -72692,6 +72400,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, @@ -72699,48 +72409,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [2193] = 13, - ACTIONS(3068), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(3251), 1, - anon_sym_DASH, - ACTIONS(3254), 1, - anon_sym_GT, - ACTIONS(3257), 1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, sym__whitespace_ge_2, - ACTIONS(3260), 1, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [1843] = 12, + ACTIONS(2989), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(3141), 1, + anon_sym_LBRACK, + ACTIONS(3143), 1, + anon_sym_RBRACK, + ACTIONS(3145), 1, + sym__whitespace_ge_2, + ACTIONS(3148), 1, aux_sym__whitespace_token1, - ACTIONS(3266), 1, + ACTIONS(3154), 1, aux_sym__newline_token1, - STATE(1498), 1, - aux_sym__html_comment_repeat1, - ACTIONS(3263), 2, + ACTIONS(3151), 2, sym__word_no_digit, sym__digits, - ACTIONS(2912), 3, + ACTIONS(2893), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3248), 3, + ACTIONS(3138), 3, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - STATE(1499), 3, + STATE(1540), 4, sym__whitespace, sym__word, sym__newline, - ACTIONS(931), 10, + aux_sym__processing_instruction_repeat1, + ACTIONS(2578), 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_entity_reference, sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, - ACTIONS(3245), 27, + ACTIONS(3135), 27, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -72752,15 +72471,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, @@ -72768,35 +72487,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [2275] = 11, - ACTIONS(3131), 1, - anon_sym_QMARK_GT, - ACTIONS(3133), 1, + [1923] = 11, + ACTIONS(2967), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(2969), 1, sym__whitespace_ge_2, - ACTIONS(3136), 1, + ACTIONS(2972), 1, aux_sym__whitespace_token1, - ACTIONS(3142), 1, + ACTIONS(2978), 1, aux_sym__newline_token1, - ACTIONS(3269), 1, + ACTIONS(3157), 1, sym__open_block, - ACTIONS(3139), 2, + ACTIONS(2975), 2, sym__word_no_digit, sym__digits, ACTIONS(2819), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3128), 4, + ACTIONS(2964), 4, anon_sym_AMP, anon_sym_LT, - anon_sym_QMARK, anon_sym_BSLASH, - STATE(1369), 4, + anon_sym_RBRACK, + STATE(1346), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(1727), 9, + aux_sym__processing_instruction_repeat1, + ACTIONS(1845), 9, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -72806,7 +72525,7 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, - ACTIONS(3125), 28, + ACTIONS(2961), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -72825,9 +72544,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, @@ -72835,33 +72554,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [2353] = 10, - ACTIONS(3209), 1, - anon_sym_QMARK_GT, - ACTIONS(3277), 1, + [2001] = 12, + ACTIONS(3096), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(3141), 1, + anon_sym_LBRACK, + ACTIONS(3143), 1, + anon_sym_RBRACK, + ACTIONS(3165), 1, sym__whitespace_ge_2, - ACTIONS(3280), 1, + ACTIONS(3168), 1, aux_sym__whitespace_token1, - ACTIONS(3286), 1, + ACTIONS(3174), 1, aux_sym__newline_token1, - ACTIONS(3283), 2, + ACTIONS(3171), 2, sym__word_no_digit, sym__digits, - ACTIONS(2912), 3, + ACTIONS(2857), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3274), 4, + ACTIONS(3162), 3, anon_sym_AMP, anon_sym_LT, - anon_sym_QMARK, anon_sym_BSLASH, - STATE(1496), 4, + STATE(1548), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(931), 10, + aux_sym__processing_instruction_repeat1, + ACTIONS(2710), 10, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -72872,7 +72594,7 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, - ACTIONS(3271), 28, + ACTIONS(3159), 27, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -72891,9 +72613,8 @@ 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, @@ -72901,48 +72622,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [2429] = 13, - ACTIONS(1614), 1, + [2081] = 10, + ACTIONS(3019), 1, aux_sym__newline_token1, - ACTIONS(3068), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(3251), 1, - anon_sym_DASH, - ACTIONS(3254), 1, - anon_sym_GT, - ACTIONS(3257), 1, + ACTIONS(3029), 1, + anon_sym_QMARK_GT, + ACTIONS(3052), 1, sym__whitespace_ge_2, - ACTIONS(3260), 1, + ACTIONS(3055), 1, aux_sym__whitespace_token1, - STATE(1498), 1, - aux_sym__html_comment_repeat1, - ACTIONS(3263), 2, + ACTIONS(3058), 2, sym__word_no_digit, sym__digits, ACTIONS(2912), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3248), 3, + ACTIONS(3049), 4, anon_sym_AMP, anon_sym_LT, + anon_sym_QMARK, anon_sym_BSLASH, - STATE(1499), 3, + STATE(1508), 4, sym__whitespace, sym__word, sym__newline, - ACTIONS(931), 10, + aux_sym__processing_instruction_repeat1, + ACTIONS(694), 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_entity_reference, sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, - ACTIONS(3245), 27, + ACTIONS(3046), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -72954,12 +72671,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_QMARK, + anon_sym_GT, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -72970,44 +72688,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [2511] = 10, - ACTIONS(2981), 1, - aux_sym__newline_token1, - ACTIONS(3209), 1, + [2157] = 11, + ACTIONS(3074), 1, anon_sym_QMARK_GT, - ACTIONS(3277), 1, + ACTIONS(3076), 1, sym__whitespace_ge_2, - ACTIONS(3280), 1, + ACTIONS(3079), 1, aux_sym__whitespace_token1, - ACTIONS(3283), 2, + ACTIONS(3085), 1, + aux_sym__newline_token1, + ACTIONS(3177), 1, + sym__open_block, + ACTIONS(3082), 2, sym__word_no_digit, sym__digits, - ACTIONS(2912), 3, + ACTIONS(2819), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3274), 4, + ACTIONS(3071), 4, anon_sym_AMP, anon_sym_LT, anon_sym_QMARK, anon_sym_BSLASH, - STATE(1496), 4, + STATE(1335), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(931), 10, + aux_sym__processing_instruction_repeat1, + ACTIONS(1845), 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_entity_reference, sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, - ACTIONS(3271), 28, + ACTIONS(3068), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -73036,47 +72755,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [2587] = 12, - ACTIONS(3114), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(3229), 1, - anon_sym_LBRACK, - ACTIONS(3231), 1, - anon_sym_RBRACK, - ACTIONS(3295), 1, - sym__whitespace_ge_2, - ACTIONS(3298), 1, - aux_sym__whitespace_token1, - ACTIONS(3304), 1, - aux_sym__newline_token1, - ACTIONS(3301), 2, - sym__word_no_digit, - sym__digits, - ACTIONS(2876), 3, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - ACTIONS(3292), 3, + [2235] = 4, + STATE(575), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(3179), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(838), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - STATE(1490), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(2608), 10, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + aux_sym__whitespace_token1, + ACTIONS(836), 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, + 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_entity_reference, sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, - ACTIONS(3289), 27, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [2298] = 4, + STATE(575), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(3179), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(399), 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(397), 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, @@ -73097,6 +72854,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, @@ -73104,48 +72863,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [2667] = 13, - ACTIONS(1614), 1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, aux_sym__newline_token1, - ACTIONS(2993), 1, + [2361] = 11, + ACTIONS(3187), 1, anon_sym_DASH, - ACTIONS(2996), 1, - anon_sym_GT, - ACTIONS(2999), 1, + ACTIONS(3190), 1, anon_sym_DASH_DASH_GT, - ACTIONS(3001), 1, + ACTIONS(3192), 1, sym__whitespace_ge_2, - ACTIONS(3004), 1, + ACTIONS(3195), 1, aux_sym__whitespace_token1, - STATE(1346), 1, - aux_sym__html_comment_repeat1, - ACTIONS(3007), 2, + ACTIONS(3201), 1, + aux_sym__newline_token1, + ACTIONS(3198), 2, sym__word_no_digit, sym__digits, - ACTIONS(2855), 3, + ACTIONS(2912), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(2990), 3, + ACTIONS(3184), 3, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - STATE(1347), 3, + STATE(1507), 3, sym__whitespace, sym__word, sym__newline, - ACTIONS(675), 10, + ACTIONS(694), 11, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_underscore, + anon_sym_GT, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, - ACTIONS(2987), 27, + ACTIONS(3181), 27, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -73173,16 +72939,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [2749] = 5, - ACTIONS(3307), 1, - sym__line_ending, - STATE(548), 1, + [2438] = 4, + STATE(580), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3309), 3, + ACTIONS(3204), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(379), 7, + ACTIONS(882), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -73190,7 +72954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(377), 43, + ACTIONS(880), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -73234,49 +72998,26 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [2815] = 14, - ACTIONS(3181), 1, - anon_sym_DASH, - ACTIONS(3184), 1, - anon_sym_GT, - ACTIONS(3187), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(3189), 1, - sym__whitespace_ge_2, - ACTIONS(3192), 1, - aux_sym__whitespace_token1, - ACTIONS(3198), 1, - aux_sym__newline_token1, - ACTIONS(3311), 1, - sym__open_block, - STATE(1556), 1, - aux_sym__html_comment_repeat1, - ACTIONS(3195), 2, - sym__word_no_digit, - sym__digits, - ACTIONS(2819), 3, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - ACTIONS(3178), 3, + [2501] = 4, + STATE(580), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(3204), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(872), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - STATE(1547), 3, - sym__whitespace, - sym__word, - sym__newline, - ACTIONS(1727), 9, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + aux_sym__whitespace_token1, + ACTIONS(870), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym_uri_autolink, - sym_email_autolink, - ACTIONS(3175), 27, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -73288,11 +73029,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, @@ -73304,14 +73047,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [2899] = 4, - STATE(549), 1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [2564] = 4, + STATE(580), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3313), 3, + ACTIONS(3204), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(953), 7, + ACTIONS(866), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -73319,7 +73072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(951), 43, + ACTIONS(864), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -73363,14 +73116,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [2962] = 4, - STATE(549), 1, + [2627] = 4, + STATE(580), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3313), 3, + ACTIONS(3204), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(576), 7, + ACTIONS(862), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -73378,7 +73131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(574), 43, + ACTIONS(860), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -73422,14 +73175,146 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [3025] = 4, - STATE(549), 1, + [2690] = 11, + ACTIONS(3027), 1, + anon_sym_LBRACK, + ACTIONS(3074), 1, + anon_sym_QMARK_GT, + ACTIONS(3212), 1, + sym__whitespace_ge_2, + ACTIONS(3215), 1, + aux_sym__whitespace_token1, + ACTIONS(3221), 1, + aux_sym__newline_token1, + ACTIONS(3218), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2950), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + ACTIONS(3209), 4, + anon_sym_AMP, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_BSLASH, + STATE(1335), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__processing_instruction_repeat1, + ACTIONS(2389), 9, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + ACTIONS(3206), 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_AT, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [2767] = 11, + ACTIONS(2967), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(3141), 1, + anon_sym_LBRACK, + ACTIONS(3230), 1, + sym__whitespace_ge_2, + ACTIONS(3233), 1, + aux_sym__whitespace_token1, + ACTIONS(3239), 1, + aux_sym__newline_token1, + ACTIONS(3236), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2950), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + ACTIONS(3227), 4, + anon_sym_AMP, + anon_sym_LT, + anon_sym_BSLASH, + anon_sym_RBRACK, + STATE(1346), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__processing_instruction_repeat1, + ACTIONS(2389), 9, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + ACTIONS(3224), 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, + [2844] = 4, + STATE(580), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3313), 3, + ACTIONS(3204), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(679), 7, + ACTIONS(782), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -73437,7 +73322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(677), 43, + ACTIONS(780), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -73481,14 +73366,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [3088] = 4, - STATE(567), 1, + [2907] = 4, + STATE(520), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3315), 3, + ACTIONS(3242), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(872), 7, + ACTIONS(832), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -73496,11 +73381,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(870), 43, + ACTIONS(830), 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, @@ -73540,14 +73425,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [3151] = 4, - STATE(541), 1, + [2970] = 4, + STATE(580), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3317), 3, + ACTIONS(3204), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(935), 7, + ACTIONS(832), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -73555,11 +73440,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(933), 43, + ACTIONS(830), 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, @@ -73599,14 +73484,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [3214] = 4, - STATE(541), 1, + [3033] = 4, + STATE(519), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3317), 3, + ACTIONS(3244), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(864), 7, + ACTIONS(838), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -73614,11 +73499,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(862), 43, + ACTIONS(836), 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, @@ -73658,41 +73543,144 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [3277] = 9, - ACTIONS(2929), 1, - sym__whitespace_ge_2, - ACTIONS(2932), 1, - aux_sym__whitespace_token1, - ACTIONS(3322), 1, - sym__code_span_close, - ACTIONS(3319), 2, - sym__word_no_digit, - sym__digits, - ACTIONS(2819), 3, + [3096] = 4, + STATE(580), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(3204), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(838), 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(2926), 3, + aux_sym__whitespace_token1, + ACTIONS(836), 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_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [3159] = 4, + STATE(486), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(3246), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(876), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - STATE(1593), 4, - sym__text, - sym__whitespace, - sym__word, - aux_sym__code_span_no_newline_repeat1, - ACTIONS(1727), 10, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + aux_sym__whitespace_token1, + ACTIONS(874), 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_entity_reference, sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, aux_sym__newline_token1, - ACTIONS(2923), 29, + [3222] = 4, + STATE(580), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(3204), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(876), 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(874), 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, @@ -73722,14 +73710,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [3350] = 4, - STATE(562), 1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [3285] = 4, + STATE(487), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3324), 3, + ACTIONS(3248), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(935), 7, + ACTIONS(893), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -73737,11 +73735,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(933), 43, + ACTIONS(891), 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, @@ -73781,14 +73779,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [3413] = 4, - STATE(549), 1, + [3348] = 4, + STATE(580), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3313), 3, + ACTIONS(3204), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(683), 7, + ACTIONS(893), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -73796,7 +73794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(681), 43, + ACTIONS(891), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -73840,14 +73838,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [3476] = 4, - STATE(517), 1, + [3411] = 4, + STATE(488), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3326), 3, + ACTIONS(3250), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(813), 7, + ACTIONS(852), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -73855,7 +73853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(811), 43, + ACTIONS(850), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -73899,14 +73897,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [3539] = 4, - STATE(541), 1, + [3474] = 4, + STATE(580), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3317), 3, + ACTIONS(3204), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(872), 7, + ACTIONS(852), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -73914,11 +73912,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(870), 43, + ACTIONS(850), 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, @@ -73958,41 +73956,26 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [3602] = 9, - ACTIONS(2914), 1, - sym__whitespace_ge_2, - ACTIONS(2917), 1, - aux_sym__whitespace_token1, - ACTIONS(3331), 1, - sym__code_span_close, - ACTIONS(3328), 2, - sym__word_no_digit, - sym__digits, - ACTIONS(2909), 3, + [3537] = 4, + STATE(489), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(3252), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(828), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - ACTIONS(2912), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - STATE(1628), 4, - sym__text, - sym__whitespace, - sym__word, - aux_sym__code_span_no_newline_repeat1, - ACTIONS(931), 10, + aux_sym__whitespace_token1, + ACTIONS(826), 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_entity_reference, - sym_numeric_character_reference, - sym_uri_autolink, - sym_email_autolink, - ACTIONS(2906), 29, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -74022,78 +74005,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [3675] = 9, - ACTIONS(2857), 1, - sym__whitespace_ge_2, - ACTIONS(2860), 1, - aux_sym__whitespace_token1, - ACTIONS(3336), 1, - sym__code_span_close, - ACTIONS(3333), 2, - sym__word_no_digit, - sym__digits, - ACTIONS(2852), 3, - anon_sym_AMP, - anon_sym_LT, - anon_sym_BSLASH, - ACTIONS(2855), 3, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - STATE(1571), 4, - sym__text, - sym__whitespace, - sym__word, - aux_sym__code_span_no_newline_repeat1, - ACTIONS(675), 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_entity_reference, sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, - ACTIONS(2849), 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, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - [3748] = 4, - STATE(574), 1, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [3600] = 4, + STATE(580), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3338), 3, + ACTIONS(3204), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(864), 7, + ACTIONS(828), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -74101,11 +74030,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(862), 43, + ACTIONS(826), 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, @@ -74145,14 +74074,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [3811] = 4, - STATE(549), 1, + [3663] = 4, + STATE(492), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3313), 3, + ACTIONS(3254), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(813), 7, + ACTIONS(633), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -74160,7 +74089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(811), 43, + ACTIONS(631), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -74204,14 +74133,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [3874] = 4, - STATE(563), 1, + [3726] = 4, + STATE(580), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3340), 3, + ACTIONS(3204), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1083), 7, + ACTIONS(633), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -74219,7 +74148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1081), 43, + ACTIONS(631), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -74263,14 +74192,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [3937] = 4, - STATE(559), 1, + [3789] = 4, + STATE(494), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3342), 3, + ACTIONS(3256), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1077), 7, + ACTIONS(792), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -74278,7 +74207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1075), 43, + ACTIONS(790), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -74322,14 +74251,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [4000] = 4, - STATE(523), 1, + [3852] = 4, + STATE(496), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3344), 3, + ACTIONS(3258), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1077), 7, + ACTIONS(798), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -74337,11 +74266,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1075), 43, + ACTIONS(796), 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, @@ -74381,14 +74310,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [4063] = 4, - STATE(516), 1, + [3915] = 4, + STATE(498), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3346), 3, + ACTIONS(3260), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1083), 7, + ACTIONS(804), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -74396,11 +74325,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1081), 43, + ACTIONS(802), 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, @@ -74440,14 +74369,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [4126] = 4, - STATE(505), 1, + [3978] = 4, + STATE(500), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3348), 3, + ACTIONS(3262), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(683), 7, + ACTIONS(810), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -74455,7 +74384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(681), 43, + ACTIONS(808), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -74499,14 +74428,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [4189] = 4, - STATE(496), 1, + [4041] = 4, + STATE(502), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3350), 3, + ACTIONS(3264), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1089), 7, + ACTIONS(816), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -74514,11 +74443,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1087), 43, + ACTIONS(814), 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, @@ -74558,83 +74487,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [4252] = 14, - ACTIONS(3187), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(3358), 1, - anon_sym_DASH, - ACTIONS(3361), 1, - anon_sym_GT, - ACTIONS(3364), 1, - anon_sym_LBRACK, - ACTIONS(3366), 1, - sym__whitespace_ge_2, - ACTIONS(3369), 1, - aux_sym__whitespace_token1, - ACTIONS(3375), 1, - aux_sym__newline_token1, - STATE(1556), 1, - aux_sym__html_comment_repeat1, - ACTIONS(3372), 2, - sym__word_no_digit, - sym__digits, - ACTIONS(2946), 3, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - ACTIONS(3355), 3, - anon_sym_AMP, - anon_sym_LT, - anon_sym_BSLASH, - STATE(1547), 3, - sym__whitespace, - sym__word, - sym__newline, - ACTIONS(2523), 9, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym_uri_autolink, - sym_email_autolink, - ACTIONS(3352), 26, - 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_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - [4335] = 4, - STATE(501), 1, + [4104] = 4, + STATE(504), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3378), 3, + ACTIONS(3266), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1095), 7, + ACTIONS(822), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -74642,11 +74502,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1093), 43, + ACTIONS(820), 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, @@ -74686,14 +74546,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [4398] = 4, - STATE(495), 1, + [4167] = 4, + STATE(580), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3380), 3, + ACTIONS(3204), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1101), 7, + ACTIONS(967), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -74701,11 +74561,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1099), 43, + ACTIONS(965), 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, @@ -74745,26 +74605,45 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [4461] = 4, - STATE(543), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(3382), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(1107), 7, - anon_sym_AMP, - anon_sym_LT, - anon_sym_BSLASH, + [4230] = 11, + ACTIONS(1628), 1, + aux_sym__newline_token1, + ACTIONS(3187), 1, + anon_sym_DASH, + ACTIONS(3190), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3192), 1, + sym__whitespace_ge_2, + ACTIONS(3195), 1, + aux_sym__whitespace_token1, + ACTIONS(3198), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2912), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - aux_sym__whitespace_token1, - ACTIONS(1105), 43, + ACTIONS(3184), 3, + anon_sym_AMP, + anon_sym_LT, + anon_sym_BSLASH, + STATE(1507), 3, + sym__whitespace, + sym__word, + sym__newline, + ACTIONS(694), 11, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, + anon_sym_GT, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + ACTIONS(3181), 27, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -74776,13 +74655,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_QMARK, anon_sym_AT, anon_sym_LBRACK, @@ -74794,24 +74671,14 @@ 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_entity_reference, - sym_numeric_character_reference, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [4524] = 4, - STATE(541), 1, + [4307] = 4, + STATE(506), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3317), 3, + ACTIONS(3268), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(823), 7, + ACTIONS(856), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -74819,11 +74686,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(821), 43, + ACTIONS(854), 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, @@ -74863,26 +74730,45 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [4587] = 4, - STATE(549), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(3313), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(789), 7, - anon_sym_AMP, - anon_sym_LT, - anon_sym_BSLASH, + [4370] = 11, + ACTIONS(1628), 1, + aux_sym__newline_token1, + ACTIONS(3276), 1, + anon_sym_DASH, + ACTIONS(3279), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3281), 1, + sym__whitespace_ge_2, + ACTIONS(3284), 1, + aux_sym__whitespace_token1, + ACTIONS(3287), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2876), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - aux_sym__whitespace_token1, - ACTIONS(787), 43, + ACTIONS(3273), 3, + anon_sym_AMP, + anon_sym_LT, + anon_sym_BSLASH, + STATE(1362), 3, + sym__whitespace, + sym__word, + sym__newline, + ACTIONS(1042), 11, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, + anon_sym_GT, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + ACTIONS(3270), 27, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -74894,13 +74780,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_QMARK, anon_sym_AT, anon_sym_LBRACK, @@ -74912,24 +74796,14 @@ 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_entity_reference, - sym_numeric_character_reference, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [4650] = 4, - STATE(576), 1, + [4447] = 4, + STATE(580), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3384), 3, + ACTIONS(3204), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(823), 7, + ACTIONS(856), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -74937,11 +74811,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(821), 43, + ACTIONS(854), 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, @@ -74981,14 +74855,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [4713] = 4, - STATE(541), 1, + [4510] = 4, + STATE(517), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3317), 3, + ACTIONS(3290), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(697), 7, + ACTIONS(961), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -74996,11 +74870,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(695), 43, + ACTIONS(959), 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, @@ -75040,14 +74914,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [4776] = 4, - STATE(549), 1, + [4573] = 4, + STATE(580), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3313), 3, + ACTIONS(3204), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(622), 7, + ACTIONS(889), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -75055,7 +74929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(620), 43, + ACTIONS(887), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -75099,14 +74973,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [4839] = 4, - STATE(544), 1, + [4636] = 4, + STATE(580), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3386), 3, + ACTIONS(3204), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(789), 7, + ACTIONS(899), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -75114,7 +74988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(787), 43, + ACTIONS(897), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -75158,16 +75032,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [4902] = 5, - ACTIONS(3388), 1, - sym__line_ending, - STATE(625), 1, + [4699] = 4, + STATE(523), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3390), 3, + ACTIONS(3292), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(379), 7, + ACTIONS(899), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -75175,10 +75047,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(377), 42, + ACTIONS(897), 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, @@ -75218,14 +75091,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [4967] = 4, - STATE(541), 1, + [4762] = 4, + STATE(532), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3317), 3, + ACTIONS(3294), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(801), 7, + ACTIONS(557), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -75233,11 +75106,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(799), 43, + ACTIONS(555), 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, @@ -75277,14 +75150,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [5030] = 4, - STATE(583), 1, + [4825] = 4, + STATE(580), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3392), 3, + ACTIONS(3204), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(801), 7, + ACTIONS(557), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -75292,11 +75165,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(799), 43, + ACTIONS(555), 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, @@ -75336,14 +75209,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [5093] = 4, - STATE(519), 1, + [4888] = 4, + STATE(575), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3394), 3, + ACTIONS(3179), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(765), 7, + ACTIONS(943), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -75351,7 +75224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(763), 43, + ACTIONS(941), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -75395,26 +75268,41 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [5156] = 4, - STATE(570), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(3396), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(1089), 7, + [4951] = 9, + ACTIONS(2878), 1, + sym__whitespace_ge_2, + ACTIONS(2881), 1, + aux_sym__whitespace_token1, + ACTIONS(3299), 1, + sym__code_span_close, + ACTIONS(3296), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2873), 3, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, + ACTIONS(2876), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - aux_sym__whitespace_token1, - ACTIONS(1087), 43, + STATE(1573), 4, + sym__text, + sym__whitespace, + sym__word, + aux_sym__code_span_no_newline_repeat1, + ACTIONS(1042), 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_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + ACTIONS(2870), 29, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -75444,24 +75332,14 @@ 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_entity_reference, - sym_numeric_character_reference, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [5219] = 4, - STATE(541), 1, + [5024] = 4, + STATE(524), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3317), 3, + ACTIONS(3301), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(572), 7, + ACTIONS(967), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -75469,7 +75347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(570), 43, + ACTIONS(965), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -75513,14 +75391,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [5282] = 4, - STATE(546), 1, + [5087] = 4, + STATE(575), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3398), 3, + ACTIONS(3179), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(986), 7, + ACTIONS(967), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -75528,11 +75406,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(984), 43, + ACTIONS(965), 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, @@ -75572,85 +75450,41 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [5345] = 4, - STATE(549), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(3313), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(618), 7, + [5150] = 9, + ACTIONS(2914), 1, + sym__whitespace_ge_2, + ACTIONS(2917), 1, + aux_sym__whitespace_token1, + ACTIONS(3306), 1, + sym__code_span_close, + ACTIONS(3303), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2909), 3, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, + ACTIONS(2912), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - aux_sym__whitespace_token1, - ACTIONS(616), 43, + STATE(1571), 4, + sym__text, + sym__whitespace, + sym__word, + aux_sym__code_span_no_newline_repeat1, + ACTIONS(694), 10, 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_entity_reference, sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [5408] = 4, - STATE(541), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(3317), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(765), 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(763), 43, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, + ACTIONS(2906), 29, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -75680,24 +75514,14 @@ 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_entity_reference, - sym_numeric_character_reference, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [5471] = 4, - STATE(530), 1, + [5223] = 4, + STATE(527), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3400), 3, + ACTIONS(3308), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(789), 7, + ACTIONS(1063), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -75705,7 +75529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(787), 43, + ACTIONS(1061), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -75749,14 +75573,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [5534] = 4, - STATE(541), 1, + [5286] = 4, + STATE(575), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3317), 3, + ACTIONS(3179), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1000), 7, + ACTIONS(557), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -75764,7 +75588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(998), 43, + ACTIONS(555), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -75808,14 +75632,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [5597] = 4, - STATE(527), 1, + [5349] = 4, + STATE(535), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3402), 3, + ACTIONS(3310), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1000), 7, + ACTIONS(557), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -75823,7 +75647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(998), 43, + ACTIONS(555), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -75867,14 +75691,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [5660] = 4, - STATE(541), 1, + [5412] = 4, + STATE(580), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3317), 3, + ACTIONS(3204), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(576), 7, + ACTIONS(1063), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -75882,11 +75706,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(574), 43, + ACTIONS(1061), 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, @@ -75926,14 +75750,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [5723] = 4, - STATE(532), 1, + [5475] = 4, + STATE(530), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3404), 3, + ACTIONS(3312), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(986), 7, + ACTIONS(899), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -75941,7 +75765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(984), 43, + ACTIONS(897), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -75985,14 +75809,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [5786] = 4, - STATE(541), 1, + [5538] = 4, + STATE(513), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3317), 3, + ACTIONS(3314), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(986), 7, + ACTIONS(1063), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -76000,11 +75824,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(984), 43, + ACTIONS(1061), 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, @@ -76044,14 +75868,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [5849] = 4, - STATE(549), 1, + [5601] = 4, + STATE(575), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3313), 3, + ACTIONS(3179), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(986), 7, + ACTIONS(1063), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -76059,11 +75883,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(984), 43, + ACTIONS(1061), 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, @@ -76103,14 +75927,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [5912] = 4, - STATE(549), 1, + [5664] = 4, + STATE(575), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3313), 3, + ACTIONS(3179), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(614), 7, + ACTIONS(899), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -76118,11 +75942,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(612), 43, + ACTIONS(897), 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, @@ -76162,14 +75986,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [5975] = 4, - STATE(542), 1, + [5727] = 4, + STATE(575), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3406), 3, + ACTIONS(3179), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(391), 7, + ACTIONS(889), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -76177,7 +76001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(389), 43, + ACTIONS(887), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -76221,14 +76045,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [6038] = 4, - STATE(541), 1, + [5790] = 4, + STATE(575), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3317), 3, + ACTIONS(3179), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(391), 7, + ACTIONS(882), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -76236,7 +76060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(389), 43, + ACTIONS(880), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -76280,14 +76104,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [6101] = 4, - STATE(541), 1, + [5853] = 4, + STATE(575), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3408), 3, + ACTIONS(3179), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(399), 7, + ACTIONS(872), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -76295,7 +76119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(397), 43, + ACTIONS(870), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -76339,14 +76163,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [6164] = 4, - STATE(541), 1, + [5916] = 4, + STATE(575), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3317), 3, + ACTIONS(3179), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(409), 7, + ACTIONS(866), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -76354,7 +76178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(407), 43, + ACTIONS(864), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -76398,14 +76222,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [6227] = 4, - STATE(541), 1, + [5979] = 4, + STATE(575), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3317), 3, + ACTIONS(3179), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(953), 7, + ACTIONS(862), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -76413,7 +76237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(951), 43, + ACTIONS(860), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -76457,85 +76281,46 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [6290] = 4, - STATE(549), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(3313), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(765), 7, - anon_sym_AMP, - anon_sym_LT, - anon_sym_BSLASH, + [6042] = 12, + ACTIONS(3322), 1, + anon_sym_DASH, + ACTIONS(3325), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3327), 1, + sym__whitespace_ge_2, + ACTIONS(3330), 1, + aux_sym__whitespace_token1, + ACTIONS(3336), 1, + aux_sym__newline_token1, + ACTIONS(3339), 1, + sym__open_block, + ACTIONS(3333), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2819), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - aux_sym__whitespace_token1, - ACTIONS(763), 43, + ACTIONS(3319), 3, + anon_sym_AMP, + anon_sym_LT, + anon_sym_BSLASH, + STATE(1334), 3, + sym__whitespace, + sym__word, + sym__newline, + ACTIONS(1845), 10, 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_entity_reference, sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [6353] = 4, - STATE(577), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(3411), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(1095), 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(1093), 43, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + ACTIONS(3316), 27, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -76547,13 +76332,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_QMARK, anon_sym_AT, anon_sym_LBRACK, @@ -76565,24 +76348,14 @@ 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_entity_reference, - sym_numeric_character_reference, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [6416] = 4, - STATE(549), 1, + [6121] = 4, + STATE(575), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3313), 3, + ACTIONS(3179), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1000), 7, + ACTIONS(782), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -76590,11 +76363,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(998), 43, + ACTIONS(780), 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, @@ -76634,14 +76407,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [6479] = 4, - STATE(554), 1, + [6184] = 4, + STATE(536), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3413), 3, + ACTIONS(3341), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(391), 7, + ACTIONS(832), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -76649,11 +76422,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(389), 43, + ACTIONS(830), 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, @@ -76693,14 +76466,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [6542] = 4, - STATE(549), 1, + [6247] = 4, + STATE(575), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3313), 3, + ACTIONS(3179), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(391), 7, + ACTIONS(832), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -76708,11 +76481,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(389), 43, + ACTIONS(830), 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, @@ -76752,14 +76525,81 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [6605] = 4, - STATE(549), 1, + [6310] = 12, + ACTIONS(3322), 1, + anon_sym_DASH, + ACTIONS(3325), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3327), 1, + sym__whitespace_ge_2, + ACTIONS(3330), 1, + aux_sym__whitespace_token1, + ACTIONS(3336), 1, + aux_sym__newline_token1, + ACTIONS(3343), 1, + sym__open_block, + ACTIONS(3333), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2819), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + ACTIONS(3319), 3, + anon_sym_AMP, + anon_sym_LT, + anon_sym_BSLASH, + STATE(1334), 3, + sym__whitespace, + sym__word, + sym__newline, + ACTIONS(1845), 10, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + anon_sym_GT, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + ACTIONS(3316), 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, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [6389] = 4, + STATE(537), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3415), 3, + ACTIONS(3345), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(399), 7, + ACTIONS(838), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -76767,11 +76607,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(397), 43, + ACTIONS(836), 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, @@ -76811,14 +76651,147 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [6668] = 4, - STATE(534), 1, + [6452] = 12, + ACTIONS(3279), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3353), 1, + anon_sym_DASH, + ACTIONS(3358), 1, + sym__whitespace_ge_2, + ACTIONS(3361), 1, + aux_sym__whitespace_token1, + ACTIONS(3367), 1, + aux_sym__newline_token1, + ACTIONS(3356), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(3364), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2857), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + ACTIONS(3350), 3, + anon_sym_AMP, + anon_sym_LT, + anon_sym_BSLASH, + STATE(1362), 3, + sym__whitespace, + sym__word, + sym__newline, + ACTIONS(2710), 11, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + anon_sym_GT, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + ACTIONS(3347), 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, + [6531] = 11, + ACTIONS(3276), 1, + anon_sym_DASH, + ACTIONS(3279), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3281), 1, + sym__whitespace_ge_2, + ACTIONS(3284), 1, + aux_sym__whitespace_token1, + ACTIONS(3370), 1, + aux_sym__newline_token1, + ACTIONS(3287), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2876), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + ACTIONS(3273), 3, + anon_sym_AMP, + anon_sym_LT, + anon_sym_BSLASH, + STATE(1362), 3, + sym__whitespace, + sym__word, + sym__newline, + ACTIONS(1042), 11, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + anon_sym_GT, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + ACTIONS(3270), 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, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [6608] = 4, + STATE(538), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3418), 3, + ACTIONS(3373), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(953), 7, + ACTIONS(876), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -76826,7 +76799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(951), 43, + ACTIONS(874), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -76870,14 +76843,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [6731] = 4, - STATE(555), 1, + [6671] = 4, + STATE(575), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3420), 3, + ACTIONS(3179), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1000), 7, + ACTIONS(876), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -76885,11 +76858,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(998), 43, + ACTIONS(874), 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, @@ -76929,14 +76902,81 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [6794] = 4, - STATE(537), 1, + [6734] = 12, + ACTIONS(3190), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3381), 1, + anon_sym_DASH, + ACTIONS(3386), 1, + sym__whitespace_ge_2, + ACTIONS(3389), 1, + aux_sym__whitespace_token1, + ACTIONS(3395), 1, + aux_sym__newline_token1, + ACTIONS(3384), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(3392), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2893), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + ACTIONS(3378), 3, + anon_sym_AMP, + anon_sym_LT, + anon_sym_BSLASH, + STATE(1507), 3, + sym__whitespace, + sym__word, + sym__newline, + ACTIONS(2578), 11, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + anon_sym_GT, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + ACTIONS(3375), 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, + [6813] = 4, + STATE(539), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3422), 3, + ACTIONS(3398), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(976), 7, + ACTIONS(893), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -76944,11 +76984,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(974), 43, + ACTIONS(891), 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, @@ -76988,14 +77028,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [6857] = 4, - STATE(541), 1, + [6876] = 4, + STATE(575), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3317), 3, + ACTIONS(3179), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(813), 7, + ACTIONS(893), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -77003,7 +77043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(811), 43, + ACTIONS(891), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -77047,14 +77087,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [6920] = 4, - STATE(549), 1, + [6939] = 4, + STATE(540), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3313), 3, + ACTIONS(3400), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(409), 7, + ACTIONS(852), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -77062,11 +77102,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(407), 43, + ACTIONS(850), 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, @@ -77106,14 +77146,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [6983] = 4, - STATE(549), 1, + [7002] = 4, + STATE(575), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3313), 3, + ACTIONS(3179), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(572), 7, + ACTIONS(852), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -77121,11 +77161,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(570), 43, + ACTIONS(850), 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, @@ -77165,14 +77205,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [7046] = 4, - STATE(560), 1, + [7065] = 4, + STATE(580), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3424), 3, + ACTIONS(3204), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(765), 7, + ACTIONS(391), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -77180,7 +77220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(763), 43, + ACTIONS(389), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -77224,14 +77264,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [7109] = 4, + [7128] = 4, STATE(541), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3317), 3, + ACTIONS(3402), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(789), 7, + ACTIONS(828), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -77239,7 +77279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(787), 43, + ACTIONS(826), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -77283,14 +77323,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [7172] = 4, - STATE(499), 1, + [7191] = 4, + STATE(575), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3426), 3, + ACTIONS(3179), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(801), 7, + ACTIONS(828), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -77298,11 +77338,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(799), 43, + ACTIONS(826), 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, @@ -77342,14 +77382,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [7235] = 4, - STATE(549), 1, + [7254] = 4, + STATE(543), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3313), 3, + ACTIONS(3404), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(801), 7, + ACTIONS(633), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -77357,11 +77397,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(799), 43, + ACTIONS(631), 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, @@ -77401,14 +77441,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [7298] = 4, - STATE(549), 1, + [7317] = 4, + STATE(575), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3313), 3, + ACTIONS(3179), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(697), 7, + ACTIONS(633), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -77416,11 +77456,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(695), 43, + ACTIONS(631), 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, @@ -77460,14 +77500,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [7361] = 4, - STATE(493), 1, + [7380] = 4, + STATE(545), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3428), 3, + ACTIONS(3406), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(823), 7, + ACTIONS(792), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -77475,11 +77515,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(821), 43, + ACTIONS(790), 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, @@ -77519,14 +77559,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [7424] = 4, - STATE(541), 1, + [7443] = 4, + STATE(483), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3317), 3, + ACTIONS(3408), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(614), 7, + ACTIONS(798), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -77534,7 +77574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(612), 43, + ACTIONS(796), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -77578,14 +77618,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [7487] = 4, - STATE(549), 1, + [7506] = 4, + STATE(551), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3313), 3, + ACTIONS(3410), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(823), 7, + ACTIONS(804), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -77593,11 +77633,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(821), 43, + ACTIONS(802), 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, @@ -77637,14 +77677,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [7550] = 4, - STATE(491), 1, + [7569] = 4, + STATE(554), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3430), 3, + ACTIONS(3412), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1107), 7, + ACTIONS(810), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -77652,11 +77692,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1105), 43, + ACTIONS(808), 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, @@ -77696,14 +77736,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [7613] = 4, - STATE(581), 1, + [7632] = 4, + STATE(556), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3432), 3, + ACTIONS(3414), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1101), 7, + ACTIONS(816), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -77711,11 +77751,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1099), 43, + ACTIONS(814), 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, @@ -77755,14 +77795,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [7676] = 4, - STATE(557), 1, + [7695] = 4, + STATE(559), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3434), 3, + ACTIONS(3416), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(813), 7, + ACTIONS(822), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -77770,7 +77810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(811), 43, + ACTIONS(820), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -77814,14 +77854,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [7739] = 4, - STATE(541), 1, + [7758] = 4, + STATE(576), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3317), 3, + ACTIONS(3418), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(618), 7, + ACTIONS(967), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -77829,11 +77869,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(616), 43, + ACTIONS(965), 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, @@ -77873,14 +77913,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [7802] = 4, - STATE(520), 1, + [7821] = 4, + STATE(561), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3436), 3, + ACTIONS(3420), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(864), 7, + ACTIONS(856), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -77888,11 +77928,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(862), 43, + ACTIONS(854), 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, @@ -77932,82 +77972,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [7865] = 13, - ACTIONS(3181), 1, - anon_sym_DASH, - ACTIONS(3184), 1, - anon_sym_GT, - ACTIONS(3187), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(3189), 1, - sym__whitespace_ge_2, - ACTIONS(3192), 1, - aux_sym__whitespace_token1, - ACTIONS(3198), 1, - aux_sym__newline_token1, - STATE(1556), 1, - aux_sym__html_comment_repeat1, - ACTIONS(3195), 2, - sym__word_no_digit, - sym__digits, - ACTIONS(2819), 3, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - ACTIONS(3178), 3, - anon_sym_AMP, - anon_sym_LT, - anon_sym_BSLASH, - STATE(1547), 3, - sym__whitespace, - sym__word, - sym__newline, - ACTIONS(1727), 9, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym_uri_autolink, - sym_email_autolink, - ACTIONS(3175), 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, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - [7946] = 4, - STATE(549), 1, + [7884] = 4, + STATE(575), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3313), 3, + ACTIONS(3179), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(864), 7, + ACTIONS(856), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -78015,11 +77987,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(862), 43, + ACTIONS(854), 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, @@ -78059,26 +78031,43 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [8009] = 4, - STATE(536), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(3438), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(976), 7, - anon_sym_AMP, - anon_sym_LT, - anon_sym_BSLASH, + [7947] = 10, + ACTIONS(2967), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(2969), 1, + sym__whitespace_ge_2, + ACTIONS(2972), 1, + aux_sym__whitespace_token1, + ACTIONS(2978), 1, + aux_sym__newline_token1, + ACTIONS(2975), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2819), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - aux_sym__whitespace_token1, - ACTIONS(974), 43, + ACTIONS(2964), 4, + anon_sym_AMP, + anon_sym_LT, + anon_sym_BSLASH, + anon_sym_RBRACK, + STATE(1346), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__processing_instruction_repeat1, + ACTIONS(1845), 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_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + ACTIONS(2961), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -78100,7 +78089,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, @@ -78108,36 +78096,43 @@ 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_entity_reference, - sym_numeric_character_reference, - sym_uri_autolink, - sym_email_autolink, + [8022] = 10, + ACTIONS(3074), 1, + anon_sym_QMARK_GT, + ACTIONS(3076), 1, sym__whitespace_ge_2, + ACTIONS(3079), 1, + aux_sym__whitespace_token1, + ACTIONS(3085), 1, + aux_sym__newline_token1, + ACTIONS(3082), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [8072] = 4, - STATE(529), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(3440), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(872), 7, - anon_sym_AMP, - anon_sym_LT, - anon_sym_BSLASH, + ACTIONS(2819), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - aux_sym__whitespace_token1, - ACTIONS(870), 43, + ACTIONS(3071), 4, + anon_sym_AMP, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_BSLASH, + STATE(1335), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__processing_instruction_repeat1, + ACTIONS(1845), 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_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + ACTIONS(3068), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -78156,7 +78151,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_LBRACK, anon_sym_RBRACK, @@ -78167,53 +78161,26 @@ 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_entity_reference, - sym_numeric_character_reference, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [8135] = 10, - ACTIONS(3131), 1, - anon_sym_QMARK_GT, - ACTIONS(3133), 1, - sym__whitespace_ge_2, - ACTIONS(3136), 1, - aux_sym__whitespace_token1, - ACTIONS(3142), 1, - aux_sym__newline_token1, - ACTIONS(3139), 2, - sym__word_no_digit, - sym__digits, - ACTIONS(2819), 3, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - ACTIONS(3128), 4, + [8097] = 4, + STATE(570), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(3422), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(961), 7, anon_sym_AMP, anon_sym_LT, - anon_sym_QMARK, anon_sym_BSLASH, - STATE(1369), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(1727), 9, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + aux_sym__whitespace_token1, + ACTIONS(959), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym_uri_autolink, - sym_email_autolink, - ACTIONS(3125), 28, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -78232,6 +78199,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, @@ -78242,14 +78210,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [8210] = 4, - STATE(541), 1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [8160] = 5, + ACTIONS(3424), 1, + sym__line_ending, + STATE(613), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3317), 3, + ACTIONS(3426), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(622), 7, + ACTIONS(379), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -78257,11 +78237,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(620), 43, + ACTIONS(377), 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, @@ -78301,43 +78280,26 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [8273] = 10, - ACTIONS(3038), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(3040), 1, - sym__whitespace_ge_2, - ACTIONS(3043), 1, - aux_sym__whitespace_token1, - ACTIONS(3049), 1, - aux_sym__newline_token1, - ACTIONS(3046), 2, - sym__word_no_digit, - sym__digits, - ACTIONS(2819), 3, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - ACTIONS(3035), 4, + [8225] = 4, + STATE(575), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(3428), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(405), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - anon_sym_RBRACK, - STATE(1553), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(1727), 9, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + aux_sym__whitespace_token1, + ACTIONS(403), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym_uri_autolink, - sym_email_autolink, - ACTIONS(3032), 28, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -78359,6 +78321,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, @@ -78366,14 +78329,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [8348] = 4, - STATE(541), 1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [8288] = 4, + STATE(580), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3317), 3, + ACTIONS(3204), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(679), 7, + ACTIONS(943), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -78381,11 +78354,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(677), 43, + ACTIONS(941), 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, @@ -78425,14 +78398,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [8411] = 4, - STATE(549), 1, + [8351] = 4, + STATE(575), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3313), 3, + ACTIONS(3179), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(872), 7, + ACTIONS(391), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -78440,11 +78413,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(870), 43, + ACTIONS(389), 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, @@ -78484,14 +78457,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [8474] = 4, - STATE(538), 1, + [8414] = 4, + STATE(484), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3442), 3, + ACTIONS(3431), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(935), 7, + ACTIONS(391), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -78499,11 +78472,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(933), 43, + ACTIONS(389), 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, @@ -78543,14 +78516,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [8537] = 4, - STATE(492), 1, + [8477] = 4, + STATE(580), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3444), 3, + ACTIONS(3204), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(953), 7, + ACTIONS(399), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -78558,7 +78531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(951), 43, + ACTIONS(397), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -78602,80 +78575,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [8600] = 11, - ACTIONS(3131), 1, - anon_sym_QMARK_GT, - ACTIONS(3153), 1, - anon_sym_LBRACK, - ACTIONS(3452), 1, - sym__whitespace_ge_2, - ACTIONS(3455), 1, - aux_sym__whitespace_token1, - ACTIONS(3461), 1, - aux_sym__newline_token1, - ACTIONS(3458), 2, - sym__word_no_digit, - sym__digits, - ACTIONS(2946), 3, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - ACTIONS(3449), 4, - anon_sym_AMP, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_BSLASH, - STATE(1369), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(2523), 9, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym_uri_autolink, - sym_email_autolink, - ACTIONS(3446), 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_AT, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - [8677] = 4, - STATE(549), 1, + [8540] = 4, + STATE(580), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3313), 3, + ACTIONS(3433), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(935), 7, + ACTIONS(405), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -78683,7 +78590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(933), 43, + ACTIONS(403), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -78727,35 +78634,30 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [8740] = 11, - ACTIONS(3038), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(3229), 1, - anon_sym_LBRACK, - ACTIONS(3470), 1, + [8603] = 9, + ACTIONS(2929), 1, sym__whitespace_ge_2, - ACTIONS(3473), 1, + ACTIONS(2932), 1, aux_sym__whitespace_token1, - ACTIONS(3479), 1, - aux_sym__newline_token1, - ACTIONS(3476), 2, + ACTIONS(3439), 1, + sym__code_span_close, + ACTIONS(3436), 2, sym__word_no_digit, sym__digits, - ACTIONS(2946), 3, + ACTIONS(2819), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3467), 4, + ACTIONS(2926), 3, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - anon_sym_RBRACK, - STATE(1553), 4, + STATE(1623), 4, + sym__text, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(2523), 9, + aux_sym__code_span_no_newline_repeat1, + ACTIONS(1845), 10, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -78765,7 +78667,8 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, - ACTIONS(3464), 27, + aux_sym__newline_token1, + ACTIONS(2923), 29, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -78786,6 +78689,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, @@ -78793,14 +78698,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [8817] = 4, - STATE(541), 1, + [8676] = 4, + STATE(579), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3317), 3, + ACTIONS(3441), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(683), 7, + ACTIONS(391), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -78808,11 +78713,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(681), 43, + ACTIONS(389), 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, @@ -78852,14 +78757,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [8880] = 4, - STATE(553), 1, + [8739] = 4, + STATE(626), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3482), 3, + ACTIONS(3443), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(683), 7, + ACTIONS(557), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -78867,11 +78772,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(681), 43, + ACTIONS(555), 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, @@ -78911,14 +78815,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [8943] = 4, - STATE(632), 1, + [8801] = 4, + STATE(611), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3484), 3, + ACTIONS(3445), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(789), 7, + ACTIONS(852), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -78926,7 +78830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(787), 42, + ACTIONS(850), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -78969,14 +78873,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [9005] = 4, - STATE(587), 1, + [8863] = 4, + STATE(611), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3486), 3, + ACTIONS(3445), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(801), 7, + ACTIONS(967), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -78984,7 +78888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(799), 42, + ACTIONS(965), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -79027,14 +78931,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [9067] = 4, - STATE(632), 1, + [8925] = 4, + STATE(611), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3484), 3, + ACTIONS(3445), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(683), 7, + ACTIONS(862), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -79042,7 +78946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(681), 42, + ACTIONS(860), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -79085,14 +78989,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [9129] = 4, - STATE(627), 1, + [8987] = 4, + STATE(592), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3488), 3, + ACTIONS(3447), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(976), 7, + ACTIONS(967), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -79100,7 +79004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(974), 42, + ACTIONS(965), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -79143,14 +79047,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [9191] = 4, - STATE(610), 1, + [9049] = 4, + STATE(611), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3490), 3, + ACTIONS(3445), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1089), 7, + ACTIONS(872), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -79158,7 +79062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1087), 42, + ACTIONS(870), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -79201,16 +79105,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [9253] = 6, - ACTIONS(919), 1, - aux_sym__newline_token1, - ACTIONS(2206), 1, - sym__last_token_punctuation, - STATE(736), 1, - sym__soft_line_break, - STATE(2120), 1, - sym__newline, - ACTIONS(2912), 7, + [9111] = 4, + STATE(611), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(3445), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(889), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -79218,11 +79120,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(931), 42, + ACTIONS(887), 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, @@ -79261,14 +79162,17 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [9319] = 4, - STATE(632), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(3484), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(679), 7, + aux_sym__newline_token1, + [9173] = 6, + ACTIONS(682), 1, + aux_sym__newline_token1, + ACTIONS(2206), 1, + sym__last_token_punctuation, + STATE(670), 1, + sym__soft_line_break, + STATE(2143), 1, + sym__newline, + ACTIONS(2912), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -79276,10 +79180,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(677), 42, + ACTIONS(694), 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, @@ -79318,15 +79223,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [9381] = 4, - STATE(632), 1, + [9239] = 4, + STATE(611), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3484), 3, + ACTIONS(3445), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(622), 7, + ACTIONS(782), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -79334,7 +79238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(620), 42, + ACTIONS(780), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -79377,14 +79281,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [9443] = 4, - STATE(622), 1, + [9301] = 4, + STATE(611), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3492), 3, + ACTIONS(3445), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1083), 7, + ACTIONS(943), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -79392,7 +79296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1081), 42, + ACTIONS(941), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -79435,14 +79339,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [9505] = 4, - STATE(632), 1, + [9363] = 4, + STATE(611), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3484), 3, + ACTIONS(3445), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(618), 7, + ACTIONS(866), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -79450,7 +79354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(616), 42, + ACTIONS(864), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -79493,14 +79397,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [9567] = 4, - STATE(620), 1, + [9425] = 4, + STATE(591), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3494), 3, + ACTIONS(3449), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1077), 7, + ACTIONS(633), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -79508,7 +79412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1075), 42, + ACTIONS(631), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -79551,14 +79455,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [9629] = 4, - STATE(632), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(3484), 3, - sym__block_continuation, - sym__block_quote_continuation, + [9487] = 6, + ACTIONS(2844), 1, + aux_sym__newline_token1, + ACTIONS(3451), 1, sym__last_token_whitespace, - ACTIONS(614), 7, + STATE(670), 1, + sym__soft_line_break, + STATE(2143), 1, + sym__newline, + ACTIONS(2842), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -79566,10 +79472,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(612), 42, + ACTIONS(2840), 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, @@ -79608,17 +79515,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [9691] = 6, - ACTIONS(2844), 1, - aux_sym__newline_token1, - ACTIONS(3496), 1, + [9553] = 4, + STATE(611), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(3445), 3, + sym__block_continuation, + sym__block_quote_continuation, sym__last_token_whitespace, - STATE(812), 1, - sym__soft_line_break, - STATE(2123), 1, - sym__newline, - ACTIONS(2842), 7, + ACTIONS(633), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -79626,11 +79530,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2840), 42, + ACTIONS(631), 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, @@ -79669,14 +79572,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [9757] = 4, - STATE(617), 1, + aux_sym__newline_token1, + [9615] = 4, + STATE(611), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3498), 3, + ACTIONS(3445), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(789), 7, + ACTIONS(882), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -79684,7 +79588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(787), 42, + ACTIONS(880), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -79727,14 +79631,80 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [9819] = 4, - STATE(632), 1, + [9677] = 12, + ACTIONS(3325), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3459), 1, + anon_sym_DASH, + ACTIONS(3462), 1, + anon_sym_LBRACK, + ACTIONS(3464), 1, + sym__whitespace_ge_2, + ACTIONS(3467), 1, + aux_sym__whitespace_token1, + ACTIONS(3473), 1, + aux_sym__newline_token1, + ACTIONS(3470), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2950), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + ACTIONS(3456), 3, + anon_sym_AMP, + anon_sym_LT, + anon_sym_BSLASH, + STATE(1334), 3, + sym__whitespace, + sym__word, + sym__newline, + ACTIONS(2389), 10, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + anon_sym_GT, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + ACTIONS(3453), 26, + 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_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [9755] = 4, + STATE(608), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3484), 3, + ACTIONS(3476), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(697), 7, + ACTIONS(961), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -79742,7 +79712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(695), 42, + ACTIONS(959), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -79785,14 +79755,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [9881] = 4, - STATE(632), 1, + [9817] = 4, + STATE(611), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3484), 3, + ACTIONS(3445), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(953), 7, + ACTIONS(828), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -79800,7 +79770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(951), 42, + ACTIONS(826), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -79843,14 +79813,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [9943] = 4, - STATE(623), 1, + [9879] = 4, + STATE(622), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3500), 3, + ACTIONS(3478), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(953), 7, + ACTIONS(792), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -79858,7 +79828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(951), 42, + ACTIONS(790), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -79901,14 +79871,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [10005] = 4, - STATE(632), 1, + [9941] = 4, + STATE(611), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3484), 3, + ACTIONS(3445), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(935), 7, + ACTIONS(899), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -79916,7 +79886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(933), 42, + ACTIONS(897), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -79959,14 +79929,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [10067] = 4, - STATE(596), 1, + [10003] = 4, + STATE(586), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3502), 3, + ACTIONS(3480), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(935), 7, + ACTIONS(828), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -79974,7 +79944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(933), 42, + ACTIONS(826), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -80017,16 +79987,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [10129] = 6, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(2206), 1, - sym__last_token_punctuation, - STATE(736), 1, - sym__soft_line_break, - STATE(2120), 1, - sym__newline, - ACTIONS(2912), 7, + [10065] = 4, + STATE(629), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(3482), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(899), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -80034,11 +80002,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(931), 42, + ACTIONS(897), 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, @@ -80077,14 +80044,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [10195] = 4, + aux_sym__newline_token1, + [10127] = 4, STATE(632), 1, aux_sym__ignore_matching_tokens, ACTIONS(3484), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(872), 7, + ACTIONS(798), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -80092,7 +80060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(870), 42, + ACTIONS(796), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -80135,14 +80103,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [10257] = 4, - STATE(612), 1, + [10189] = 4, + STATE(620), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3504), 3, + ACTIONS(3486), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1000), 7, + ACTIONS(804), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -80150,7 +80118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(998), 42, + ACTIONS(802), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -80193,14 +80161,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [10319] = 4, - STATE(632), 1, + [10251] = 4, + STATE(617), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3484), 3, + ACTIONS(3488), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1000), 7, + ACTIONS(810), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -80208,7 +80176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(998), 42, + ACTIONS(808), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -80251,14 +80219,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [10381] = 4, - STATE(600), 1, + [10313] = 4, + STATE(611), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3506), 3, + ACTIONS(3445), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1107), 7, + ACTIONS(856), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -80266,7 +80234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1105), 42, + ACTIONS(854), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -80309,25 +80277,44 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [10443] = 4, - STATE(594), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(3508), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(872), 7, - anon_sym_AMP, - anon_sym_LT, - anon_sym_BSLASH, + [10375] = 11, + ACTIONS(3322), 1, + anon_sym_DASH, + ACTIONS(3325), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3327), 1, + sym__whitespace_ge_2, + ACTIONS(3330), 1, + aux_sym__whitespace_token1, + ACTIONS(3336), 1, + aux_sym__newline_token1, + ACTIONS(3333), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2819), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - aux_sym__whitespace_token1, - ACTIONS(870), 42, + ACTIONS(3319), 3, + anon_sym_AMP, + anon_sym_LT, + anon_sym_BSLASH, + STATE(1334), 3, + sym__whitespace, + sym__word, + sym__newline, + ACTIONS(1845), 10, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_GT, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + ACTIONS(3316), 27, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -80339,13 +80326,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_QMARK, anon_sym_AT, anon_sym_LBRACK, @@ -80357,24 +80342,14 @@ 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_entity_reference, - sym_numeric_character_reference, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [10505] = 4, - STATE(632), 1, + [10451] = 4, + STATE(611), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3484), 3, + ACTIONS(3445), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(864), 7, + ACTIONS(399), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -80382,7 +80357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(862), 42, + ACTIONS(397), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -80425,14 +80400,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [10567] = 4, - STATE(592), 1, + [10513] = 4, + STATE(611), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3510), 3, + ACTIONS(3490), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(864), 7, + ACTIONS(405), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -80440,7 +80415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(862), 42, + ACTIONS(403), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -80483,14 +80458,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [10629] = 4, - STATE(632), 1, + [10575] = 4, + STATE(602), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3484), 3, + ACTIONS(3493), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(572), 7, + ACTIONS(832), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -80498,7 +80473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(570), 42, + ACTIONS(830), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -80541,14 +80516,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [10691] = 4, - STATE(591), 1, + [10637] = 4, + STATE(611), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3512), 3, + ACTIONS(3445), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(823), 7, + ACTIONS(391), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -80556,7 +80531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(821), 42, + ACTIONS(389), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -80599,14 +80574,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [10753] = 4, - STATE(628), 1, + [10699] = 4, + STATE(610), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3514), 3, + ACTIONS(3495), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(683), 7, + ACTIONS(391), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -80614,7 +80589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(681), 42, + ACTIONS(389), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -80657,16 +80632,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [10815] = 6, + [10761] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(2256), 1, - sym__last_token_punctuation, - STATE(812), 1, + ACTIONS(3497), 1, + sym__last_token_whitespace, + STATE(741), 1, sym__soft_line_break, - STATE(2123), 1, + STATE(2144), 1, sym__newline, - ACTIONS(2855), 7, + ACTIONS(2842), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -80674,11 +80649,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(675), 42, + ACTIONS(2840), 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, @@ -80717,14 +80692,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [10881] = 4, - STATE(599), 1, + [10827] = 4, + STATE(593), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3516), 3, + ACTIONS(3499), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(765), 7, + ACTIONS(852), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -80732,7 +80707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(763), 42, + ACTIONS(850), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -80775,14 +80750,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [10943] = 4, - STATE(632), 1, + [10889] = 4, + STATE(611), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3484), 3, + ACTIONS(3445), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(765), 7, + ACTIONS(893), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -80790,7 +80765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(763), 42, + ACTIONS(891), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -80833,14 +80808,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [11005] = 4, - STATE(605), 1, + [10951] = 4, + STATE(588), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3518), 3, + ACTIONS(3501), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1095), 7, + ACTIONS(893), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -80848,7 +80823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1093), 42, + ACTIONS(891), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -80891,14 +80866,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [11067] = 4, - STATE(602), 1, + [11013] = 4, + STATE(584), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3520), 3, + ACTIONS(3503), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1101), 7, + ACTIONS(816), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -80906,7 +80881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1099), 42, + ACTIONS(814), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -80949,14 +80924,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [11129] = 4, - STATE(632), 1, + [11075] = 4, + STATE(611), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3484), 3, + ACTIONS(3445), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(801), 7, + ACTIONS(876), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -80964,7 +80939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(799), 42, + ACTIONS(874), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -81007,16 +80982,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [11191] = 6, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(3522), 1, + [11137] = 4, + STATE(600), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(3505), 3, + sym__block_continuation, + sym__block_quote_continuation, sym__last_token_whitespace, - STATE(736), 1, - sym__soft_line_break, - STATE(2120), 1, - sym__newline, - ACTIONS(2842), 7, + ACTIONS(822), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -81024,11 +80997,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2840), 42, + ACTIONS(820), 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, @@ -81067,14 +81039,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [11257] = 4, - STATE(632), 1, + aux_sym__newline_token1, + [11199] = 4, + STATE(611), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3484), 3, + ACTIONS(3445), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(823), 7, + ACTIONS(832), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -81082,7 +81055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(821), 42, + ACTIONS(830), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -81125,14 +81098,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [11319] = 4, - STATE(632), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(3484), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(576), 7, + [11261] = 6, + ACTIONS(1030), 1, + aux_sym__newline_token1, + ACTIONS(2256), 1, + sym__last_token_punctuation, + STATE(741), 1, + sym__soft_line_break, + STATE(2144), 1, + sym__newline, + ACTIONS(2876), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -81140,10 +81115,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(574), 42, + ACTIONS(1042), 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, @@ -81182,17 +81158,16 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, + [11327] = 6, + ACTIONS(41), 1, aux_sym__newline_token1, - [11381] = 6, - ACTIONS(2844), 1, - aux_sym__newline_token1, - ACTIONS(3522), 1, - sym__last_token_whitespace, - STATE(736), 1, + ACTIONS(2206), 1, + sym__last_token_punctuation, + STATE(670), 1, sym__soft_line_break, - STATE(2120), 1, + STATE(2143), 1, sym__newline, - ACTIONS(2842), 7, + ACTIONS(2912), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -81200,11 +81175,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2840), 42, + ACTIONS(694), 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, @@ -81243,14 +81218,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [11447] = 4, - STATE(632), 1, + [11393] = 4, + STATE(585), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3484), 3, + ACTIONS(3507), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(391), 7, + ACTIONS(1063), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -81258,7 +81233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(389), 42, + ACTIONS(1061), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -81301,16 +81276,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [11509] = 6, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(3496), 1, + [11455] = 4, + STATE(611), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(3445), 3, + sym__block_continuation, + sym__block_quote_continuation, sym__last_token_whitespace, - STATE(812), 1, - sym__soft_line_break, - STATE(2123), 1, - sym__newline, - ACTIONS(2842), 7, + ACTIONS(1063), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -81318,11 +81291,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2840), 42, + ACTIONS(1061), 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, @@ -81361,14 +81333,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [11575] = 4, - STATE(632), 1, + aux_sym__newline_token1, + [11517] = 4, + STATE(597), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3484), 3, + ACTIONS(3509), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(986), 7, + ACTIONS(876), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -81376,7 +81349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(984), 42, + ACTIONS(874), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -81419,14 +81392,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [11637] = 4, - STATE(632), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(3484), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(813), 7, + [11579] = 6, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(2256), 1, + sym__last_token_punctuation, + STATE(741), 1, + sym__soft_line_break, + STATE(2144), 1, + sym__newline, + ACTIONS(2876), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -81434,10 +81409,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(811), 42, + ACTIONS(1042), 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, @@ -81476,15 +81452,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [11699] = 4, - STATE(585), 1, + [11645] = 4, + STATE(611), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3524), 3, + ACTIONS(3445), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(813), 7, + ACTIONS(557), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -81492,7 +81467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(811), 42, + ACTIONS(555), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -81535,16 +81510,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [11761] = 6, - ACTIONS(663), 1, + [11707] = 6, + ACTIONS(2844), 1, aux_sym__newline_token1, - ACTIONS(2256), 1, - sym__last_token_punctuation, - STATE(812), 1, + ACTIONS(3497), 1, + sym__last_token_whitespace, + STATE(741), 1, sym__soft_line_break, - STATE(2123), 1, + STATE(2144), 1, sym__newline, - ACTIONS(2855), 7, + ACTIONS(2842), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -81552,11 +81527,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(675), 42, + ACTIONS(2840), 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, @@ -81595,14 +81570,16 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [11827] = 4, - STATE(634), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(3526), 3, - sym__block_continuation, - sym__block_quote_continuation, + [11773] = 6, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(3451), 1, sym__last_token_whitespace, - ACTIONS(391), 7, + STATE(670), 1, + sym__soft_line_break, + STATE(2143), 1, + sym__newline, + ACTIONS(2842), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -81610,10 +81587,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(389), 42, + ACTIONS(2840), 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, @@ -81652,15 +81630,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [11889] = 4, - STATE(632), 1, + [11839] = 4, + STATE(611), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3528), 3, + ACTIONS(3445), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(399), 7, + ACTIONS(838), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -81668,7 +81645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(397), 42, + ACTIONS(836), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -81711,14 +81688,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [11951] = 4, - STATE(607), 1, + [11901] = 4, + STATE(589), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3531), 3, + ACTIONS(3511), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(986), 7, + ACTIONS(838), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -81726,7 +81703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(984), 42, + ACTIONS(836), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -81769,14 +81746,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [12013] = 4, - STATE(632), 1, + [11963] = 4, + STATE(596), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3484), 3, + ACTIONS(3513), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(409), 7, + ACTIONS(856), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -81784,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(407), 42, + ACTIONS(854), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -81827,14 +81804,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [12075] = 6, + [12025] = 6, ACTIONS(2844), 1, aux_sym__newline_token1, - ACTIONS(3533), 1, + ACTIONS(3515), 1, sym__last_token_whitespace, - STATE(879), 1, + STATE(833), 1, sym__soft_line_break, - STATE(2134), 1, + STATE(2141), 1, sym__newline, ACTIONS(2842), 7, anon_sym_AMP, @@ -81886,14 +81863,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [12140] = 6, - ACTIONS(3535), 1, + [12090] = 6, + ACTIONS(1642), 1, + aux_sym__newline_token1, + ACTIONS(3517), 1, sym__whitespace_ge_2, - ACTIONS(3538), 1, + ACTIONS(3520), 1, aux_sym__whitespace_token1, - ACTIONS(3541), 1, - aux_sym__newline_token1, - STATE(1569), 2, + STATE(1596), 2, sym__whitespace, sym__newline, ACTIONS(2912), 6, @@ -81903,11 +81880,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(931), 41, + ACTIONS(694), 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, @@ -81945,88 +81922,27 @@ static const uint16_t ts_small_parse_table[] = { sym_email_autolink, sym__word_no_digit, sym__digits, - [12205] = 7, - ACTIONS(3544), 1, - sym__whitespace_ge_2, - ACTIONS(3547), 1, - aux_sym__whitespace_token1, - ACTIONS(3550), 1, + [12155] = 6, + ACTIONS(1467), 1, aux_sym__newline_token1, - ACTIONS(3553), 1, - sym__open_block, - STATE(1584), 2, - sym__whitespace, + ACTIONS(2312), 1, + sym__last_token_punctuation, + STATE(833), 1, + sym__soft_line_break, + STATE(2141), 1, sym__newline, - ACTIONS(2819), 6, + ACTIONS(2819), 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(1727), 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, - 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_entity_reference, - sym_numeric_character_reference, - sym_uri_autolink, - sym_email_autolink, - sym__word_no_digit, - sym__digits, - [12272] = 6, - ACTIONS(1658), 1, - aux_sym__newline_token1, - ACTIONS(3555), 1, - sym__whitespace_ge_2, - ACTIONS(3558), 1, aux_sym__whitespace_token1, - STATE(1572), 2, - sym__whitespace, - sym__newline, - ACTIONS(2855), 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(675), 41, + ACTIONS(1845), 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, @@ -82062,30 +81978,31 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, + sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [12337] = 6, - ACTIONS(1658), 1, - aux_sym__newline_token1, - ACTIONS(3535), 1, - sym__whitespace_ge_2, - ACTIONS(3538), 1, - aux_sym__whitespace_token1, - STATE(1569), 2, - sym__whitespace, - sym__newline, - ACTIONS(2912), 6, + [12220] = 6, + ACTIONS(2206), 1, + sym__last_token_punctuation, + ACTIONS(3523), 1, + anon_sym_SLASH, + ACTIONS(3526), 1, + sym__word_no_digit, + STATE(1847), 1, + sym__tag_name, + ACTIONS(2912), 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(931), 41, + aux_sym__whitespace_token1, + ACTIONS(694), 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, @@ -82099,7 +82016,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, @@ -82121,26 +82037,27 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, - sym__word_no_digit, + sym__whitespace_ge_2, sym__digits, - [12402] = 6, - ACTIONS(3555), 1, + aux_sym__newline_token1, + [12285] = 6, + ACTIONS(3517), 1, sym__whitespace_ge_2, - ACTIONS(3558), 1, + ACTIONS(3520), 1, aux_sym__whitespace_token1, - ACTIONS(3561), 1, + ACTIONS(3529), 1, aux_sym__newline_token1, - STATE(1572), 2, + STATE(1596), 2, sym__whitespace, sym__newline, - ACTIONS(2855), 6, + ACTIONS(2912), 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(675), 41, + ACTIONS(694), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -82182,27 +82099,28 @@ static const uint16_t ts_small_parse_table[] = { sym_email_autolink, sym__word_no_digit, sym__digits, - [12467] = 6, - ACTIONS(1540), 1, + [12350] = 6, + ACTIONS(1642), 1, aux_sym__newline_token1, - ACTIONS(2312), 1, - sym__last_token_punctuation, - STATE(879), 1, - sym__soft_line_break, - STATE(2134), 1, + ACTIONS(3532), 1, + sym__whitespace_ge_2, + ACTIONS(3535), 1, + aux_sym__whitespace_token1, + STATE(1628), 2, + sym__whitespace, sym__newline, - ACTIONS(2819), 7, + ACTIONS(2876), 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(1727), 41, + ACTIONS(1042), 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, @@ -82238,31 +82156,30 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, - sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [12532] = 6, - ACTIONS(2256), 1, - sym__last_token_punctuation, - ACTIONS(3564), 1, - anon_sym_SLASH, - ACTIONS(3567), 1, - sym__word_no_digit, - STATE(1831), 1, - sym__tag_name, - ACTIONS(2855), 7, + [12415] = 6, + ACTIONS(3532), 1, + sym__whitespace_ge_2, + ACTIONS(3535), 1, + aux_sym__whitespace_token1, + ACTIONS(3538), 1, + aux_sym__newline_token1, + STATE(1628), 2, + sym__whitespace, + sym__newline, + ACTIONS(2876), 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(675), 41, + ACTIONS(1042), 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, @@ -82276,6 +82193,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, @@ -82297,19 +82215,18 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, - sym__whitespace_ge_2, + sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [12597] = 7, - ACTIONS(3544), 1, + [12480] = 7, + ACTIONS(3541), 1, sym__whitespace_ge_2, - ACTIONS(3547), 1, + ACTIONS(3544), 1, aux_sym__whitespace_token1, - ACTIONS(3550), 1, + ACTIONS(3547), 1, aux_sym__newline_token1, - ACTIONS(3570), 1, + ACTIONS(3550), 1, sym__open_block, - STATE(1584), 2, + STATE(1626), 2, sym__whitespace, sym__newline, ACTIONS(2819), 6, @@ -82319,7 +82236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(1727), 40, + ACTIONS(1845), 40, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -82360,28 +82277,29 @@ static const uint16_t ts_small_parse_table[] = { sym_email_autolink, sym__word_no_digit, sym__digits, - [12664] = 6, - ACTIONS(2206), 1, - sym__last_token_punctuation, - ACTIONS(3572), 1, - anon_sym_SLASH, - ACTIONS(3575), 1, - sym__word_no_digit, - STATE(1829), 1, - sym__tag_name, - ACTIONS(2912), 7, + [12547] = 7, + ACTIONS(3541), 1, + sym__whitespace_ge_2, + ACTIONS(3544), 1, + aux_sym__whitespace_token1, + ACTIONS(3547), 1, + aux_sym__newline_token1, + ACTIONS(3552), 1, + sym__open_block, + STATE(1626), 2, + sym__whitespace, + sym__newline, + ACTIONS(2819), 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(931), 41, + ACTIONS(1845), 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, @@ -82395,6 +82313,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, @@ -82416,19 +82335,18 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, - sym__whitespace_ge_2, + sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [12729] = 6, - ACTIONS(2312), 1, + [12614] = 6, + ACTIONS(2256), 1, sym__last_token_punctuation, - ACTIONS(3578), 1, + ACTIONS(3554), 1, anon_sym_SLASH, - ACTIONS(3581), 1, + ACTIONS(3557), 1, sym__word_no_digit, - STATE(1832), 1, + STATE(1845), 1, sym__tag_name, - ACTIONS(2819), 7, + ACTIONS(2876), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -82436,10 +82354,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1727), 40, + ACTIONS(1042), 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, @@ -82477,10 +82396,12 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__digits, aux_sym__newline_token1, - [12793] = 3, - ACTIONS(2256), 1, + [12679] = 4, + ACTIONS(1845), 1, + anon_sym_RBRACK, + ACTIONS(2312), 1, sym__last_token_punctuation, - ACTIONS(2855), 7, + ACTIONS(3562), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -82488,11 +82409,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(675), 43, + ACTIONS(3560), 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, @@ -82514,7 +82435,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, @@ -82532,24 +82452,27 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [12851] = 4, - ACTIONS(1727), 1, + [12739] = 6, + ACTIONS(3541), 1, + sym__whitespace_ge_2, + ACTIONS(3544), 1, + aux_sym__whitespace_token1, + ACTIONS(3547), 1, aux_sym__newline_token1, - ACTIONS(2312), 1, - sym__last_token_punctuation, - ACTIONS(3586), 7, + STATE(1626), 2, + sym__whitespace, + sym__newline, + ACTIONS(2819), 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(3584), 42, + ACTIONS(1845), 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, @@ -82585,19 +82508,14 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, - sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [12911] = 6, - ACTIONS(2546), 1, - aux_sym__newline_token1, - ACTIONS(3588), 1, + [12803] = 4, + ACTIONS(2256), 1, sym__last_token_punctuation, - STATE(879), 1, - sym__soft_line_break, - STATE(2134), 1, - sym__newline, - ACTIONS(2946), 7, + ACTIONS(3564), 1, + anon_sym_LBRACK, + ACTIONS(2876), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -82605,10 +82523,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2523), 40, + ACTIONS(1042), 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, @@ -82646,16 +82565,13 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [12975] = 6, - ACTIONS(2756), 1, aux_sym__newline_token1, - ACTIONS(3590), 1, + [12863] = 4, + ACTIONS(2206), 1, sym__last_token_punctuation, - STATE(812), 1, - sym__soft_line_break, - STATE(2123), 1, - sym__newline, - ACTIONS(2895), 7, + ACTIONS(3567), 1, + anon_sym_LBRACK, + ACTIONS(2912), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -82663,7 +82579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2768), 40, + ACTIONS(694), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -82688,6 +82604,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, @@ -82704,8 +82621,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [13039] = 3, - ACTIONS(3496), 1, + aux_sym__newline_token1, + [12923] = 3, + ACTIONS(3451), 1, sym__last_token_whitespace, ACTIONS(2842), 7, anon_sym_AMP, @@ -82759,29 +82677,31 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [13097] = 4, - ACTIONS(1727), 1, - aux_sym__newline_token1, - ACTIONS(2312), 1, - sym__last_token_punctuation, - ACTIONS(3586), 7, - anon_sym_AMP, + [12981] = 5, + ACTIONS(3570), 1, + sym__line_ending, + STATE(724), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(379), 3, 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(3584), 42, + ACTIONS(3572), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(377), 43, + sym__split_token, + sym__soft_line_break_marker, 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, @@ -82797,7 +82717,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__, @@ -82806,21 +82725,21 @@ 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_uri_autolink, - sym_email_autolink, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [13157] = 4, - ACTIONS(1727), 1, - anon_sym_RBRACK, + aux_sym__newline_token1, + [13043] = 4, + ACTIONS(1845), 1, + aux_sym__newline_token1, ACTIONS(2312), 1, sym__last_token_punctuation, - ACTIONS(3586), 7, + ACTIONS(3562), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -82828,7 +82747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3584), 42, + ACTIONS(3560), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -82854,6 +82773,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, @@ -82870,13 +82790,16 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, + [13103] = 6, + ACTIONS(2566), 1, aux_sym__newline_token1, - [13217] = 4, - ACTIONS(2256), 1, + ACTIONS(3574), 1, sym__last_token_punctuation, - ACTIONS(3592), 1, - anon_sym_LBRACK, - ACTIONS(2855), 7, + STATE(670), 1, + sym__soft_line_break, + STATE(2143), 1, + sym__newline, + ACTIONS(2893), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -82884,7 +82807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(675), 42, + ACTIONS(2578), 40, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -82909,7 +82832,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, @@ -82926,11 +82848,10 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [13277] = 3, - ACTIONS(3522), 1, - sym__last_token_whitespace, - ACTIONS(2842), 7, + [13167] = 3, + ACTIONS(2256), 1, + sym__last_token_punctuation, + ACTIONS(2876), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -82938,7 +82859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2840), 43, + ACTIONS(1042), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -82982,12 +82903,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [13335] = 4, - ACTIONS(2206), 1, + [13225] = 3, + ACTIONS(2312), 1, sym__last_token_punctuation, - ACTIONS(3595), 1, - anon_sym_LBRACK, - ACTIONS(2912), 7, + ACTIONS(3562), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -82995,7 +82914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(931), 42, + ACTIONS(3560), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -83020,6 +82939,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__, @@ -83038,67 +82958,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [13395] = 5, - ACTIONS(3598), 1, - sym__line_ending, - STATE(693), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(379), 3, - anon_sym_LT, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(3600), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(377), 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, + [13283] = 6, + ACTIONS(2412), 1, aux_sym__newline_token1, - [13457] = 3, - ACTIONS(2312), 1, + ACTIONS(3576), 1, sym__last_token_punctuation, - ACTIONS(3586), 7, + STATE(833), 1, + sym__soft_line_break, + STATE(2141), 1, + sym__newline, + ACTIONS(2950), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -83106,11 +82975,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3584), 43, + ACTIONS(2389), 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, @@ -83131,7 +82999,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__, @@ -83149,13 +83016,12 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, + [13347] = 4, + ACTIONS(1845), 1, aux_sym__newline_token1, - [13515] = 4, - ACTIONS(1727), 1, - anon_sym_RBRACK, ACTIONS(2312), 1, sym__last_token_punctuation, - ACTIONS(3586), 7, + ACTIONS(3562), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -83163,7 +83029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3584), 42, + ACTIONS(3560), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -83189,6 +83055,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, @@ -83205,11 +83072,12 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [13575] = 3, + [13407] = 4, + ACTIONS(1845), 1, + anon_sym_RBRACK, ACTIONS(2312), 1, sym__last_token_punctuation, - ACTIONS(3586), 7, + ACTIONS(3562), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -83217,11 +83085,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3584), 43, + ACTIONS(3560), 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, @@ -83243,7 +83111,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, @@ -83261,16 +83128,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [13633] = 6, - ACTIONS(2596), 1, + [13467] = 6, + ACTIONS(2698), 1, aux_sym__newline_token1, - ACTIONS(3602), 1, + ACTIONS(3578), 1, sym__last_token_punctuation, - STATE(736), 1, + STATE(741), 1, sym__soft_line_break, - STATE(2120), 1, + STATE(2144), 1, sym__newline, - ACTIONS(2876), 7, + ACTIONS(2857), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -83278,7 +83145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2608), 40, + ACTIONS(2710), 40, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -83319,27 +83186,22 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [13697] = 6, - ACTIONS(3544), 1, - sym__whitespace_ge_2, - ACTIONS(3547), 1, - aux_sym__whitespace_token1, - ACTIONS(3550), 1, - aux_sym__newline_token1, - STATE(1584), 2, - sym__whitespace, - sym__newline, - ACTIONS(2819), 6, + [13531] = 3, + ACTIONS(2312), 1, + sym__last_token_punctuation, + ACTIONS(3562), 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(1727), 40, + aux_sym__whitespace_token1, + ACTIONS(3560), 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, @@ -83375,12 +83237,20 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, + sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [13761] = 3, - ACTIONS(2206), 1, + aux_sym__newline_token1, + [13589] = 6, + ACTIONS(2312), 1, sym__last_token_punctuation, - ACTIONS(2912), 7, + ACTIONS(3580), 1, + anon_sym_SLASH, + ACTIONS(3583), 1, + sym__word_no_digit, + STATE(1826), 1, + sym__tag_name, + ACTIONS(2819), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -83388,11 +83258,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(931), 43, + ACTIONS(1845), 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, @@ -83406,7 +83275,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, @@ -83429,15 +83297,12 @@ static const uint16_t ts_small_parse_table[] = { sym_uri_autolink, sym_email_autolink, sym__whitespace_ge_2, - sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [13819] = 4, - ACTIONS(3588), 1, + [13653] = 3, + ACTIONS(2206), 1, sym__last_token_punctuation, - ACTIONS(3604), 1, - anon_sym_LBRACK, - ACTIONS(2946), 7, + ACTIONS(2912), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -83445,10 +83310,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2523), 41, + ACTIONS(694), 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, @@ -83469,6 +83335,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__, @@ -83487,8 +83354,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [13878] = 2, - ACTIONS(2068), 7, + [13711] = 3, + ACTIONS(3497), 1, + sym__last_token_whitespace, + ACTIONS(2842), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -83496,11 +83365,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2066), 43, + ACTIONS(2840), 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, @@ -83540,8 +83409,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [13933] = 2, - ACTIONS(3608), 7, + [13769] = 2, + ACTIONS(3588), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -83549,7 +83418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3606), 43, + ACTIONS(3586), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -83593,8 +83462,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [13988] = 2, - ACTIONS(3612), 7, + [13824] = 2, + ACTIONS(3592), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -83602,11 +83471,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3610), 43, + ACTIONS(3590), 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, @@ -83646,8 +83515,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [14043] = 2, - ACTIONS(3616), 7, + [13879] = 6, + ACTIONS(3574), 1, + sym__last_token_punctuation, + ACTIONS(3594), 1, + anon_sym_SLASH, + ACTIONS(3597), 1, + sym__word_no_digit, + STATE(1847), 1, + sym__tag_name, + ACTIONS(2893), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -83655,7 +83532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3614), 43, + ACTIONS(2578), 39, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -83673,15 +83550,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, @@ -83696,11 +83570,10 @@ static const uint16_t ts_small_parse_table[] = { sym_uri_autolink, sym_email_autolink, sym__whitespace_ge_2, - sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [14098] = 2, - ACTIONS(3620), 7, + [13942] = 2, + ACTIONS(3602), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -83708,11 +83581,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3618), 43, + ACTIONS(3600), 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, @@ -83752,8 +83625,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [14153] = 2, - ACTIONS(3624), 7, + [13997] = 2, + ACTIONS(3606), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -83761,11 +83634,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3622), 43, + ACTIONS(3604), 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, @@ -83805,8 +83678,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [14208] = 2, - ACTIONS(3628), 7, + [14052] = 2, + ACTIONS(3610), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -83814,11 +83687,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3626), 43, + ACTIONS(3608), 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, @@ -83858,8 +83731,12 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [14263] = 2, - ACTIONS(3632), 7, + [14107] = 4, + ACTIONS(3574), 1, + sym__last_token_punctuation, + ACTIONS(3612), 1, + anon_sym_LBRACK, + ACTIONS(2893), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -83867,7 +83744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3630), 43, + ACTIONS(2578), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -83892,8 +83769,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, @@ -83911,8 +83786,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [14318] = 2, - ACTIONS(3636), 7, + [14166] = 2, + ACTIONS(3616), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -83920,7 +83795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3634), 43, + ACTIONS(3614), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -83964,16 +83839,24 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [14373] = 2, - ACTIONS(3640), 7, + [14221] = 6, + ACTIONS(3618), 1, + sym__whitespace_ge_2, + ACTIONS(3621), 1, + aux_sym__whitespace_token1, + ACTIONS(3624), 1, + aux_sym__newline_token1, + STATE(1628), 2, + sym__whitespace, + sym__newline, + ACTIONS(2857), 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(3638), 43, + ACTIONS(2710), 39, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -83998,8 +83881,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, @@ -84013,12 +83894,10 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, - sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [14428] = 2, - ACTIONS(3644), 7, + [14284] = 2, + ACTIONS(3629), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -84026,11 +83905,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3642), 43, + ACTIONS(3627), 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, @@ -84070,8 +83949,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [14483] = 2, - ACTIONS(3648), 7, + [14339] = 2, + ACTIONS(3633), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -84079,7 +83958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3646), 43, + ACTIONS(3631), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -84123,8 +84002,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [14538] = 2, - ACTIONS(2034), 7, + [14394] = 6, + ACTIONS(3578), 1, + sym__last_token_punctuation, + ACTIONS(3635), 1, + anon_sym_SLASH, + ACTIONS(3638), 1, + sym__word_no_digit, + STATE(1845), 1, + sym__tag_name, + ACTIONS(2857), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -84132,11 +84019,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2032), 43, + ACTIONS(2710), 39, 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, @@ -84150,15 +84037,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, @@ -84173,11 +84057,14 @@ static const uint16_t ts_small_parse_table[] = { sym_uri_autolink, sym_email_autolink, sym__whitespace_ge_2, - sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [14593] = 2, - ACTIONS(3652), 7, + [14457] = 4, + ACTIONS(3578), 1, + sym__last_token_punctuation, + ACTIONS(3641), 1, + anon_sym_LBRACK, + ACTIONS(2857), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -84185,7 +84072,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(2710), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -84210,8 +84097,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, @@ -84229,20 +84114,20 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [14648] = 4, - ACTIONS(2312), 1, - sym__last_token_punctuation, - ACTIONS(3654), 1, - anon_sym_LBRACK, - ACTIONS(2819), 7, - anon_sym_AMP, + [14516] = 4, + STATE(676), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(405), 3, 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(1727), 41, + ACTIONS(3643), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(403), 43, + sym__split_token, + sym__soft_line_break_marker, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -84251,6 +84136,7 @@ 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, @@ -84274,18 +84160,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_entity_reference, - sym_numeric_character_reference, - sym_uri_autolink, - sym_email_autolink, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [14707] = 2, - ACTIONS(3659), 7, + [14575] = 3, + ACTIONS(3650), 1, + sym__emphasis_close_underscore, + ACTIONS(3648), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -84293,11 +84180,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3657), 43, + ACTIONS(3646), 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, @@ -84337,8 +84223,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [14762] = 2, - ACTIONS(2046), 7, + [14632] = 3, + ACTIONS(3656), 1, + sym__emphasis_close_star, + ACTIONS(3654), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -84346,11 +84234,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2044), 43, + ACTIONS(3652), 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, @@ -84390,8 +84277,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [14817] = 2, - ACTIONS(2038), 7, + [14689] = 2, + ACTIONS(3660), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -84399,7 +84286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2036), 43, + ACTIONS(3658), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -84443,8 +84330,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [14872] = 2, - ACTIONS(2060), 7, + [14744] = 4, + ACTIONS(2312), 1, + sym__last_token_punctuation, + ACTIONS(3662), 2, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(2819), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -84452,18 +84344,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2058), 43, + ACTIONS(1845), 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, @@ -84477,7 +84367,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__, @@ -84496,8 +84385,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [14927] = 2, - ACTIONS(3663), 7, + [14803] = 2, + ACTIONS(2046), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -84505,11 +84394,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3661), 43, + ACTIONS(2044), 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, @@ -84549,8 +84438,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [14982] = 2, - ACTIONS(2060), 7, + [14858] = 2, + ACTIONS(3666), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -84558,7 +84447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2058), 43, + ACTIONS(3664), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -84602,8 +84491,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [15037] = 2, - ACTIONS(3667), 7, + [14913] = 2, + ACTIONS(3670), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -84611,11 +84500,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3665), 43, + ACTIONS(3668), 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, @@ -84655,8 +84544,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [15092] = 2, - ACTIONS(3671), 7, + [14968] = 2, + ACTIONS(3674), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -84664,7 +84553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3669), 43, + ACTIONS(3672), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -84708,8 +84597,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [15147] = 2, - ACTIONS(417), 7, + [15023] = 2, + ACTIONS(3678), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -84717,7 +84606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(415), 43, + ACTIONS(3676), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -84761,8 +84650,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [15202] = 2, - ACTIONS(2156), 7, + [15078] = 2, + ACTIONS(3682), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -84770,7 +84659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2154), 43, + ACTIONS(3680), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -84814,8 +84703,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [15257] = 2, - ACTIONS(2090), 7, + [15133] = 2, + ACTIONS(3606), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -84823,7 +84712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2088), 43, + ACTIONS(3604), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -84867,8 +84756,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [15312] = 2, - ACTIONS(2146), 7, + [15188] = 2, + ACTIONS(3610), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -84876,7 +84765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2144), 43, + ACTIONS(3608), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -84920,8 +84809,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [15367] = 2, - ACTIONS(3675), 7, + [15243] = 2, + ACTIONS(3686), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -84929,7 +84818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3673), 43, + ACTIONS(3684), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -84973,8 +84862,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [15422] = 2, - ACTIONS(3679), 7, + [15298] = 2, + ACTIONS(2034), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -84982,7 +84871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3677), 43, + ACTIONS(2032), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -85026,65 +84915,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [15477] = 4, - STATE(698), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(391), 3, - anon_sym_LT, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(3681), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(389), 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, - [15536] = 3, - ACTIONS(2312), 1, - sym__last_token_punctuation, - ACTIONS(3586), 7, + [15353] = 2, + ACTIONS(3690), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -85092,10 +84924,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3584), 42, + ACTIONS(3688), 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, @@ -85135,8 +84968,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [15593] = 2, - ACTIONS(2146), 7, + [15408] = 2, + ACTIONS(2074), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -85144,11 +84977,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2144), 43, + ACTIONS(2072), 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, @@ -85188,8 +85021,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [15648] = 2, - ACTIONS(3685), 7, + [15463] = 2, + ACTIONS(3629), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -85197,11 +85030,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3683), 43, + ACTIONS(3627), 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, @@ -85241,8 +85074,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [15703] = 2, - ACTIONS(2959), 7, + [15518] = 2, + ACTIONS(3633), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -85250,7 +85083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2957), 43, + ACTIONS(3631), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -85294,63 +85127,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [15758] = 4, - STATE(698), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(399), 3, - anon_sym_LT, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(3687), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(397), 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, - [15817] = 2, - ACTIONS(417), 7, + [15573] = 2, + ACTIONS(2074), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -85358,11 +85136,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(415), 43, + ACTIONS(2072), 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, @@ -85402,8 +85180,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [15872] = 2, - ACTIONS(3692), 7, + [15628] = 2, + ACTIONS(3694), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -85411,11 +85189,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3690), 43, + ACTIONS(3692), 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, @@ -85455,8 +85233,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [15927] = 2, - ACTIONS(3696), 7, + [15683] = 2, + ACTIONS(2066), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -85464,11 +85242,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3694), 43, + 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, @@ -85508,8 +85286,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [15982] = 2, - ACTIONS(3700), 7, + [15738] = 2, + ACTIONS(3698), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -85517,11 +85295,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3698), 43, + ACTIONS(3696), 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, @@ -85561,8 +85339,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [16037] = 2, - ACTIONS(3704), 7, + [15793] = 2, + ACTIONS(3702), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -85570,11 +85348,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3702), 43, + ACTIONS(3700), 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, @@ -85614,10 +85392,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [16092] = 3, - ACTIONS(3710), 1, - sym__emphasis_close_star, - ACTIONS(3708), 7, + [15848] = 2, + ACTIONS(3706), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -85625,10 +85401,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3706), 42, + ACTIONS(3704), 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, @@ -85668,8 +85445,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [16149] = 2, - ACTIONS(3640), 7, + [15903] = 2, + ACTIONS(2086), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -85677,11 +85454,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3638), 43, + ACTIONS(2084), 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, @@ -85721,10 +85498,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [16204] = 3, - ACTIONS(3716), 1, - sym__emphasis_close_underscore, - ACTIONS(3714), 7, + [15958] = 2, + ACTIONS(3710), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -85732,10 +85507,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3712), 42, + ACTIONS(3708), 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, @@ -85775,11 +85551,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [16261] = 3, - ACTIONS(3722), 2, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(3720), 7, + [16013] = 2, + ACTIONS(3660), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -85787,7 +85560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3718), 41, + ACTIONS(3658), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -85798,6 +85571,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, @@ -85811,6 +85585,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__, @@ -85829,8 +85604,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [16318] = 2, - ACTIONS(3727), 7, + [16068] = 2, + ACTIONS(3714), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -85838,11 +85613,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3725), 43, + ACTIONS(3712), 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, @@ -85882,11 +85657,11 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [16373] = 3, - ACTIONS(3733), 2, + [16123] = 3, + ACTIONS(3720), 2, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3731), 7, + ACTIONS(3718), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -85894,11 +85669,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3729), 41, + ACTIONS(3716), 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, @@ -85936,8 +85711,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [16430] = 2, - ACTIONS(3663), 7, + [16180] = 2, + ACTIONS(2034), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -85945,11 +85720,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3661), 43, + ACTIONS(2032), 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, @@ -85989,8 +85764,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [16485] = 2, - ACTIONS(3738), 7, + [16235] = 2, + ACTIONS(3725), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -85998,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(3736), 43, + ACTIONS(3723), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -86042,8 +85817,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [16540] = 2, - ACTIONS(3742), 7, + [16290] = 2, + ACTIONS(3729), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -86051,11 +85826,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3740), 43, + ACTIONS(3727), 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, @@ -86095,27 +85870,20 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [16595] = 6, - ACTIONS(3744), 1, - sym__whitespace_ge_2, - ACTIONS(3747), 1, - aux_sym__whitespace_token1, - ACTIONS(3750), 1, - aux_sym__newline_token1, - STATE(1584), 2, - sym__whitespace, - sym__newline, - ACTIONS(2946), 6, + [16345] = 2, + ACTIONS(3733), 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(2523), 39, + aux_sym__whitespace_token1, + ACTIONS(3731), 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, @@ -86136,6 +85904,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__, @@ -86150,31 +85919,29 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, + sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [16658] = 4, - STATE(757), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(391), 3, + aux_sym__newline_token1, + [16400] = 2, + ACTIONS(2082), 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(3753), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(389), 43, - sym__split_token, - sym__soft_line_break_marker, + ACTIONS(2080), 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_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86190,6 +85957,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__, @@ -86198,17 +85966,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_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [16717] = 2, - ACTIONS(2034), 7, + [16455] = 2, + ACTIONS(2942), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -86216,11 +85985,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2032), 43, + ACTIONS(2940), 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, @@ -86260,8 +86029,11 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [16772] = 2, - ACTIONS(3757), 7, + [16510] = 3, + ACTIONS(3739), 2, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(3737), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -86269,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(3755), 43, + ACTIONS(3735), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -86280,7 +86052,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, @@ -86294,7 +86065,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__, @@ -86313,16 +86083,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [16827] = 6, - ACTIONS(3588), 1, - sym__last_token_punctuation, - ACTIONS(3759), 1, - anon_sym_SLASH, - ACTIONS(3762), 1, - sym__word_no_digit, - STATE(1832), 1, - sym__tag_name, - ACTIONS(2946), 7, + [16567] = 2, + ACTIONS(3588), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -86330,10 +86092,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2523), 39, + ACTIONS(3586), 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, @@ -86347,12 +86110,14 @@ 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__, @@ -86368,10 +86133,14 @@ static const uint16_t ts_small_parse_table[] = { sym_uri_autolink, sym_email_autolink, sym__whitespace_ge_2, + sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [16890] = 2, - ACTIONS(3767), 7, + [16622] = 3, + ACTIONS(3720), 2, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(3718), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -86379,18 +86148,17 @@ 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(3716), 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, anon_sym_DOLLAR, anon_sym_PERCENT, anon_sym_SQUOTE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, @@ -86404,7 +86172,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__, @@ -86423,8 +86190,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [16945] = 2, - ACTIONS(3771), 7, + [16679] = 2, + ACTIONS(3710), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -86432,7 +86199,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(3708), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -86476,8 +86243,11 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [17000] = 2, - ACTIONS(2102), 7, + [16734] = 3, + ACTIONS(3739), 2, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(3737), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -86485,18 +86255,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2100), 43, + ACTIONS(3735), 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, @@ -86510,7 +86279,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__, @@ -86529,8 +86297,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [17055] = 2, - ACTIONS(2138), 7, + [16791] = 2, + ACTIONS(3744), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -86538,11 +86306,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2136), 43, + ACTIONS(3742), 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, @@ -86582,8 +86350,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [17110] = 2, - ACTIONS(3659), 7, + [16846] = 2, + ACTIONS(3748), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -86591,11 +86359,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3657), 43, + ACTIONS(3746), 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, @@ -86635,8 +86403,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [17165] = 2, - ACTIONS(3775), 7, + [16901] = 2, + ACTIONS(2106), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -86644,7 +86412,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), 43, + ACTIONS(2104), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -86688,8 +86456,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [17220] = 2, - ACTIONS(3779), 7, + [16956] = 2, + ACTIONS(2038), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -86697,7 +86465,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(2036), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -86741,8 +86509,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [17275] = 2, - ACTIONS(2074), 7, + [17011] = 2, + ACTIONS(2062), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -86750,11 +86518,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2072), 43, + ACTIONS(2060), 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, @@ -86794,8 +86562,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [17330] = 2, - ACTIONS(3783), 7, + [17066] = 2, + ACTIONS(2942), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -86803,11 +86571,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3781), 43, + ACTIONS(2940), 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, @@ -86847,25 +86615,84 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [17385] = 2, - ACTIONS(3787), 7, - anon_sym_AMP, + [17121] = 4, + STATE(754), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(391), 3, anon_sym_LT, anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(3750), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(389), 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, + [17180] = 4, + STATE(676), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(391), 3, + anon_sym_LT, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(3785), 43, + ACTIONS(3752), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(389), 43, + sym__split_token, + sym__soft_line_break_marker, 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, @@ -86881,7 +86708,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__, @@ -86890,18 +86716,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_entity_reference, - sym_numeric_character_reference, - sym_uri_autolink, - sym_email_autolink, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [17440] = 2, - ACTIONS(2959), 7, + [17239] = 3, + ACTIONS(3515), 1, + sym__last_token_whitespace, + ACTIONS(2842), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -86909,11 +86736,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2957), 43, + ACTIONS(2840), 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, @@ -86953,8 +86779,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [17495] = 2, - ACTIONS(2068), 7, + [17296] = 2, + ACTIONS(3756), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -86962,11 +86788,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2066), 43, + ACTIONS(3754), 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, @@ -87006,8 +86832,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [17550] = 2, - ACTIONS(3791), 7, + [17351] = 2, + ACTIONS(3602), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -87015,11 +86841,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3789), 43, + ACTIONS(3600), 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, @@ -87059,8 +86885,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [17605] = 2, - ACTIONS(3795), 7, + [17406] = 2, + ACTIONS(3725), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -87068,7 +86894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3793), 43, + ACTIONS(3723), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -87112,10 +86938,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [17660] = 3, - ACTIONS(2312), 1, - sym__last_token_punctuation, - ACTIONS(2819), 7, + [17461] = 2, + ACTIONS(3760), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -87123,10 +86947,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1727), 42, + ACTIONS(3758), 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, @@ -87166,8 +86991,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [17717] = 2, - ACTIONS(3795), 7, + [17516] = 2, + ACTIONS(2094), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -87175,7 +87000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3793), 43, + ACTIONS(2092), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -87219,28 +87044,20 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [17772] = 6, - ACTIONS(3797), 1, - sym__whitespace_ge_2, - ACTIONS(3800), 1, - aux_sym__whitespace_token1, - ACTIONS(3803), 1, - aux_sym__newline_token1, - STATE(1572), 2, - sym__whitespace, - sym__newline, - ACTIONS(2895), 6, + [17571] = 2, + ACTIONS(2156), 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(2768), 39, + aux_sym__whitespace_token1, + ACTIONS(2154), 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, @@ -87261,6 +87078,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, @@ -87274,10 +87093,12 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, + sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [17835] = 2, - ACTIONS(3808), 7, + aux_sym__newline_token1, + [17626] = 2, + ACTIONS(3764), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -87285,7 +87106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3806), 43, + ACTIONS(3762), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -87329,8 +87150,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [17890] = 2, - ACTIONS(3812), 7, + [17681] = 2, + ACTIONS(3768), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -87338,11 +87159,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3810), 43, + ACTIONS(3766), 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, @@ -87382,8 +87203,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [17945] = 2, - ACTIONS(3816), 7, + [17736] = 2, + ACTIONS(2156), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -87391,7 +87212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3814), 43, + ACTIONS(2154), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -87435,8 +87256,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [18000] = 2, - ACTIONS(3820), 7, + [17791] = 2, + ACTIONS(2086), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -87444,11 +87265,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3818), 43, + ACTIONS(2084), 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, @@ -87488,8 +87309,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [18055] = 2, - ACTIONS(3824), 7, + [17846] = 2, + ACTIONS(3772), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -87497,11 +87318,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3822), 43, + ACTIONS(3770), 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, @@ -87541,8 +87362,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [18110] = 2, - ACTIONS(3828), 7, + [17901] = 2, + ACTIONS(3702), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -87550,7 +87371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3826), 43, + ACTIONS(3700), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -87594,16 +87415,24 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [18165] = 2, - ACTIONS(3832), 7, + [17956] = 6, + ACTIONS(3774), 1, + sym__whitespace_ge_2, + ACTIONS(3777), 1, + aux_sym__whitespace_token1, + ACTIONS(3780), 1, + aux_sym__newline_token1, + STATE(1596), 2, + sym__whitespace, + sym__newline, + ACTIONS(2893), 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(3830), 43, + ACTIONS(2578), 39, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -87628,8 +87457,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, @@ -87643,12 +87470,10 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, - sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [18220] = 2, - ACTIONS(3771), 7, + [18019] = 2, + ACTIONS(3785), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -87656,7 +87481,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(3783), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -87700,8 +87525,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [18275] = 2, - ACTIONS(3757), 7, + [18074] = 2, + ACTIONS(2094), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -87709,7 +87534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3755), 43, + ACTIONS(2092), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -87753,8 +87578,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [18330] = 2, - ACTIONS(3685), 7, + [18129] = 2, + ACTIONS(3616), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -87762,11 +87587,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3683), 43, + ACTIONS(3614), 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, @@ -87806,8 +87631,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [18385] = 2, - ACTIONS(3836), 7, + [18184] = 2, + ACTIONS(3666), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -87815,7 +87640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3834), 43, + ACTIONS(3664), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -87859,8 +87684,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [18440] = 2, - ACTIONS(3840), 7, + [18239] = 2, + ACTIONS(3789), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -87868,7 +87693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3838), 43, + ACTIONS(3787), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -87912,16 +87737,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [18495] = 6, - ACTIONS(3590), 1, - sym__last_token_punctuation, - ACTIONS(3842), 1, - anon_sym_SLASH, - ACTIONS(3845), 1, - sym__word_no_digit, - STATE(1831), 1, - sym__tag_name, - ACTIONS(2895), 7, + [18294] = 2, + ACTIONS(3793), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -87929,11 +87746,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2768), 39, + ACTIONS(3791), 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, @@ -87947,12 +87764,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, @@ -87967,10 +87787,11 @@ static const uint16_t ts_small_parse_table[] = { sym_uri_autolink, sym_email_autolink, sym__whitespace_ge_2, + sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [18558] = 2, - ACTIONS(2074), 7, + [18349] = 2, + ACTIONS(3682), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -87978,7 +87799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2072), 43, + ACTIONS(3680), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -88022,12 +87843,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [18613] = 4, - ACTIONS(3590), 1, - sym__last_token_punctuation, - ACTIONS(3848), 1, - anon_sym_LBRACK, - ACTIONS(2895), 7, + [18404] = 2, + ACTIONS(2038), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -88035,11 +87852,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2768), 41, + ACTIONS(2036), 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, @@ -88060,6 +87877,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, @@ -88077,10 +87896,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [18672] = 3, - ACTIONS(3850), 1, - sym__emphasis_close_star, - ACTIONS(3708), 7, + [18459] = 2, + ACTIONS(3797), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -88088,10 +87905,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3706), 42, + ACTIONS(3795), 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, @@ -88131,8 +87949,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [18729] = 2, - ACTIONS(3791), 7, + [18514] = 2, + ACTIONS(3706), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -88140,7 +87958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3789), 43, + ACTIONS(3704), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -88184,24 +88002,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [18784] = 6, - ACTIONS(3852), 1, - sym__whitespace_ge_2, - ACTIONS(3855), 1, - aux_sym__whitespace_token1, - ACTIONS(3858), 1, - aux_sym__newline_token1, - STATE(1569), 2, - sym__whitespace, - sym__newline, - ACTIONS(2876), 6, + [18569] = 2, + ACTIONS(2106), 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(2608), 39, + aux_sym__whitespace_token1, + ACTIONS(2104), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -88226,6 +88036,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, @@ -88239,12 +88051,12 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, sym_uri_autolink, sym_email_autolink, + sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [18847] = 3, - ACTIONS(3861), 1, - sym__emphasis_close_underscore, - ACTIONS(3714), 7, + aux_sym__newline_token1, + [18624] = 2, + ACTIONS(3690), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -88252,10 +88064,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3712), 42, + ACTIONS(3688), 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, @@ -88295,16 +88108,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [18904] = 6, - ACTIONS(3602), 1, - sym__last_token_punctuation, - ACTIONS(3863), 1, - anon_sym_SLASH, - ACTIONS(3866), 1, - sym__word_no_digit, - STATE(1829), 1, - sym__tag_name, - ACTIONS(2876), 7, + [18679] = 2, + ACTIONS(3694), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -88312,7 +88117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2608), 39, + ACTIONS(3692), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -88330,12 +88135,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, @@ -88350,12 +88158,11 @@ static const uint16_t ts_small_parse_table[] = { sym_uri_autolink, sym_email_autolink, sym__whitespace_ge_2, + sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [18967] = 3, - ACTIONS(3869), 1, - sym__emphasis_close_underscore, - ACTIONS(3714), 7, + [18734] = 2, + ACTIONS(3801), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -88363,10 +88170,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3712), 42, + ACTIONS(3799), 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, @@ -88406,10 +88214,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [19024] = 4, - ACTIONS(3602), 1, + [18789] = 4, + ACTIONS(2256), 1, sym__last_token_punctuation, - ACTIONS(3871), 1, + ACTIONS(3803), 1, anon_sym_LBRACK, ACTIONS(2876), 7, anon_sym_AMP, @@ -88419,7 +88227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2608), 41, + ACTIONS(1042), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -88444,6 +88252,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, @@ -88460,19 +88269,18 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [19083] = 4, - STATE(698), 1, + [18848] = 4, + STATE(676), 1, aux_sym__ignore_matching_tokens, - ACTIONS(409), 3, + ACTIONS(399), 3, anon_sym_LT, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(3681), 3, + ACTIONS(3752), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(407), 43, + ACTIONS(397), 43, sym__split_token, sym__soft_line_break_marker, sym__code_span_start, @@ -88516,8 +88324,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [19142] = 2, - ACTIONS(2102), 7, + [18907] = 2, + ACTIONS(3797), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -88525,7 +88333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2100), 43, + ACTIONS(3795), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -88569,8 +88377,12 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [19197] = 2, - ACTIONS(3787), 7, + [18962] = 4, + ACTIONS(2206), 1, + sym__last_token_punctuation, + ACTIONS(3806), 1, + anon_sym_LBRACK, + ACTIONS(2912), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -88578,11 +88390,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3785), 43, + ACTIONS(694), 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, @@ -88603,7 +88415,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__, @@ -88621,14 +88432,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [19252] = 4, - ACTIONS(2312), 1, - sym__last_token_punctuation, - ACTIONS(3873), 2, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(2819), 7, + [19021] = 2, + ACTIONS(3811), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -88636,16 +88441,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1727), 40, + ACTIONS(3809), 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, @@ -88659,6 +88466,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__, @@ -88677,8 +88485,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [19311] = 2, - ACTIONS(3714), 7, + [19076] = 2, + ACTIONS(2082), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -88686,7 +88494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3712), 43, + ACTIONS(2080), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -88730,8 +88538,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [19366] = 2, - ACTIONS(2046), 7, + [19131] = 2, + ACTIONS(3793), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -88739,11 +88547,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2044), 43, + ACTIONS(3791), 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, @@ -88783,8 +88591,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [19421] = 2, - ACTIONS(3742), 7, + [19186] = 2, + ACTIONS(3744), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -88792,11 +88600,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3740), 43, + ACTIONS(3742), 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, @@ -88836,8 +88644,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [19476] = 2, - ACTIONS(3877), 7, + [19241] = 2, + ACTIONS(3815), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -88845,7 +88653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3875), 43, + ACTIONS(3813), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -88889,8 +88697,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [19531] = 2, - ACTIONS(3881), 7, + [19296] = 2, + ACTIONS(3760), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -88898,11 +88706,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3879), 43, + ACTIONS(3758), 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, @@ -88942,8 +88750,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [19586] = 2, - ACTIONS(3675), 7, + [19351] = 2, + ACTIONS(3819), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -88951,7 +88759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3673), 43, + ACTIONS(3817), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -88995,8 +88803,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [19641] = 2, - ACTIONS(3832), 7, + [19406] = 2, + ACTIONS(3764), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -89004,7 +88812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3830), 43, + ACTIONS(3762), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -89048,8 +88856,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [19696] = 2, - ACTIONS(3816), 7, + [19461] = 2, + ACTIONS(3823), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -89057,11 +88865,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3814), 43, + ACTIONS(3821), 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, @@ -89101,8 +88909,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [19751] = 2, - ACTIONS(3808), 7, + [19516] = 2, + ACTIONS(2066), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -89110,11 +88918,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3806), 43, + ACTIONS(2064), 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, @@ -89154,8 +88962,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [19806] = 2, - ACTIONS(3767), 7, + [19571] = 2, + ACTIONS(3827), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -89163,11 +88971,11 @@ 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(3825), 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, @@ -89207,8 +89015,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [19861] = 2, - ACTIONS(3700), 7, + [19626] = 2, + ACTIONS(3686), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -89216,11 +89024,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3698), 43, + ACTIONS(3684), 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, @@ -89260,8 +89068,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [19916] = 2, - ACTIONS(3696), 7, + [19681] = 2, + ACTIONS(3801), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -89269,7 +89077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3694), 43, + ACTIONS(3799), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -89313,8 +89121,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [19971] = 2, - ACTIONS(3877), 7, + [19736] = 2, + ACTIONS(417), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -89322,11 +89130,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3875), 43, + ACTIONS(415), 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, @@ -89366,8 +89174,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [20026] = 2, - ACTIONS(3644), 7, + [19791] = 2, + ACTIONS(3831), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -89375,11 +89183,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3642), 43, + ACTIONS(3829), 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, @@ -89419,8 +89227,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [20081] = 2, - ACTIONS(3783), 7, + [19846] = 2, + ACTIONS(3714), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -89428,7 +89236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3781), 43, + ACTIONS(3712), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -89472,8 +89280,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [20136] = 2, - ACTIONS(2090), 7, + [19901] = 2, + ACTIONS(3729), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -89481,7 +89289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2088), 43, + ACTIONS(3727), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -89525,8 +89333,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [20191] = 2, - ACTIONS(3708), 7, + [19956] = 2, + ACTIONS(3733), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -89534,7 +89342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3706), 43, + ACTIONS(3731), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -89578,8 +89386,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [20246] = 2, - ACTIONS(3636), 7, + [20011] = 2, + ACTIONS(3748), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -89587,7 +89395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3634), 43, + ACTIONS(3746), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -89631,12 +89439,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [20301] = 4, - ACTIONS(2206), 1, - sym__last_token_punctuation, - ACTIONS(3883), 1, - anon_sym_LBRACK, - ACTIONS(2912), 7, + [20066] = 2, + ACTIONS(3768), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -89644,7 +89448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(931), 41, + ACTIONS(3766), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -89669,6 +89473,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__, @@ -89686,8 +89491,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [20360] = 2, - ACTIONS(3840), 7, + aux_sym__newline_token1, + [20121] = 2, + ACTIONS(3772), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -89695,11 +89501,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3838), 43, + ACTIONS(3770), 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, @@ -89739,8 +89545,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [20415] = 2, - ACTIONS(3888), 7, + [20176] = 2, + ACTIONS(3756), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -89748,7 +89554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3886), 43, + ACTIONS(3754), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -89792,8 +89598,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [20470] = 2, - ACTIONS(3632), 7, + [20231] = 2, + ACTIONS(3785), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -89801,7 +89607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3630), 43, + ACTIONS(3783), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -89845,8 +89651,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [20525] = 2, - ACTIONS(2038), 7, + [20286] = 2, + ACTIONS(3674), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -89854,7 +89660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2036), 43, + ACTIONS(3672), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -89898,8 +89704,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [20580] = 2, - ACTIONS(3628), 7, + [20341] = 2, + ACTIONS(3592), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -89907,11 +89713,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3626), 43, + ACTIONS(3590), 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, @@ -89951,8 +89757,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [20635] = 2, - ACTIONS(3704), 7, + [20396] = 2, + ACTIONS(3835), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -89960,7 +89766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3702), 43, + ACTIONS(3833), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -90004,8 +89810,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [20690] = 2, - ACTIONS(3624), 7, + [20451] = 2, + ACTIONS(3815), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -90013,7 +89819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3622), 43, + ACTIONS(3813), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -90057,8 +89863,65 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [20745] = 2, - ACTIONS(3692), 7, + [20506] = 6, + ACTIONS(3837), 1, + sym__whitespace_ge_2, + ACTIONS(3840), 1, + aux_sym__whitespace_token1, + ACTIONS(3843), 1, + aux_sym__newline_token1, + STATE(1626), 2, + sym__whitespace, + sym__newline, + ACTIONS(2950), 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(2389), 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_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + sym__word_no_digit, + sym__digits, + [20569] = 2, + ACTIONS(3848), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -90066,7 +89929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3690), 43, + ACTIONS(3846), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -90110,8 +89973,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [20800] = 2, - ACTIONS(2156), 7, + [20624] = 2, + ACTIONS(3819), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -90119,7 +89982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2154), 43, + ACTIONS(3817), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -90163,8 +90026,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [20855] = 2, - ACTIONS(3836), 7, + [20679] = 2, + ACTIONS(3811), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -90172,11 +90035,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3834), 43, + ACTIONS(3809), 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, @@ -90216,10 +90079,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [20910] = 3, - ACTIONS(3890), 1, + [20734] = 3, + ACTIONS(3850), 1, sym__emphasis_close_star, - ACTIONS(3708), 7, + ACTIONS(3654), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -90227,7 +90090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3706), 42, + ACTIONS(3652), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -90270,8 +90133,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [20967] = 2, - ACTIONS(3679), 7, + [20791] = 2, + ACTIONS(3823), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -90279,11 +90142,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3677), 43, + ACTIONS(3821), 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, @@ -90323,10 +90186,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [21022] = 3, - ACTIONS(3533), 1, - sym__last_token_whitespace, - ACTIONS(2842), 7, + [20846] = 2, + ACTIONS(2046), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -90334,10 +90195,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2840), 42, + ACTIONS(2044), 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, @@ -90377,8 +90239,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [21079] = 2, - ACTIONS(3667), 7, + [20901] = 2, + ACTIONS(3827), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -90386,11 +90248,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3665), 43, + ACTIONS(3825), 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, @@ -90430,12 +90292,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [21134] = 4, - ACTIONS(2256), 1, - sym__last_token_punctuation, - ACTIONS(3892), 1, - anon_sym_LBRACK, - ACTIONS(2855), 7, + [20956] = 3, + ACTIONS(3852), 1, + sym__emphasis_close_underscore, + ACTIONS(3648), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -90443,11 +90303,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(675), 41, + ACTIONS(3646), 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, @@ -90468,6 +90327,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__, @@ -90485,11 +90345,66 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [21193] = 3, - ACTIONS(3722), 2, + aux_sym__newline_token1, + [21013] = 6, + ACTIONS(3576), 1, + sym__last_token_punctuation, + ACTIONS(3854), 1, + anon_sym_SLASH, + ACTIONS(3857), 1, + sym__word_no_digit, + STATE(1826), 1, + sym__tag_name, + ACTIONS(2950), 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(2389), 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_LBRACK, - ACTIONS(3720), 7, + 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_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + sym__whitespace_ge_2, + sym__digits, + aux_sym__newline_token1, + [21076] = 2, + ACTIONS(3862), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -90497,7 +90412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3718), 41, + ACTIONS(3860), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -90508,6 +90423,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, @@ -90521,6 +90437,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__, @@ -90539,8 +90456,12 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [21250] = 2, - ACTIONS(2138), 7, + [21131] = 4, + ACTIONS(3576), 1, + sym__last_token_punctuation, + ACTIONS(3864), 1, + anon_sym_LBRACK, + ACTIONS(2950), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -90548,11 +90469,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2136), 43, + ACTIONS(2389), 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, @@ -90573,7 +90493,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__, @@ -90592,8 +90511,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [21305] = 2, - ACTIONS(3616), 7, + [21190] = 2, + ACTIONS(417), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -90601,7 +90520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3614), 43, + ACTIONS(415), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -90645,8 +90564,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [21360] = 2, - ACTIONS(3612), 7, + [21245] = 2, + ACTIONS(3789), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -90654,11 +90573,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3610), 43, + ACTIONS(3787), 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, @@ -90698,8 +90617,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [21415] = 2, - ACTIONS(3608), 7, + [21300] = 2, + ACTIONS(2062), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -90707,11 +90626,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3606), 43, + ACTIONS(2060), 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, @@ -90751,8 +90670,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [21470] = 2, - ACTIONS(3671), 7, + [21355] = 3, + ACTIONS(3866), 1, + sym__emphasis_close_underscore, + ACTIONS(3648), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -90760,11 +90681,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3669), 43, + ACTIONS(3646), 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, @@ -90804,8 +90724,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [21525] = 2, - ACTIONS(3727), 7, + [21412] = 2, + ACTIONS(3648), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -90813,7 +90733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3725), 43, + ACTIONS(3646), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -90857,11 +90777,12 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [21580] = 3, - ACTIONS(3733), 2, - anon_sym_LPAREN, + [21467] = 4, + ACTIONS(2312), 1, + sym__last_token_punctuation, + ACTIONS(3868), 1, anon_sym_LBRACK, - ACTIONS(3731), 7, + ACTIONS(2819), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -90869,17 +90790,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3729), 41, + ACTIONS(1845), 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, @@ -90911,8 +90832,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [21637] = 2, - ACTIONS(3652), 7, + [21526] = 2, + ACTIONS(3831), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -90920,11 +90841,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(3829), 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, @@ -90964,8 +90885,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [21692] = 2, - ACTIONS(3738), 7, + [21581] = 2, + ACTIONS(3835), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -90973,11 +90894,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3736), 43, + ACTIONS(3833), 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, @@ -91017,8 +90938,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [21747] = 2, - ACTIONS(3648), 7, + [21636] = 2, + ACTIONS(3848), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -91026,11 +90947,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3646), 43, + ACTIONS(3846), 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, @@ -91070,8 +90991,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [21802] = 2, - ACTIONS(3620), 7, + [21691] = 2, + ACTIONS(3862), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -91079,11 +91000,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3618), 43, + ACTIONS(3860), 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, @@ -91123,8 +91044,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [21857] = 2, - ACTIONS(3775), 7, + [21746] = 3, + ACTIONS(2312), 1, + sym__last_token_punctuation, + ACTIONS(2819), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -91132,11 +91055,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(1845), 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, @@ -91176,8 +91098,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [21912] = 2, - ACTIONS(3779), 7, + [21803] = 2, + ACTIONS(3698), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -91185,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(3777), 43, + ACTIONS(3696), 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, @@ -91229,8 +91151,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [21967] = 2, - ACTIONS(3828), 7, + [21858] = 2, + ACTIONS(3873), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -91238,7 +91160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3826), 43, + ACTIONS(3871), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -91282,8 +91204,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [22022] = 2, - ACTIONS(3824), 7, + [21913] = 3, + ACTIONS(2312), 1, + sym__last_token_punctuation, + ACTIONS(3562), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -91291,11 +91215,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3822), 43, + ACTIONS(3560), 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, @@ -91335,8 +91258,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [22077] = 2, - ACTIONS(3820), 7, + [21970] = 2, + ACTIONS(3873), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -91344,11 +91267,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3818), 43, + ACTIONS(3871), 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, @@ -91388,8 +91311,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [22132] = 2, - ACTIONS(3812), 7, + [22025] = 2, + ACTIONS(3654), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -91397,11 +91320,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3810), 43, + ACTIONS(3652), 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, @@ -91441,8 +91364,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [22187] = 2, - ACTIONS(3779), 7, + [22080] = 3, + ACTIONS(3875), 1, + sym__emphasis_close_star, + ACTIONS(3654), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -91450,7 +91375,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(3652), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -91493,8 +91418,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [22241] = 2, - ACTIONS(3897), 7, + [22137] = 2, + ACTIONS(3827), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -91502,7 +91427,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), 42, + ACTIONS(3825), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -91545,10 +91470,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [22295] = 3, - ACTIONS(3903), 1, - sym__emphasis_close_star, - ACTIONS(3901), 7, + [22191] = 2, + ACTIONS(2156), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -91556,7 +91479,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), 41, + ACTIONS(2154), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -91598,8 +91521,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [22351] = 2, - ACTIONS(3907), 7, + aux_sym__newline_token1, + [22245] = 2, + ACTIONS(3879), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -91607,11 +91531,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3905), 42, + ACTIONS(3877), 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, @@ -91650,8 +91574,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [22405] = 2, - ACTIONS(3911), 7, + [22299] = 2, + ACTIONS(3883), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -91659,7 +91583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3909), 42, + ACTIONS(3881), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -91702,8 +91626,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [22459] = 2, - ACTIONS(2959), 7, + [22353] = 2, + ACTIONS(3887), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -91711,10 +91635,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2957), 42, + ACTIONS(3885), 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, @@ -91753,9 +91678,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [22513] = 2, - ACTIONS(3915), 7, + [22407] = 2, + ACTIONS(3891), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -91763,7 +91687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3913), 42, + ACTIONS(3889), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -91806,8 +91730,11 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [22567] = 2, - ACTIONS(3919), 7, + [22461] = 3, + ACTIONS(3739), 2, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(3737), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -91815,18 +91742,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3917), 42, + ACTIONS(3735), 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, @@ -91840,7 +91765,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__, @@ -91858,8 +91782,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [22621] = 2, - ACTIONS(3923), 7, + aux_sym__newline_token1, + [22517] = 2, + ACTIONS(3588), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -91867,11 +91792,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3921), 42, + ACTIONS(3586), 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, @@ -91910,8 +91834,12 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [22675] = 2, - ACTIONS(3927), 7, + aux_sym__newline_token1, + [22571] = 3, + ACTIONS(3720), 2, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(3718), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -91919,18 +91847,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3925), 42, + ACTIONS(3716), 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, @@ -91944,7 +91870,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__, @@ -91962,8 +91887,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [22729] = 2, - ACTIONS(3901), 7, + aux_sym__newline_token1, + [22627] = 2, + ACTIONS(3789), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -91971,11 +91897,10 @@ 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(3787), 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, @@ -92014,10 +91939,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [22783] = 3, - ACTIONS(3602), 1, - sym__last_token_punctuation, - ACTIONS(2876), 7, + aux_sym__newline_token1, + [22681] = 2, + ACTIONS(3710), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -92025,11 +91949,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2608), 41, + ACTIONS(3708), 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, @@ -92050,6 +91973,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, @@ -92067,18 +91992,20 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [22839] = 3, - ACTIONS(3929), 1, - sym__emphasis_close_underscore, - ACTIONS(3907), 7, - anon_sym_AMP, + [22735] = 5, + ACTIONS(3893), 1, + sym__line_ending, + STATE(943), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(379), 3, 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(3905), 41, + ACTIONS(3895), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(377), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -92087,6 +92014,7 @@ 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, @@ -92102,7 +92030,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__, @@ -92111,17 +92038,17 @@ 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_uri_autolink, - sym_email_autolink, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [22895] = 2, - ACTIONS(3816), 7, + aux_sym__newline_token1, + [22795] = 2, + ACTIONS(3899), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -92129,7 +92056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3814), 42, + ACTIONS(3897), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -92172,8 +92099,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [22949] = 2, - ACTIONS(3808), 7, + [22849] = 2, + ACTIONS(3903), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -92181,7 +92108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3806), 42, + ACTIONS(3901), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -92224,8 +92151,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [23003] = 2, - ACTIONS(3640), 7, + [22903] = 2, + ACTIONS(3907), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -92233,7 +92160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3638), 42, + ACTIONS(3905), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -92276,8 +92203,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [23057] = 2, - ACTIONS(3767), 7, + [22957] = 2, + ACTIONS(3911), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -92285,7 +92212,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(3909), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -92328,8 +92255,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [23111] = 2, - ACTIONS(3897), 7, + [23011] = 2, + ACTIONS(3602), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -92337,11 +92264,10 @@ 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(3600), 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, @@ -92380,8 +92306,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [23165] = 2, - ACTIONS(3700), 7, + aux_sym__newline_token1, + [23065] = 2, + ACTIONS(3915), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -92389,10 +92316,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3698), 42, + ACTIONS(3913), 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, @@ -92431,9 +92359,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [23219] = 2, - ACTIONS(3897), 7, + [23119] = 2, + ACTIONS(3919), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -92441,11 +92368,10 @@ 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(3917), 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, @@ -92484,24 +92410,43 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [23273] = 2, - ACTIONS(3933), 7, - anon_sym_AMP, + aux_sym__newline_token1, + [23173] = 8, + ACTIONS(3925), 1, + anon_sym_RBRACK, + ACTIONS(3929), 1, + sym__whitespace_ge_2, + ACTIONS(3931), 1, + aux_sym__whitespace_token1, + ACTIONS(3933), 1, + aux_sym__newline_token1, + ACTIONS(3923), 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(3931), 42, + STATE(862), 5, + sym__whitespace, + sym__word, + sym__newline, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(3927), 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(3921), 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, @@ -92517,8 +92462,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, @@ -92526,20 +92469,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_entity_reference, - sym_numeric_character_reference, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [23327] = 3, - ACTIONS(3935), 1, - sym__emphasis_close_underscore, - ACTIONS(3907), 7, + [23239] = 2, + ACTIONS(3616), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -92547,7 +92478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3905), 41, + ACTIONS(3614), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -92589,8 +92520,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [23383] = 2, - ACTIONS(3927), 7, + aux_sym__newline_token1, + [23293] = 2, + ACTIONS(3666), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -92598,7 +92530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3925), 42, + ACTIONS(3664), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -92641,8 +92573,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [23437] = 2, - ACTIONS(3840), 7, + [23347] = 2, + ACTIONS(3937), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -92650,10 +92582,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3838), 42, + ACTIONS(3935), 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, @@ -92692,69 +92625,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [23491] = 8, - ACTIONS(3941), 1, - anon_sym_RBRACK, - ACTIONS(3945), 1, - sym__whitespace_ge_2, - ACTIONS(3947), 1, - aux_sym__whitespace_token1, - ACTIONS(3949), 1, - aux_sym__newline_token1, - ACTIONS(3939), 2, - anon_sym_LT, - anon_sym_BSLASH, - STATE(885), 5, - sym__whitespace, - sym__word, - sym__newline, - sym__text_inline_no_link, - aux_sym_link_label_repeat1, - ACTIONS(3943), 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(3937), 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, - [23557] = 3, - ACTIONS(3590), 1, - sym__last_token_punctuation, - ACTIONS(2895), 7, + [23401] = 2, + ACTIONS(3793), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -92762,11 +92634,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2768), 41, + ACTIONS(3791), 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, @@ -92787,6 +92658,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, @@ -92804,8 +92677,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [23613] = 2, - ACTIONS(2038), 7, + [23455] = 2, + ACTIONS(3682), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -92813,7 +92686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2036), 42, + ACTIONS(3680), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -92856,8 +92729,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [23667] = 2, - ACTIONS(3836), 7, + [23509] = 3, + ACTIONS(3576), 1, + sym__last_token_punctuation, + ACTIONS(2950), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -92865,7 +92740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3834), 42, + ACTIONS(2389), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -92889,7 +92764,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__, @@ -92908,25 +92782,25 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [23721] = 8, - ACTIONS(3945), 1, + [23565] = 8, + ACTIONS(3929), 1, sym__whitespace_ge_2, - ACTIONS(3947), 1, + ACTIONS(3931), 1, aux_sym__whitespace_token1, - ACTIONS(3949), 1, + ACTIONS(3933), 1, aux_sym__newline_token1, - ACTIONS(3951), 1, + ACTIONS(3939), 1, anon_sym_RBRACK, - ACTIONS(3939), 2, + ACTIONS(3923), 2, anon_sym_LT, anon_sym_BSLASH, - STATE(885), 5, + STATE(883), 5, sym__whitespace, sym__word, sym__newline, sym__text_inline_no_link, aux_sym_link_label_repeat1, - ACTIONS(3943), 10, + ACTIONS(3941), 10, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -92937,7 +92811,7 @@ static const uint16_t ts_small_parse_table[] = { sym_backslash_escape, sym__word_no_digit, sym__digits, - ACTIONS(3937), 28, + ACTIONS(3921), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -92966,8 +92840,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [23787] = 2, - ACTIONS(2156), 7, + [23631] = 2, + ACTIONS(3690), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -92975,7 +92849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2154), 42, + ACTIONS(3688), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -93018,24 +92892,42 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [23841] = 2, - ACTIONS(3659), 7, - anon_sym_AMP, + [23685] = 8, + ACTIONS(3929), 1, + sym__whitespace_ge_2, + ACTIONS(3931), 1, + aux_sym__whitespace_token1, + ACTIONS(3933), 1, + aux_sym__newline_token1, + ACTIONS(3943), 1, + anon_sym_RBRACK, + ACTIONS(3923), 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(3657), 42, + STATE(883), 5, + sym__whitespace, + sym__word, + sym__newline, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(3941), 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(3921), 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, @@ -93051,8 +92943,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, @@ -93060,18 +92950,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_entity_reference, - sym_numeric_character_reference, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [23895] = 2, - ACTIONS(3644), 7, + [23751] = 2, + ACTIONS(3694), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -93079,7 +92959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3642), 42, + ACTIONS(3692), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -93122,44 +93002,30 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [23949] = 8, - ACTIONS(3959), 1, - anon_sym_RBRACK, - ACTIONS(3964), 1, - sym__whitespace_ge_2, - ACTIONS(3967), 1, - aux_sym__whitespace_token1, - ACTIONS(3970), 1, - aux_sym__newline_token1, - ACTIONS(3956), 2, + [23805] = 4, + ACTIONS(3720), 1, + anon_sym_LPAREN, + ACTIONS(3945), 1, + anon_sym_LBRACK, + ACTIONS(3718), 7, + anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - STATE(845), 5, - sym__whitespace, - sym__word, - sym__newline, - sym__text_inline_no_link, - aux_sym_link_label_repeat1, - ACTIONS(3961), 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(3953), 28, + aux_sym__whitespace_token1, + ACTIONS(3716), 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_AMP, anon_sym_SQUOTE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, @@ -93180,8 +93046,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [24015] = 2, - ACTIONS(3636), 7, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [23863] = 2, + ACTIONS(3915), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -93189,7 +93065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3634), 42, + ACTIONS(3913), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -93232,12 +93108,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [24069] = 4, - ACTIONS(3733), 1, - anon_sym_LPAREN, - ACTIONS(3973), 1, - anon_sym_LBRACK, - ACTIONS(3731), 7, + [23917] = 3, + ACTIONS(3951), 1, + sym__emphasis_close_star, + ACTIONS(3949), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -93245,17 +93119,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3729), 40, + ACTIONS(3947), 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, @@ -93269,6 +93143,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, @@ -93285,9 +93161,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [24127] = 2, - ACTIONS(3632), 7, + [23973] = 2, + ACTIONS(3949), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -93295,10 +93170,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3630), 42, + ACTIONS(3947), 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, @@ -93337,9 +93213,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [24181] = 2, - ACTIONS(3628), 7, + [24027] = 2, + ACTIONS(3698), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -93347,7 +93222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3626), 42, + ACTIONS(3696), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -93390,8 +93265,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [24235] = 2, - ACTIONS(3977), 7, + [24081] = 2, + ACTIONS(3955), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -93399,10 +93274,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3975), 42, + ACTIONS(3953), 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, @@ -93441,9 +93317,10 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [24289] = 2, - ACTIONS(3624), 7, + [24135] = 3, + ACTIONS(3957), 1, + sym__emphasis_close_underscore, + ACTIONS(3955), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -93451,7 +93328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3622), 42, + ACTIONS(3953), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -93493,9 +93370,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [24343] = 2, - ACTIONS(2138), 7, + [24191] = 2, + ACTIONS(3714), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -93503,7 +93379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2136), 42, + ACTIONS(3712), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -93546,8 +93422,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [24397] = 2, - ACTIONS(3791), 7, + [24245] = 2, + ACTIONS(3873), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -93555,7 +93431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3789), 42, + ACTIONS(3871), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -93598,8 +93474,66 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [24451] = 2, - ACTIONS(3616), 7, + [24299] = 8, + ACTIONS(3929), 1, + sym__whitespace_ge_2, + ACTIONS(3931), 1, + aux_sym__whitespace_token1, + ACTIONS(3933), 1, + aux_sym__newline_token1, + ACTIONS(3959), 1, + anon_sym_RBRACK, + ACTIONS(3923), 2, + anon_sym_LT, + anon_sym_BSLASH, + STATE(862), 5, + sym__whitespace, + sym__word, + sym__newline, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(3927), 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(3921), 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, + [24365] = 2, + ACTIONS(3729), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -93607,7 +93541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3614), 42, + ACTIONS(3727), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -93650,20 +93584,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [24505] = 5, - ACTIONS(3979), 1, - sym__line_ending, - STATE(952), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(379), 3, + [24419] = 2, + ACTIONS(3733), 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(3981), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(377), 41, + ACTIONS(3731), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -93672,7 +93602,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, @@ -93688,6 +93617,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__, @@ -93696,17 +93626,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_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [24565] = 2, - ACTIONS(3795), 7, + [24473] = 2, + ACTIONS(3748), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -93714,7 +93645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3793), 42, + ACTIONS(3746), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -93757,8 +93688,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [24619] = 2, - ACTIONS(3832), 7, + [24527] = 2, + ACTIONS(3811), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -93766,7 +93697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3830), 42, + ACTIONS(3809), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -93809,8 +93740,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [24673] = 2, - ACTIONS(3612), 7, + [24581] = 2, + ACTIONS(3768), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -93818,7 +93749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3610), 42, + ACTIONS(3766), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -93861,12 +93792,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [24727] = 4, - ACTIONS(3733), 1, - anon_sym_LPAREN, - ACTIONS(3973), 1, - anon_sym_LBRACK, - ACTIONS(3731), 7, + [24635] = 3, + ACTIONS(3578), 1, + sym__last_token_punctuation, + ACTIONS(2857), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -93874,17 +93803,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3729), 40, + ACTIONS(2710), 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, anon_sym_DOLLAR, anon_sym_PERCENT, anon_sym_SQUOTE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, @@ -93915,8 +93845,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [24785] = 2, - ACTIONS(3771), 7, + [24691] = 3, + ACTIONS(3574), 1, + sym__last_token_punctuation, + ACTIONS(2893), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -93924,10 +93856,11 @@ 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(2578), 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, @@ -93948,8 +93881,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, @@ -93967,8 +93898,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [24839] = 2, - ACTIONS(3608), 7, + [24747] = 2, + ACTIONS(3785), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -93976,7 +93907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3606), 42, + ACTIONS(3783), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -94019,8 +93950,182 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [24893] = 2, - ACTIONS(3757), 7, + [24801] = 8, + ACTIONS(3929), 1, + sym__whitespace_ge_2, + ACTIONS(3931), 1, + aux_sym__whitespace_token1, + ACTIONS(3933), 1, + aux_sym__newline_token1, + ACTIONS(3961), 1, + anon_sym_RBRACK, + ACTIONS(3923), 2, + anon_sym_LT, + anon_sym_BSLASH, + STATE(888), 5, + sym__whitespace, + sym__word, + sym__newline, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(3963), 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(3921), 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, + [24867] = 8, + ACTIONS(3971), 1, + anon_sym_RBRACK, + ACTIONS(3976), 1, + sym__whitespace_ge_2, + ACTIONS(3979), 1, + aux_sym__whitespace_token1, + ACTIONS(3982), 1, + aux_sym__newline_token1, + ACTIONS(3968), 2, + anon_sym_LT, + anon_sym_BSLASH, + STATE(862), 5, + sym__whitespace, + sym__word, + sym__newline, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(3973), 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(3965), 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, + [24933] = 8, + ACTIONS(3929), 1, + sym__whitespace_ge_2, + ACTIONS(3931), 1, + aux_sym__whitespace_token1, + ACTIONS(3933), 1, + aux_sym__newline_token1, + ACTIONS(3985), 1, + anon_sym_RBRACK, + ACTIONS(3923), 2, + anon_sym_LT, + anon_sym_BSLASH, + STATE(888), 5, + sym__whitespace, + sym__word, + sym__newline, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(3963), 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(3921), 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, + [24999] = 2, + ACTIONS(3801), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -94028,7 +94133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3755), 42, + ACTIONS(3799), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -94071,8 +94176,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [24947] = 2, - ACTIONS(3828), 7, + [25053] = 3, + ACTIONS(3987), 1, + sym__emphasis_close_star, + ACTIONS(3949), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -94080,7 +94187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3826), 42, + ACTIONS(3947), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -94122,9 +94229,10 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [25001] = 2, - ACTIONS(3671), 7, + [25109] = 3, + ACTIONS(3989), 1, + sym__emphasis_close_underscore, + ACTIONS(3955), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -94132,7 +94240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3669), 42, + ACTIONS(3953), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -94174,9 +94282,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [25055] = 2, - ACTIONS(417), 7, + [25165] = 2, + ACTIONS(3815), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -94184,7 +94291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(415), 42, + ACTIONS(3813), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -94227,8 +94334,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [25109] = 2, - ACTIONS(3911), 7, + [25219] = 2, + ACTIONS(3819), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -94236,7 +94343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3909), 42, + ACTIONS(3817), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -94279,8 +94386,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [25163] = 2, - ACTIONS(3824), 7, + [25273] = 2, + ACTIONS(3823), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -94288,7 +94395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3822), 42, + ACTIONS(3821), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -94331,8 +94438,12 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [25217] = 2, - ACTIONS(3915), 7, + [25327] = 4, + ACTIONS(3720), 1, + anon_sym_LPAREN, + ACTIONS(3945), 1, + anon_sym_LBRACK, + ACTIONS(3718), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -94340,17 +94451,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3913), 42, + ACTIONS(3716), 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, @@ -94364,8 +94475,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, @@ -94383,8 +94492,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [25271] = 2, - ACTIONS(3919), 7, + [25385] = 2, + ACTIONS(3831), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -94392,7 +94501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3917), 42, + ACTIONS(3829), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -94435,8 +94544,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [25325] = 2, - ACTIONS(3820), 7, + [25439] = 2, + ACTIONS(3764), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -94444,7 +94553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3818), 42, + ACTIONS(3762), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -94487,8 +94596,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [25379] = 2, - ACTIONS(3742), 7, + [25493] = 2, + ACTIONS(3835), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -94496,7 +94605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3740), 42, + ACTIONS(3833), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -94539,8 +94648,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [25433] = 2, - ACTIONS(3923), 7, + [25547] = 2, + ACTIONS(3848), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -94548,7 +94657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3921), 42, + ACTIONS(3846), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -94591,11 +94700,60 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [25487] = 3, - ACTIONS(3722), 2, + [25601] = 2, + ACTIONS(3862), 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(3860), 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, - ACTIONS(3720), 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_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [25655] = 2, + ACTIONS(417), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -94603,7 +94761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3718), 40, + ACTIONS(415), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -94613,6 +94771,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, @@ -94626,6 +94785,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__, @@ -94644,8 +94804,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [25543] = 2, - ACTIONS(3738), 7, + [25709] = 2, + ACTIONS(3891), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -94653,7 +94813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3736), 42, + ACTIONS(3889), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -94696,8 +94856,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [25597] = 2, - ACTIONS(3704), 7, + [25763] = 2, + ACTIONS(3937), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -94705,7 +94865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3702), 42, + ACTIONS(3935), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -94748,8 +94908,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [25651] = 2, - ACTIONS(3692), 7, + [25817] = 2, + ACTIONS(3772), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -94757,7 +94917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3690), 42, + ACTIONS(3770), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -94800,8 +94960,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [25705] = 2, - ACTIONS(3775), 7, + [25871] = 2, + ACTIONS(3883), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -94809,7 +94969,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(3881), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -94852,8 +95012,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [25759] = 2, - ACTIONS(3911), 7, + [25925] = 2, + ACTIONS(3760), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -94861,11 +95021,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3909), 42, + ACTIONS(3758), 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, @@ -94904,8 +95063,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [25813] = 2, - ACTIONS(3812), 7, + aux_sym__newline_token1, + [25979] = 2, + ACTIONS(3887), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -94913,7 +95073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3810), 42, + ACTIONS(3885), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -94956,25 +95116,25 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [25867] = 8, - ACTIONS(3945), 1, + [26033] = 8, + ACTIONS(3929), 1, sym__whitespace_ge_2, - ACTIONS(3947), 1, + ACTIONS(3931), 1, aux_sym__whitespace_token1, - ACTIONS(3949), 1, + ACTIONS(3933), 1, aux_sym__newline_token1, - ACTIONS(3983), 1, + ACTIONS(3991), 1, anon_sym_RBRACK, - ACTIONS(3939), 2, + ACTIONS(3923), 2, anon_sym_LT, anon_sym_BSLASH, - STATE(845), 5, + STATE(862), 5, sym__whitespace, sym__word, sym__newline, sym__text_inline_no_link, aux_sym_link_label_repeat1, - ACTIONS(3985), 10, + ACTIONS(3927), 10, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -94985,7 +95145,7 @@ static const uint16_t ts_small_parse_table[] = { sym_backslash_escape, sym__word_no_digit, sym__digits, - ACTIONS(3937), 28, + ACTIONS(3921), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -95014,8 +95174,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [25933] = 2, - ACTIONS(3915), 7, + [26099] = 2, + ACTIONS(2062), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -95023,11 +95183,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3913), 42, + ACTIONS(2060), 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, @@ -95066,8 +95225,67 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [25987] = 2, - ACTIONS(3919), 7, + aux_sym__newline_token1, + [26153] = 8, + ACTIONS(3929), 1, + sym__whitespace_ge_2, + ACTIONS(3931), 1, + aux_sym__whitespace_token1, + ACTIONS(3933), 1, + aux_sym__newline_token1, + ACTIONS(3993), 1, + anon_sym_RBRACK, + ACTIONS(3923), 2, + anon_sym_LT, + anon_sym_BSLASH, + STATE(852), 5, + sym__whitespace, + sym__word, + sym__newline, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(3995), 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(3921), 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, + [26219] = 2, + ACTIONS(3744), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -95075,11 +95293,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3917), 42, + ACTIONS(3742), 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, @@ -95118,8 +95335,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [26041] = 2, - ACTIONS(3679), 7, + aux_sym__newline_token1, + [26273] = 2, + ACTIONS(3706), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -95127,15 +95345,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3677), 42, + ACTIONS(3704), 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_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [26327] = 8, + ACTIONS(3929), 1, + sym__whitespace_ge_2, + ACTIONS(3931), 1, + aux_sym__whitespace_token1, + ACTIONS(3933), 1, + aux_sym__newline_token1, + ACTIONS(3997), 1, + anon_sym_RBRACK, + ACTIONS(3923), 2, + anon_sym_LT, + anon_sym_BSLASH, + STATE(862), 5, + sym__whitespace, + sym__word, + sym__newline, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(3927), 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(3921), 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, + [26393] = 8, + ACTIONS(3929), 1, + sym__whitespace_ge_2, + ACTIONS(3931), 1, + aux_sym__whitespace_token1, + ACTIONS(3933), 1, + aux_sym__newline_token1, + ACTIONS(3999), 1, + anon_sym_RBRACK, + ACTIONS(3923), 2, + anon_sym_LT, + anon_sym_BSLASH, + STATE(852), 5, + sym__whitespace, + sym__word, + sym__newline, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(3995), 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(3921), 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, @@ -95151,7 +95497,49 @@ 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, + [26459] = 4, + ACTIONS(3720), 1, + anon_sym_LPAREN, + ACTIONS(3945), 1, anon_sym_LBRACK, + ACTIONS(3718), 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(3716), 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_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__, @@ -95170,8 +95558,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [26095] = 2, - ACTIONS(2146), 7, + [26517] = 2, + ACTIONS(2086), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -95179,7 +95567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2144), 42, + ACTIONS(2084), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -95222,42 +95610,76 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [26149] = 8, - ACTIONS(3945), 1, - sym__whitespace_ge_2, - ACTIONS(3947), 1, - aux_sym__whitespace_token1, - ACTIONS(3949), 1, - aux_sym__newline_token1, - ACTIONS(3987), 1, - anon_sym_RBRACK, - ACTIONS(3939), 2, + [26571] = 2, + ACTIONS(3674), 7, + anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - STATE(845), 5, - sym__whitespace, - sym__word, - sym__newline, - sym__text_inline_no_link, - aux_sym_link_label_repeat1, - ACTIONS(3985), 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(3672), 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_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - ACTIONS(3937), 28, + aux_sym__newline_token1, + [26625] = 2, + ACTIONS(3756), 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(3754), 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, @@ -95273,6 +95695,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, @@ -95280,8 +95704,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [26215] = 2, - ACTIONS(3923), 7, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [26679] = 2, + ACTIONS(2066), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -95289,11 +95723,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3921), 42, + ACTIONS(2064), 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, @@ -95332,42 +95765,77 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [26269] = 8, - ACTIONS(3945), 1, - sym__whitespace_ge_2, - ACTIONS(3947), 1, - aux_sym__whitespace_token1, - ACTIONS(3949), 1, aux_sym__newline_token1, - ACTIONS(3989), 1, - anon_sym_RBRACK, - ACTIONS(3939), 2, + [26733] = 2, + ACTIONS(2074), 7, + anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - STATE(908), 5, - sym__whitespace, - sym__word, - sym__newline, - sym__text_inline_no_link, - aux_sym_link_label_repeat1, - ACTIONS(3991), 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(2072), 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_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - ACTIONS(3937), 28, + aux_sym__newline_token1, + [26787] = 2, + ACTIONS(2034), 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(2032), 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, @@ -95383,6 +95851,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, @@ -95390,8 +95860,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [26335] = 2, - ACTIONS(3783), 7, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [26841] = 2, + ACTIONS(3797), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -95399,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(3781), 42, + ACTIONS(3795), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -95442,8 +95922,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [26389] = 2, - ACTIONS(3927), 7, + [26895] = 2, + ACTIONS(3592), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -95451,11 +95931,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3925), 42, + ACTIONS(3590), 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, @@ -95494,8 +95973,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [26443] = 2, - ACTIONS(3877), 7, + aux_sym__newline_token1, + [26949] = 2, + ACTIONS(3725), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -95503,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(3875), 42, + ACTIONS(3723), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -95546,42 +96026,76 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [26497] = 8, - ACTIONS(3945), 1, - sym__whitespace_ge_2, - ACTIONS(3947), 1, - aux_sym__whitespace_token1, - ACTIONS(3949), 1, - aux_sym__newline_token1, - ACTIONS(3993), 1, - anon_sym_RBRACK, - ACTIONS(3939), 2, + [27003] = 2, + ACTIONS(2046), 7, + anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - STATE(908), 5, - sym__whitespace, - sym__word, - sym__newline, - sym__text_inline_no_link, - aux_sym_link_label_repeat1, - ACTIONS(3991), 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(2044), 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_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - ACTIONS(3937), 28, + aux_sym__newline_token1, + [27057] = 2, + ACTIONS(2082), 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(2080), 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, @@ -95597,6 +96111,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, @@ -95604,12 +96120,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [26563] = 4, - ACTIONS(3733), 1, - anon_sym_LPAREN, - ACTIONS(3973), 1, - anon_sym_LBRACK, - ACTIONS(3731), 7, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [27111] = 2, + ACTIONS(3887), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -95617,16 +96139,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3729), 40, + ACTIONS(3885), 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, @@ -95640,6 +96164,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__, @@ -95657,9 +96182,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [26621] = 2, - ACTIONS(3667), 7, + [27165] = 2, + ACTIONS(3883), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -95667,10 +96191,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3665), 42, + ACTIONS(3881), 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, @@ -95709,11 +96234,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [26675] = 3, - ACTIONS(3995), 1, - sym__emphasis_close_star, - ACTIONS(3901), 7, + [27219] = 2, + ACTIONS(3702), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -95721,7 +96243,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), 41, + ACTIONS(3700), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -95763,8 +96285,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [26731] = 2, - ACTIONS(2074), 7, + aux_sym__newline_token1, + [27273] = 2, + ACTIONS(3879), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -95772,10 +96295,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2072), 42, + ACTIONS(3877), 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, @@ -95814,11 +96338,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [26785] = 3, - ACTIONS(3588), 1, - sym__last_token_punctuation, - ACTIONS(2946), 7, + [27327] = 2, + ACTIONS(3937), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -95826,10 +96347,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2523), 41, + ACTIONS(3935), 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, @@ -95850,6 +96372,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__, @@ -95867,9 +96390,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [26841] = 2, - ACTIONS(3999), 7, + [27381] = 2, + ACTIONS(3891), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -95877,10 +96399,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(3889), 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, @@ -95919,11 +96442,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [26895] = 3, - ACTIONS(4001), 1, - sym__emphasis_close_underscore, - ACTIONS(3907), 7, + [27435] = 2, + ACTIONS(3633), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -95931,7 +96451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3905), 41, + ACTIONS(3631), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -95973,8 +96493,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [26951] = 2, - ACTIONS(4005), 7, + aux_sym__newline_token1, + [27489] = 2, + ACTIONS(3629), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -95982,7 +96503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4003), 42, + ACTIONS(3627), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -96025,8 +96546,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [27005] = 2, - ACTIONS(3787), 7, + [27543] = 2, + ACTIONS(3879), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -96034,7 +96555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3785), 42, + ACTIONS(3877), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -96077,8 +96598,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [27059] = 2, - ACTIONS(2090), 7, + [27597] = 2, + ACTIONS(3686), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -96086,7 +96607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2088), 42, + ACTIONS(3684), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -96129,8 +96650,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [27113] = 2, - ACTIONS(4009), 7, + [27651] = 2, + ACTIONS(3610), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -96138,7 +96659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4007), 42, + ACTIONS(3608), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -96181,8 +96702,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [27167] = 2, - ACTIONS(2046), 7, + [27705] = 2, + ACTIONS(2094), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -96190,7 +96711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2044), 42, + ACTIONS(2092), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -96233,8 +96754,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [27221] = 2, - ACTIONS(3663), 7, + [27759] = 2, + ACTIONS(3606), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -96242,7 +96763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3661), 42, + ACTIONS(3604), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -96285,11 +96806,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [27275] = 3, - ACTIONS(3733), 2, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(3731), 7, + [27813] = 2, + ACTIONS(3660), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -96297,7 +96815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3729), 40, + ACTIONS(3658), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -96307,6 +96825,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, @@ -96320,6 +96839,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__, @@ -96338,8 +96858,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [27331] = 2, - ACTIONS(2068), 7, + [27867] = 3, + ACTIONS(4001), 1, + sym__emphasis_close_star, + ACTIONS(3949), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -96347,7 +96869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2066), 42, + ACTIONS(3947), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -96389,9 +96911,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [27385] = 2, - ACTIONS(3620), 7, + [27923] = 2, + ACTIONS(2942), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -96399,7 +96920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3618), 42, + ACTIONS(2940), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -96442,42 +96963,24 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [27439] = 8, - ACTIONS(3945), 1, - sym__whitespace_ge_2, - ACTIONS(3947), 1, - aux_sym__whitespace_token1, - ACTIONS(3949), 1, - aux_sym__newline_token1, - ACTIONS(4011), 1, - anon_sym_RBRACK, - ACTIONS(3939), 2, + [27977] = 2, + ACTIONS(2106), 7, + anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - STATE(845), 5, - sym__whitespace, - sym__word, - sym__newline, - sym__text_inline_no_link, - aux_sym_link_label_repeat1, - ACTIONS(3985), 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(3937), 28, + aux_sym__whitespace_token1, + ACTIONS(2104), 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, @@ -96493,6 +96996,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, @@ -96500,42 +97005,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [27505] = 8, - ACTIONS(3945), 1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, sym__whitespace_ge_2, - ACTIONS(3947), 1, - aux_sym__whitespace_token1, - ACTIONS(3949), 1, + sym__word_no_digit, + sym__digits, aux_sym__newline_token1, - ACTIONS(4013), 1, - anon_sym_RBRACK, - ACTIONS(3939), 2, + [28031] = 2, + ACTIONS(2038), 7, + anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - STATE(918), 5, - sym__whitespace, - sym__word, - sym__newline, - sym__text_inline_no_link, - aux_sym_link_label_repeat1, - ACTIONS(4015), 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(3937), 28, + aux_sym__whitespace_token1, + ACTIONS(2036), 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, @@ -96551,6 +97048,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, @@ -96558,8 +97057,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [27571] = 2, - ACTIONS(3648), 7, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [28085] = 3, + ACTIONS(4003), 1, + sym__emphasis_close_underscore, + ACTIONS(3955), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -96567,7 +97078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3646), 42, + ACTIONS(3953), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -96609,9 +97120,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [27625] = 2, - ACTIONS(3652), 7, + [28141] = 2, + ACTIONS(3915), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -96619,10 +97129,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(3913), 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, @@ -96661,43 +97172,42 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [27679] = 8, - ACTIONS(3945), 1, + [28195] = 12, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(3947), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(3949), 1, + ACTIONS(4015), 1, aux_sym__newline_token1, - ACTIONS(4017), 1, - anon_sym_RBRACK, - ACTIONS(3939), 2, - anon_sym_LT, - anon_sym_BSLASH, - STATE(918), 5, + STATE(960), 1, sym__whitespace, - sym__word, + STATE(1046), 1, sym__newline, - sym__text_inline_no_link, - aux_sym_link_label_repeat1, - ACTIONS(4015), 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(1173), 1, + sym_language, + STATE(2239), 1, + sym_info_string, + ACTIONS(4007), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1174), 2, + sym__text, + aux_sym_info_string_repeat1, + STATE(1333), 2, + sym__word, + aux_sym_language_repeat1, + ACTIONS(4009), 5, sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(3937), 28, + ACTIONS(4005), 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, @@ -96709,10 +97219,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_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -96720,26 +97233,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [27745] = 3, + [28268] = 12, + ACTIONS(1750), 1, + sym__blank_line_start, ACTIONS(4019), 1, - sym__emphasis_close_star, - ACTIONS(3901), 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, + sym__whitespace_ge_2, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(3899), 41, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, + ACTIONS(4025), 1, + aux_sym__newline_token1, + ACTIONS(4027), 1, + sym__block_close, + STATE(1240), 1, + aux_sym__ignore_matching_tokens, + STATE(1656), 1, + sym__newline, + STATE(2414), 1, + sym__blank_line, + ACTIONS(4023), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(4029), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + STATE(1543), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4017), 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, @@ -96751,11 +97279,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__, @@ -96764,28 +97294,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + [28341] = 12, + ACTIONS(4011), 1, + sym__whitespace_ge_2, + ACTIONS(4013), 1, + aux_sym__whitespace_token1, + ACTIONS(4015), 1, + aux_sym__newline_token1, + STATE(952), 1, + sym__whitespace, + STATE(1038), 1, + sym__newline, + STATE(1173), 1, + sym_language, + STATE(2212), 1, + sym_info_string, + ACTIONS(4007), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1174), 2, + sym__text, + aux_sym_info_string_repeat1, + STATE(1333), 2, + sym__word, + aux_sym_language_repeat1, + ACTIONS(4009), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [27801] = 2, - ACTIONS(2034), 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(2032), 42, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, + ACTIONS(4005), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -96802,6 +97341,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, @@ -96815,29 +97355,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + [28414] = 12, + ACTIONS(4011), 1, + sym__whitespace_ge_2, + ACTIONS(4013), 1, + aux_sym__whitespace_token1, + ACTIONS(4031), 1, + aux_sym__newline_token1, + STATE(955), 1, + sym__whitespace, + STATE(1059), 1, + sym__newline, + STATE(1173), 1, + sym_language, + STATE(2219), 1, + sym_info_string, + ACTIONS(4007), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1174), 2, + sym__text, + aux_sym_info_string_repeat1, + STATE(1333), 2, + sym__word, + aux_sym_language_repeat1, + ACTIONS(4009), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [27855] = 2, - ACTIONS(3727), 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(3725), 42, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, + ACTIONS(4005), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -96854,6 +97402,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, @@ -96867,29 +97416,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + [28487] = 11, + ACTIONS(4011), 1, + sym__whitespace_ge_2, + ACTIONS(4013), 1, + aux_sym__whitespace_token1, + ACTIONS(4031), 1, + aux_sym__newline_token1, + STATE(1101), 1, + sym__newline, + STATE(1173), 1, + sym_language, + STATE(2158), 1, + sym_info_string, + ACTIONS(4007), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1333), 2, + sym__word, + aux_sym_language_repeat1, + STATE(1174), 3, + sym__text, + sym__whitespace, + aux_sym_info_string_repeat1, + ACTIONS(4009), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [27909] = 2, - ACTIONS(3696), 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(3694), 42, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, + ACTIONS(4005), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -96906,6 +97462,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, @@ -96919,29 +97476,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + [28558] = 11, + ACTIONS(4011), 1, + sym__whitespace_ge_2, + ACTIONS(4013), 1, + aux_sym__whitespace_token1, + ACTIONS(4015), 1, + aux_sym__newline_token1, + STATE(1100), 1, + sym__newline, + STATE(1173), 1, + sym_language, + STATE(2161), 1, + sym_info_string, + ACTIONS(4007), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1333), 2, + sym__word, + aux_sym_language_repeat1, + STATE(1174), 3, + sym__text, + sym__whitespace, + aux_sym_info_string_repeat1, + ACTIONS(4009), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [27963] = 2, - ACTIONS(2060), 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(2058), 42, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, + ACTIONS(4005), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -96958,6 +97522,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, @@ -96971,52 +97536,42 @@ 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_entity_reference, - sym_numeric_character_reference, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [28017] = 8, - ACTIONS(3945), 1, + [28629] = 12, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(3947), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(3949), 1, + ACTIONS(4031), 1, aux_sym__newline_token1, - ACTIONS(4021), 1, - anon_sym_RBRACK, - ACTIONS(3939), 2, - anon_sym_LT, - anon_sym_BSLASH, - STATE(845), 5, + STATE(926), 1, sym__whitespace, - sym__word, + STATE(1089), 1, sym__newline, - sym__text_inline_no_link, - aux_sym_link_label_repeat1, - ACTIONS(3985), 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(1173), 1, + sym_language, + STATE(2162), 1, + sym_info_string, + ACTIONS(4007), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1174), 2, + sym__text, + aux_sym_info_string_repeat1, + STATE(1333), 2, + sym__word, + aux_sym_language_repeat1, + ACTIONS(4009), 5, sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(3937), 28, + ACTIONS(4005), 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, @@ -97028,10 +97583,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_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -97039,19 +97597,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [28083] = 2, - ACTIONS(3675), 7, + [28702] = 12, + ACTIONS(4011), 1, + sym__whitespace_ge_2, + ACTIONS(4013), 1, + aux_sym__whitespace_token1, + ACTIONS(4015), 1, + aux_sym__newline_token1, + STATE(927), 1, + sym__whitespace, + STATE(1087), 1, + sym__newline, + STATE(1173), 1, + sym_language, + STATE(2164), 1, + sym_info_string, + ACTIONS(4007), 2, 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(3673), 42, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, + STATE(1174), 2, + sym__text, + aux_sym_info_string_repeat1, + STATE(1333), 2, + sym__word, + aux_sym_language_repeat1, + ACTIONS(4009), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4005), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -97068,6 +97644,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, @@ -97081,29 +97658,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + [28775] = 11, + ACTIONS(4011), 1, + sym__whitespace_ge_2, + ACTIONS(4013), 1, + aux_sym__whitespace_token1, + ACTIONS(4031), 1, + aux_sym__newline_token1, + STATE(1040), 1, + sym__newline, + STATE(1173), 1, + sym_language, + STATE(2171), 1, + sym_info_string, + ACTIONS(4007), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1333), 2, + sym__word, + aux_sym_language_repeat1, + STATE(1174), 3, + sym__text, + sym__whitespace, + aux_sym_info_string_repeat1, + ACTIONS(4009), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [28137] = 2, - ACTIONS(3685), 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(3683), 42, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, + ACTIONS(4005), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -97120,6 +97704,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, @@ -97133,29 +97718,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + [28846] = 11, + ACTIONS(4011), 1, + sym__whitespace_ge_2, + ACTIONS(4013), 1, + aux_sym__whitespace_token1, + ACTIONS(4015), 1, + aux_sym__newline_token1, + STATE(1069), 1, + sym__newline, + STATE(1173), 1, + sym_language, + STATE(2172), 1, + sym_info_string, + ACTIONS(4007), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1333), 2, + sym__word, + aux_sym_language_repeat1, + STATE(1174), 3, + sym__text, + sym__whitespace, + aux_sym_info_string_repeat1, + ACTIONS(4009), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [28191] = 2, - ACTIONS(2102), 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(2100), 42, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, + ACTIONS(4005), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -97172,6 +97764,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, @@ -97185,31 +97778,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + [28917] = 12, + ACTIONS(4011), 1, + sym__whitespace_ge_2, + ACTIONS(4013), 1, + aux_sym__whitespace_token1, + ACTIONS(4031), 1, + aux_sym__newline_token1, + STATE(930), 1, + sym__whitespace, + STATE(1102), 1, + sym__newline, + STATE(1173), 1, + sym_language, + STATE(2174), 1, + sym_info_string, + ACTIONS(4007), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1174), 2, + sym__text, + aux_sym_info_string_repeat1, + STATE(1333), 2, + sym__word, + aux_sym_language_repeat1, + ACTIONS(4009), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [28245] = 3, - ACTIONS(4027), 1, - sym__emphasis_close_underscore, - ACTIONS(4025), 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(4023), 40, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, + ACTIONS(4005), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -97226,10 +97825,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_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -97237,46 +97839,98 @@ 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_entity_reference, - sym_numeric_character_reference, - sym_uri_autolink, - sym_email_autolink, + [28990] = 12, + ACTIONS(1750), 1, + sym__blank_line_start, + ACTIONS(4019), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, + ACTIONS(4021), 1, + aux_sym__whitespace_token1, + ACTIONS(4025), 1, aux_sym__newline_token1, - [28300] = 11, ACTIONS(4035), 1, + sym__block_close, + STATE(938), 1, + aux_sym__ignore_matching_tokens, + STATE(1656), 1, + sym__newline, + STATE(2430), 1, + sym__blank_line, + ACTIONS(4033), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(4037), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + STATE(1538), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4017), 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, + [29063] = 12, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(4039), 1, + ACTIONS(4015), 1, aux_sym__newline_token1, - STATE(1058), 1, + STATE(931), 1, + sym__whitespace, + STATE(1112), 1, sym__newline, - STATE(1169), 1, + STATE(1173), 1, sym_language, - STATE(2329), 1, + STATE(2175), 1, sym_info_string, - ACTIONS(4031), 2, + ACTIONS(4007), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1507), 2, - sym__word, - aux_sym_language_repeat1, - STATE(1166), 3, + STATE(1174), 2, sym__text, - sym__whitespace, aux_sym_info_string_repeat1, - ACTIONS(4033), 5, + STATE(1333), 2, + sym__word, + aux_sym_language_repeat1, + ACTIONS(4009), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4029), 30, + ACTIONS(4005), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -97307,37 +97961,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [28371] = 12, - ACTIONS(4035), 1, + [29136] = 11, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(4041), 1, + ACTIONS(4031), 1, aux_sym__newline_token1, - STATE(946), 1, - sym__whitespace, - STATE(1044), 1, + STATE(1109), 1, sym__newline, - STATE(1169), 1, + STATE(1173), 1, sym_language, - STATE(2219), 1, + STATE(2183), 1, sym_info_string, - ACTIONS(4031), 2, + ACTIONS(4007), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1166), 2, - sym__text, - aux_sym_info_string_repeat1, - STATE(1507), 2, + STATE(1333), 2, sym__word, aux_sym_language_repeat1, - ACTIONS(4033), 5, + STATE(1174), 3, + sym__text, + sym__whitespace, + aux_sym_info_string_repeat1, + ACTIONS(4009), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4029), 30, + ACTIONS(4005), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -97368,8 +98021,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [28444] = 2, - ACTIONS(4045), 7, + [29207] = 3, + ACTIONS(4043), 1, + sym__emphasis_close_star, + ACTIONS(4041), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -97377,11 +98032,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4043), 41, + ACTIONS(4039), 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, @@ -97419,36 +98073,36 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [28497] = 11, - ACTIONS(4035), 1, + [29262] = 11, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(4041), 1, + ACTIONS(4015), 1, aux_sym__newline_token1, - STATE(1039), 1, + STATE(1098), 1, sym__newline, - STATE(1169), 1, + STATE(1173), 1, sym_language, - STATE(2161), 1, + STATE(2189), 1, sym_info_string, - ACTIONS(4031), 2, + ACTIONS(4007), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1507), 2, + STATE(1333), 2, sym__word, aux_sym_language_repeat1, - STATE(1166), 3, + STATE(1174), 3, sym__text, sym__whitespace, aux_sym_info_string_repeat1, - ACTIONS(4033), 5, + ACTIONS(4009), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4029), 30, + ACTIONS(4005), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -97479,41 +98133,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [28568] = 11, - ACTIONS(4035), 1, + [29333] = 12, + ACTIONS(1750), 1, + sym__blank_line_start, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4039), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - STATE(1110), 1, + ACTIONS(4047), 1, + sym__block_close, + STATE(1240), 1, + aux_sym__ignore_matching_tokens, + STATE(1656), 1, sym__newline, - STATE(1169), 1, - sym_language, - STATE(2162), 1, - sym_info_string, - ACTIONS(4031), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1507), 2, - sym__word, - aux_sym_language_repeat1, - STATE(1166), 3, - sym__text, - sym__whitespace, - aux_sym_info_string_repeat1, - ACTIONS(4033), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + STATE(2432), 1, + sym__blank_line, + ACTIONS(4045), 2, sym__word_no_digit, sym__digits, - ACTIONS(4029), 30, + ACTIONS(4029), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + STATE(1536), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4017), 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, @@ -97531,48 +98185,8 @@ 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, - [28639] = 2, - ACTIONS(4049), 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(4047), 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_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -97580,18 +98194,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_entity_reference, - sym_numeric_character_reference, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [28692] = 2, - ACTIONS(4053), 7, + [29406] = 2, + ACTIONS(4051), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -97599,7 +98203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4051), 41, + ACTIONS(4049), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -97641,42 +98245,41 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [28745] = 12, - ACTIONS(4035), 1, + [29459] = 12, + ACTIONS(1750), 1, + sym__blank_line_start, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4041), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - STATE(926), 1, - sym__whitespace, - STATE(1109), 1, + ACTIONS(4055), 1, + sym__block_close, + STATE(957), 1, + aux_sym__ignore_matching_tokens, + STATE(1656), 1, sym__newline, - STATE(1169), 1, - sym_language, - STATE(2164), 1, - sym_info_string, - ACTIONS(4031), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1166), 2, - sym__text, - aux_sym_info_string_repeat1, - STATE(1507), 2, - sym__word, - aux_sym_language_repeat1, - ACTIONS(4033), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + STATE(2448), 1, + sym__blank_line, + ACTIONS(4053), 2, sym__word_no_digit, sym__digits, - ACTIONS(4029), 30, + ACTIONS(4057), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + STATE(1518), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4017), 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, @@ -97694,6 +98297,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__, @@ -97702,8 +98306,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [28818] = 2, - ACTIONS(4057), 7, + [29532] = 2, + ACTIONS(4061), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -97711,7 +98315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4055), 41, + ACTIONS(4059), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -97753,42 +98357,27 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [28871] = 12, - ACTIONS(4035), 1, - sym__whitespace_ge_2, - ACTIONS(4037), 1, - aux_sym__whitespace_token1, - ACTIONS(4039), 1, - aux_sym__newline_token1, - STATE(927), 1, - sym__whitespace, - STATE(1108), 1, - sym__newline, - STATE(1169), 1, - sym_language, - STATE(2168), 1, - sym_info_string, - ACTIONS(4031), 2, - anon_sym_AMP, + [29585] = 4, + STATE(945), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(391), 3, + anon_sym_LT, anon_sym_BSLASH, - STATE(1166), 2, - sym__text, - aux_sym_info_string_repeat1, - STATE(1507), 2, - sym__word, - aux_sym_language_repeat1, - ACTIONS(4033), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4029), 30, + aux_sym__whitespace_token1, + ACTIONS(4063), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(389), 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, @@ -97800,12 +98389,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__, @@ -97814,41 +98401,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [28944] = 11, - ACTIONS(4035), 1, - sym__whitespace_ge_2, - ACTIONS(4037), 1, - aux_sym__whitespace_token1, - ACTIONS(4041), 1, - aux_sym__newline_token1, - STATE(1102), 1, - sym__newline, - STATE(1169), 1, - sym_language, - STATE(2174), 1, - sym_info_string, - ACTIONS(4031), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1507), 2, - sym__word, - aux_sym_language_repeat1, - STATE(1166), 3, - sym__text, - sym__whitespace, - aux_sym_info_string_repeat1, - ACTIONS(4033), 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(4029), 30, + aux_sym__newline_token1, + [29642] = 4, + STATE(944), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(391), 3, + anon_sym_LT, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(4065), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(389), 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, @@ -97860,12 +98442,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__, @@ -97874,41 +98454,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [29015] = 11, - ACTIONS(4035), 1, - sym__whitespace_ge_2, - ACTIONS(4037), 1, - aux_sym__whitespace_token1, - ACTIONS(4039), 1, - aux_sym__newline_token1, - STATE(1101), 1, - sym__newline, - STATE(1169), 1, - sym_language, - STATE(2175), 1, - sym_info_string, - ACTIONS(4031), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1507), 2, - sym__word, - aux_sym_language_repeat1, - STATE(1166), 3, - sym__text, - sym__whitespace, - aux_sym_info_string_repeat1, - ACTIONS(4033), 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(4029), 30, + aux_sym__newline_token1, + [29699] = 4, + STATE(944), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(405), 3, + anon_sym_LT, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(4067), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(403), 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, @@ -97920,12 +98495,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__, @@ -97934,42 +98507,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [29086] = 12, - ACTIONS(4035), 1, - sym__whitespace_ge_2, - ACTIONS(4037), 1, - aux_sym__whitespace_token1, - ACTIONS(4041), 1, - aux_sym__newline_token1, - STATE(933), 1, - sym__whitespace, - STATE(1100), 1, - sym__newline, - STATE(1169), 1, - sym_language, - STATE(2178), 1, - sym_info_string, - ACTIONS(4031), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1166), 2, - sym__text, - aux_sym_info_string_repeat1, - STATE(1507), 2, - sym__word, - aux_sym_language_repeat1, - ACTIONS(4033), 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(4029), 30, + aux_sym__newline_token1, + [29756] = 4, + STATE(944), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(399), 3, + anon_sym_LT, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(4065), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(397), 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, @@ -97981,12 +98548,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__, @@ -97995,37 +98560,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [29159] = 12, - ACTIONS(4035), 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, + [29813] = 12, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(4039), 1, + ACTIONS(4031), 1, aux_sym__newline_token1, - STATE(934), 1, + STATE(935), 1, sym__whitespace, - STATE(1099), 1, + STATE(1092), 1, sym__newline, - STATE(1169), 1, + STATE(1173), 1, sym_language, - STATE(2179), 1, + STATE(2190), 1, sym_info_string, - ACTIONS(4031), 2, + ACTIONS(4007), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1166), 2, + STATE(1174), 2, sym__text, aux_sym_info_string_repeat1, - STATE(1507), 2, + STATE(1333), 2, sym__word, aux_sym_language_repeat1, - ACTIONS(4033), 5, + ACTIONS(4009), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4029), 30, + ACTIONS(4005), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -98056,36 +98630,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [29232] = 11, - ACTIONS(4035), 1, - sym__whitespace_ge_2, - ACTIONS(4037), 1, - aux_sym__whitespace_token1, - ACTIONS(4041), 1, - aux_sym__newline_token1, - STATE(1092), 1, - sym__newline, - STATE(1169), 1, - sym_language, - STATE(2190), 1, - sym_info_string, - ACTIONS(4031), 2, + [29886] = 2, + ACTIONS(4072), 7, anon_sym_AMP, + anon_sym_LT, anon_sym_BSLASH, - STATE(1507), 2, - sym__word, - aux_sym_language_repeat1, - STATE(1166), 3, - sym__text, - sym__whitespace, - aux_sym_info_string_repeat1, - ACTIONS(4033), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4029), 30, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + aux_sym__whitespace_token1, + ACTIONS(4070), 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, @@ -98102,13 +98660,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__, anon_sym_BQUOTE, @@ -98116,36 +98671,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [29303] = 11, - ACTIONS(4035), 1, - sym__whitespace_ge_2, - ACTIONS(4037), 1, - aux_sym__whitespace_token1, - ACTIONS(4039), 1, - aux_sym__newline_token1, - STATE(1091), 1, - sym__newline, - STATE(1169), 1, - sym_language, - STATE(2191), 1, - sym_info_string, - ACTIONS(4031), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1507), 2, - sym__word, - aux_sym_language_repeat1, - STATE(1166), 3, - sym__text, - sym__whitespace, - aux_sym_info_string_repeat1, - ACTIONS(4033), 5, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - ACTIONS(4029), 30, + aux_sym__newline_token1, + [29939] = 2, + ACTIONS(4076), 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(4074), 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, @@ -98162,13 +98711,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__, anon_sym_BQUOTE, @@ -98176,37 +98722,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [29374] = 12, - ACTIONS(4035), 1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [29992] = 12, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(4041), 1, + ACTIONS(4015), 1, aux_sym__newline_token1, STATE(937), 1, sym__whitespace, STATE(1086), 1, sym__newline, - STATE(1169), 1, + STATE(1173), 1, sym_language, STATE(2192), 1, sym_info_string, - ACTIONS(4031), 2, + ACTIONS(4007), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1166), 2, + STATE(1174), 2, sym__text, aux_sym_info_string_repeat1, - STATE(1507), 2, + STATE(1333), 2, sym__word, aux_sym_language_repeat1, - ACTIONS(4033), 5, + ACTIONS(4009), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4029), 30, + ACTIONS(4005), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -98237,105 +98793,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [29447] = 12, - ACTIONS(4035), 1, + [30065] = 16, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(4039), 1, - aux_sym__newline_token1, - STATE(938), 1, - sym__whitespace, - STATE(1085), 1, - sym__newline, - STATE(1169), 1, - sym_language, - STATE(2200), 1, - sym_info_string, - ACTIONS(4031), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1166), 2, - sym__text, - aux_sym_info_string_repeat1, - STATE(1507), 2, - sym__word, - aux_sym_language_repeat1, - ACTIONS(4033), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4029), 30, - anon_sym_BANG, + ACTIONS(4080), 1, anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, + ACTIONS(4084), 1, anon_sym_SQUOTE, + ACTIONS(4086), 1, anon_sym_LPAREN, + ACTIONS(4088), 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, + ACTIONS(4090), 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, - [29520] = 11, - ACTIONS(4035), 1, - sym__whitespace_ge_2, - ACTIONS(4037), 1, - aux_sym__whitespace_token1, - ACTIONS(4041), 1, - aux_sym__newline_token1, - STATE(1077), 1, + STATE(1955), 1, + sym_link_destination, + STATE(1957), 1, + sym_link_title, + STATE(2137), 1, sym__newline, - STATE(1169), 1, - sym_language, - STATE(2213), 1, - sym_info_string, - ACTIONS(4031), 2, + ACTIONS(4082), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1507), 2, + STATE(1229), 2, + sym__link_destination_parenthesis, sym__word, - aux_sym_language_repeat1, - STATE(1166), 3, - sym__text, + STATE(984), 3, + sym__soft_line_break, sym__whitespace, - aux_sym_info_string_repeat1, - ACTIONS(4033), 5, + aux_sym_inline_link_repeat1, + ACTIONS(4092), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4029), 30, + ACTIONS(4078), 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, @@ -98344,7 +98845,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, @@ -98358,36 +98858,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [29591] = 11, - ACTIONS(4035), 1, + [30146] = 11, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(4039), 1, + ACTIONS(4031), 1, aux_sym__newline_token1, - STATE(1076), 1, + STATE(1077), 1, sym__newline, - STATE(1169), 1, + STATE(1173), 1, sym_language, - STATE(2214), 1, + STATE(2203), 1, sym_info_string, - ACTIONS(4031), 2, + ACTIONS(4007), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1507), 2, + STATE(1333), 2, sym__word, aux_sym_language_repeat1, - STATE(1166), 3, + STATE(1174), 3, sym__text, sym__whitespace, aux_sym_info_string_repeat1, - ACTIONS(4033), 5, + ACTIONS(4009), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4029), 30, + ACTIONS(4005), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -98418,37 +98918,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [29662] = 12, - ACTIONS(4035), 1, + [30217] = 11, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(4041), 1, + ACTIONS(4015), 1, aux_sym__newline_token1, - STATE(941), 1, - sym__whitespace, - STATE(1073), 1, + STATE(1104), 1, sym__newline, - STATE(1169), 1, + STATE(1173), 1, sym_language, - STATE(2215), 1, + STATE(2321), 1, sym_info_string, - ACTIONS(4031), 2, + ACTIONS(4007), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1166), 2, - sym__text, - aux_sym_info_string_repeat1, - STATE(1507), 2, + STATE(1333), 2, sym__word, aux_sym_language_repeat1, - ACTIONS(4033), 5, + STATE(1174), 3, + sym__text, + sym__whitespace, + aux_sym_info_string_repeat1, + ACTIONS(4009), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4029), 30, + ACTIONS(4005), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -98479,36 +98978,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [29735] = 11, - ACTIONS(4035), 1, + [30288] = 11, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(4039), 1, + ACTIONS(4015), 1, aux_sym__newline_token1, - STATE(1059), 1, + STATE(1074), 1, sym__newline, - STATE(1169), 1, + STATE(1173), 1, sym_language, - STATE(2308), 1, + STATE(2206), 1, sym_info_string, - ACTIONS(4031), 2, + ACTIONS(4007), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1507), 2, + STATE(1333), 2, sym__word, aux_sym_language_repeat1, - STATE(1166), 3, + STATE(1174), 3, sym__text, sym__whitespace, aux_sym_info_string_repeat1, - ACTIONS(4033), 5, + ACTIONS(4009), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4029), 30, + ACTIONS(4005), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -98539,37 +99038,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [29806] = 12, - ACTIONS(4035), 1, + [30359] = 12, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(4039), 1, + ACTIONS(4031), 1, aux_sym__newline_token1, - STATE(942), 1, + STATE(951), 1, sym__whitespace, - STATE(1072), 1, + STATE(1065), 1, sym__newline, - STATE(1169), 1, + STATE(1173), 1, sym_language, - STATE(2218), 1, + STATE(2216), 1, sym_info_string, - ACTIONS(4031), 2, + ACTIONS(4007), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1166), 2, + STATE(1174), 2, sym__text, aux_sym_info_string_repeat1, - STATE(1507), 2, + STATE(1333), 2, sym__word, aux_sym_language_repeat1, - ACTIONS(4033), 5, + ACTIONS(4009), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4029), 30, + ACTIONS(4005), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -98600,36 +99099,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [29879] = 11, - ACTIONS(4035), 1, + [30432] = 11, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(4041), 1, + ACTIONS(4031), 1, aux_sym__newline_token1, - STATE(1062), 1, + STATE(1106), 1, sym__newline, - STATE(1169), 1, + STATE(1173), 1, sym_language, - STATE(2294), 1, + STATE(2314), 1, sym_info_string, - ACTIONS(4031), 2, + ACTIONS(4007), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1507), 2, + STATE(1333), 2, sym__word, aux_sym_language_repeat1, - STATE(1166), 3, + STATE(1174), 3, sym__text, sym__whitespace, aux_sym_info_string_repeat1, - ACTIONS(4033), 5, + ACTIONS(4009), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4029), 30, + ACTIONS(4005), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -98660,36 +99159,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [29950] = 11, - ACTIONS(4035), 1, - sym__whitespace_ge_2, - ACTIONS(4037), 1, - aux_sym__whitespace_token1, - ACTIONS(4041), 1, - aux_sym__newline_token1, - STATE(1050), 1, - sym__newline, - STATE(1169), 1, - sym_language, - STATE(2235), 1, - sym_info_string, - ACTIONS(4031), 2, + [30503] = 3, + ACTIONS(4098), 1, + sym__emphasis_close_underscore, + ACTIONS(4096), 7, anon_sym_AMP, + anon_sym_LT, anon_sym_BSLASH, - STATE(1507), 2, - sym__word, - aux_sym_language_repeat1, - STATE(1166), 3, - sym__text, - sym__whitespace, - aux_sym_info_string_repeat1, - ACTIONS(4033), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4029), 30, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + aux_sym__whitespace_token1, + ACTIONS(4094), 40, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -98706,13 +99190,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__, anon_sym_BQUOTE, @@ -98720,41 +99201,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [30021] = 11, - ACTIONS(4035), 1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [30558] = 12, + ACTIONS(1750), 1, + sym__blank_line_start, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4039), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - STATE(1046), 1, + ACTIONS(4102), 1, + sym__block_close, + STATE(1240), 1, + aux_sym__ignore_matching_tokens, + STATE(1656), 1, sym__newline, - STATE(1169), 1, - sym_language, - STATE(2236), 1, - sym_info_string, - ACTIONS(4031), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1507), 2, - sym__word, - aux_sym_language_repeat1, - STATE(1166), 3, - sym__text, - sym__whitespace, - aux_sym_info_string_repeat1, - ACTIONS(4033), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + STATE(2450), 1, + sym__blank_line, + ACTIONS(4100), 2, sym__word_no_digit, sym__digits, - ACTIONS(4029), 30, + ACTIONS(4029), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + STATE(1515), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4017), 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, @@ -98772,6 +99263,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__, @@ -98780,37 +99272,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [30092] = 12, - ACTIONS(4035), 1, + [30631] = 12, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(4041), 1, + ACTIONS(4015), 1, aux_sym__newline_token1, - STATE(947), 1, + STATE(953), 1, sym__whitespace, - STATE(1041), 1, + STATE(1063), 1, sym__newline, - STATE(1169), 1, + STATE(1173), 1, sym_language, - STATE(2239), 1, + STATE(2221), 1, sym_info_string, - ACTIONS(4031), 2, + ACTIONS(4007), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1166), 2, + STATE(1174), 2, sym__text, aux_sym_info_string_repeat1, - STATE(1507), 2, + STATE(1333), 2, sym__word, aux_sym_language_repeat1, - ACTIONS(4033), 5, + ACTIONS(4009), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4029), 30, + ACTIONS(4005), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -98841,37 +99333,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [30165] = 12, - ACTIONS(4035), 1, + [30704] = 11, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(4039), 1, + ACTIONS(4031), 1, aux_sym__newline_token1, - STATE(948), 1, - sym__whitespace, - STATE(1064), 1, + STATE(1049), 1, sym__newline, - STATE(1169), 1, + STATE(1173), 1, sym_language, - STATE(2242), 1, + STATE(2232), 1, sym_info_string, - ACTIONS(4031), 2, + ACTIONS(4007), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1166), 2, - sym__text, - aux_sym_info_string_repeat1, - STATE(1507), 2, + STATE(1333), 2, sym__word, aux_sym_language_repeat1, - ACTIONS(4033), 5, + STATE(1174), 3, + sym__text, + sym__whitespace, + aux_sym_info_string_repeat1, + ACTIONS(4009), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4029), 30, + ACTIONS(4005), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -98902,27 +99393,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [30238] = 4, - STATE(954), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(391), 3, - anon_sym_LT, - anon_sym_BSLASH, + [30775] = 11, + ACTIONS(4011), 1, + sym__whitespace_ge_2, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(4059), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(389), 41, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, + ACTIONS(4015), 1, + aux_sym__newline_token1, + STATE(1048), 1, + sym__newline, + STATE(1173), 1, + sym_language, + STATE(2233), 1, + sym_info_string, + ACTIONS(4007), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1333), 2, + sym__word, + aux_sym_language_repeat1, + STATE(1174), 3, + sym__text, + sym__whitespace, + aux_sym_info_string_repeat1, + ACTIONS(4009), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4005), 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, @@ -98934,10 +99439,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_RBRACK, anon_sym_CARET, anon_sym__, @@ -98946,27 +99453,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + [30846] = 3, + ACTIONS(4110), 4, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + ACTIONS(4107), 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, - [30295] = 4, - STATE(953), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(391), 3, - anon_sym_LT, - anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4061), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(389), 41, + ACTIONS(4104), 37, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -98975,7 +99476,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, @@ -98999,30 +99499,41 @@ 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, - [30352] = 4, - STATE(953), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(399), 3, - anon_sym_LT, - anon_sym_BSLASH, + [30901] = 12, + ACTIONS(1750), 1, + sym__blank_line_start, + ACTIONS(4019), 1, + sym__whitespace_ge_2, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4063), 3, + ACTIONS(4025), 1, + aux_sym__newline_token1, + ACTIONS(4114), 1, + sym__block_close, + STATE(1240), 1, + aux_sym__ignore_matching_tokens, + STATE(1656), 1, + sym__newline, + STATE(2396), 1, + sym__blank_line, + ACTIONS(4112), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(4029), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(397), 41, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, + STATE(1444), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -99040,10 +99551,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__, @@ -99052,27 +99566,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + [30974] = 2, + ACTIONS(4118), 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, - [30409] = 4, - STATE(953), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(409), 3, - anon_sym_LT, - anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4061), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(407), 41, + ACTIONS(4116), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -99081,7 +99584,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, @@ -99105,78 +99607,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__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [30466] = 12, - ACTIONS(4035), 1, - sym__whitespace_ge_2, - ACTIONS(4037), 1, - aux_sym__whitespace_token1, - ACTIONS(4039), 1, - aux_sym__newline_token1, - STATE(944), 1, - sym__whitespace, - STATE(1042), 1, - sym__newline, - STATE(1169), 1, - sym_language, - STATE(2216), 1, - sym_info_string, - ACTIONS(4031), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1166), 2, - sym__text, - aux_sym_info_string_repeat1, - STATE(1507), 2, - sym__word, - aux_sym_language_repeat1, - ACTIONS(4033), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - ACTIONS(4029), 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, - [30539] = 2, - ACTIONS(4068), 7, + aux_sym__newline_token1, + [31027] = 2, + ACTIONS(4122), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -99184,7 +99626,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(4120), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -99226,19 +99668,37 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [30592] = 2, - ACTIONS(4072), 7, + [31080] = 12, + ACTIONS(4011), 1, + sym__whitespace_ge_2, + ACTIONS(4013), 1, + aux_sym__whitespace_token1, + ACTIONS(4031), 1, + aux_sym__newline_token1, + STATE(959), 1, + sym__whitespace, + STATE(1108), 1, + sym__newline, + STATE(1173), 1, + sym_language, + STATE(2237), 1, + sym_info_string, + ACTIONS(4007), 2, 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(4070), 41, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, + STATE(1174), 2, + sym__text, + aux_sym_info_string_repeat1, + STATE(1333), 2, + sym__word, + aux_sym_language_repeat1, + ACTIONS(4009), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4005), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -99255,58 +99715,50 @@ 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__, 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_entity_reference, - sym_numeric_character_reference, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [30645] = 11, - ACTIONS(4035), 1, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [31153] = 11, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(4041), 1, + ACTIONS(4031), 1, aux_sym__newline_token1, - STATE(1068), 1, + STATE(1042), 1, sym__newline, - STATE(1169), 1, + STATE(1173), 1, sym_language, - STATE(2250), 1, + STATE(2251), 1, sym_info_string, - ACTIONS(4031), 2, + ACTIONS(4007), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1507), 2, + STATE(1333), 2, sym__word, aux_sym_language_repeat1, - STATE(1166), 3, + STATE(1174), 3, sym__text, sym__whitespace, aux_sym_info_string_repeat1, - ACTIONS(4033), 5, + ACTIONS(4009), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4029), 30, + ACTIONS(4005), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -99337,36 +99789,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [30716] = 11, - ACTIONS(4035), 1, + [31224] = 11, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(4039), 1, + ACTIONS(4015), 1, aux_sym__newline_token1, - STATE(1070), 1, + STATE(1041), 1, sym__newline, - STATE(1169), 1, + STATE(1173), 1, sym_language, - STATE(2251), 1, + STATE(2252), 1, sym_info_string, - ACTIONS(4031), 2, + ACTIONS(4007), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1507), 2, + STATE(1333), 2, sym__word, aux_sym_language_repeat1, - STATE(1166), 3, + STATE(1174), 3, sym__text, sym__whitespace, aux_sym_info_string_repeat1, - ACTIONS(4033), 5, + ACTIONS(4009), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4029), 30, + ACTIONS(4005), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -99397,37 +99849,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [30787] = 12, - ACTIONS(4035), 1, + [31295] = 12, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(4041), 1, + ACTIONS(4031), 1, aux_sym__newline_token1, - STATE(958), 1, + STATE(966), 1, sym__whitespace, - STATE(1074), 1, + STATE(1070), 1, sym__newline, - STATE(1169), 1, + STATE(1173), 1, sym_language, - STATE(2254), 1, + STATE(2256), 1, sym_info_string, - ACTIONS(4031), 2, + ACTIONS(4007), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1166), 2, + STATE(1174), 2, sym__text, aux_sym_info_string_repeat1, - STATE(1507), 2, + STATE(1333), 2, sym__word, aux_sym_language_repeat1, - ACTIONS(4033), 5, + ACTIONS(4009), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4029), 30, + ACTIONS(4005), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -99458,37 +99910,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [30860] = 12, - ACTIONS(4035), 1, + [31368] = 12, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(4039), 1, + ACTIONS(4015), 1, aux_sym__newline_token1, - STATE(959), 1, + STATE(967), 1, sym__whitespace, - STATE(1078), 1, + STATE(1079), 1, sym__newline, - STATE(1169), 1, + STATE(1173), 1, sym_language, - STATE(2256), 1, + STATE(2261), 1, sym_info_string, - ACTIONS(4031), 2, + ACTIONS(4007), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1166), 2, + STATE(1174), 2, sym__text, aux_sym_info_string_repeat1, - STATE(1507), 2, + STATE(1333), 2, sym__word, aux_sym_language_repeat1, - ACTIONS(4033), 5, + ACTIONS(4009), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4029), 30, + ACTIONS(4005), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -99519,36 +99971,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [30933] = 11, - ACTIONS(4035), 1, + [31441] = 11, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(4041), 1, + ACTIONS(4031), 1, aux_sym__newline_token1, - STATE(1089), 1, + STATE(1072), 1, sym__newline, - STATE(1169), 1, + STATE(1173), 1, sym_language, - STATE(2265), 1, + STATE(2269), 1, sym_info_string, - ACTIONS(4031), 2, + ACTIONS(4007), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1507), 2, + STATE(1333), 2, sym__word, aux_sym_language_repeat1, - STATE(1166), 3, + STATE(1174), 3, sym__text, sym__whitespace, aux_sym_info_string_repeat1, - ACTIONS(4033), 5, + ACTIONS(4009), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4029), 30, + ACTIONS(4005), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -99579,36 +100031,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [31004] = 11, - ACTIONS(4035), 1, + [31512] = 11, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(4039), 1, + ACTIONS(4015), 1, aux_sym__newline_token1, - STATE(1093), 1, + STATE(1067), 1, sym__newline, - STATE(1169), 1, + STATE(1173), 1, sym_language, - STATE(2266), 1, + STATE(2271), 1, sym_info_string, - ACTIONS(4031), 2, + ACTIONS(4007), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1507), 2, + STATE(1333), 2, sym__word, aux_sym_language_repeat1, - STATE(1166), 3, + STATE(1174), 3, sym__text, sym__whitespace, aux_sym_info_string_repeat1, - ACTIONS(4033), 5, + ACTIONS(4009), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4029), 30, + ACTIONS(4005), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -99639,50 +100091,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [31075] = 16, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(4035), 1, + [31583] = 12, + ACTIONS(1750), 1, + sym__blank_line_start, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4076), 1, - anon_sym_DQUOTE, - ACTIONS(4080), 1, - anon_sym_SQUOTE, - ACTIONS(4082), 1, - anon_sym_LPAREN, - ACTIONS(4084), 1, - anon_sym_RPAREN, - ACTIONS(4086), 1, - anon_sym_LT, - STATE(2022), 1, - sym_link_title, - STATE(2023), 1, - sym_link_destination, - STATE(2144), 1, + ACTIONS(4025), 1, + aux_sym__newline_token1, + ACTIONS(4126), 1, + sym__block_close, + STATE(993), 1, + aux_sym__ignore_matching_tokens, + STATE(1656), 1, sym__newline, - ACTIONS(4078), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1267), 2, - sym__link_destination_parenthesis, - sym__word, - STATE(1009), 3, - sym__soft_line_break, - sym__whitespace, - aux_sym_inline_link_repeat1, - ACTIONS(4088), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + STATE(2339), 1, + sym__blank_line, + ACTIONS(4124), 2, sym__word_no_digit, sym__digits, - ACTIONS(4074), 25, + ACTIONS(4128), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + STATE(1349), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4017), 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, @@ -99691,11 +100137,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__, @@ -99704,37 +100152,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [31156] = 12, - ACTIONS(4035), 1, + [31656] = 12, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(4041), 1, + ACTIONS(4015), 1, aux_sym__newline_token1, - STATE(962), 1, + STATE(971), 1, sym__whitespace, - STATE(1097), 1, + STATE(1056), 1, sym__newline, - STATE(1169), 1, + STATE(1173), 1, sym_language, - STATE(2268), 1, + STATE(2280), 1, sym_info_string, - ACTIONS(4031), 2, + ACTIONS(4007), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1166), 2, + STATE(1174), 2, sym__text, aux_sym_info_string_repeat1, - STATE(1507), 2, + STATE(1333), 2, sym__word, aux_sym_language_repeat1, - ACTIONS(4033), 5, + ACTIONS(4009), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4029), 30, + ACTIONS(4005), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -99765,42 +100213,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [31229] = 12, - ACTIONS(4035), 1, + [31729] = 12, + ACTIONS(1750), 1, + sym__blank_line_start, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4039), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - STATE(963), 1, - sym__whitespace, - STATE(1098), 1, + ACTIONS(4132), 1, + sym__block_close, + STATE(989), 1, + aux_sym__ignore_matching_tokens, + STATE(1656), 1, sym__newline, - STATE(1169), 1, - sym_language, - STATE(2270), 1, - sym_info_string, - ACTIONS(4031), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1166), 2, - sym__text, - aux_sym_info_string_repeat1, - STATE(1507), 2, - sym__word, - aux_sym_language_repeat1, - ACTIONS(4033), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + STATE(2466), 1, + sym__blank_line, + ACTIONS(4130), 2, sym__word_no_digit, sym__digits, - ACTIONS(4029), 30, + ACTIONS(4134), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + STATE(1492), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4017), 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, @@ -99818,6 +100265,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__, @@ -99826,36 +100274,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [31302] = 11, - ACTIONS(4035), 1, + [31802] = 11, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(4041), 1, + ACTIONS(4031), 1, aux_sym__newline_token1, - STATE(1112), 1, + STATE(1110), 1, sym__newline, - STATE(1169), 1, + STATE(1173), 1, sym_language, - STATE(2284), 1, + STATE(2286), 1, sym_info_string, - ACTIONS(4031), 2, + ACTIONS(4007), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1507), 2, + STATE(1333), 2, sym__word, aux_sym_language_repeat1, - STATE(1166), 3, + STATE(1174), 3, sym__text, sym__whitespace, aux_sym_info_string_repeat1, - ACTIONS(4033), 5, + ACTIONS(4009), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4029), 30, + ACTIONS(4005), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -99886,36 +100334,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [31373] = 11, - ACTIONS(4035), 1, + [31873] = 11, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(4039), 1, + ACTIONS(4015), 1, aux_sym__newline_token1, - STATE(1090), 1, + STATE(1054), 1, sym__newline, - STATE(1169), 1, + STATE(1173), 1, sym_language, - STATE(2285), 1, + STATE(2290), 1, sym_info_string, - ACTIONS(4031), 2, + ACTIONS(4007), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1507), 2, + STATE(1333), 2, sym__word, aux_sym_language_repeat1, - STATE(1166), 3, + STATE(1174), 3, sym__text, sym__whitespace, aux_sym_info_string_repeat1, - ACTIONS(4033), 5, + ACTIONS(4009), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4029), 30, + ACTIONS(4005), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -99946,37 +100394,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [31444] = 12, - ACTIONS(4035), 1, + [31944] = 12, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(4041), 1, + ACTIONS(4031), 1, aux_sym__newline_token1, - STATE(967), 1, + STATE(975), 1, sym__whitespace, - STATE(1088), 1, + STATE(1105), 1, sym__newline, - STATE(1169), 1, + STATE(1173), 1, sym_language, - STATE(2291), 1, + STATE(2298), 1, sym_info_string, - ACTIONS(4031), 2, + ACTIONS(4007), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1166), 2, + STATE(1174), 2, sym__text, aux_sym_info_string_repeat1, - STATE(1507), 2, + STATE(1333), 2, sym__word, aux_sym_language_repeat1, - ACTIONS(4033), 5, + ACTIONS(4009), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4029), 30, + ACTIONS(4005), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -100007,37 +100455,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [31517] = 12, - ACTIONS(4035), 1, + [32017] = 12, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(4039), 1, + ACTIONS(4015), 1, aux_sym__newline_token1, - STATE(968), 1, + STATE(976), 1, sym__whitespace, - STATE(1087), 1, + STATE(1103), 1, sym__newline, - STATE(1169), 1, + STATE(1173), 1, sym_language, - STATE(2292), 1, + STATE(2299), 1, sym_info_string, - ACTIONS(4031), 2, + ACTIONS(4007), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1166), 2, + STATE(1174), 2, sym__text, aux_sym_info_string_repeat1, - STATE(1507), 2, + STATE(1333), 2, sym__word, aux_sym_language_repeat1, - ACTIONS(4033), 5, + ACTIONS(4009), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4029), 30, + ACTIONS(4005), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -100068,44 +100516,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [31590] = 18, - ACTIONS(417), 1, + [32090] = 16, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(4011), 1, + sym__whitespace_ge_2, + ACTIONS(4013), 1, aux_sym__whitespace_token1, + ACTIONS(4080), 1, + anon_sym_DQUOTE, + ACTIONS(4084), 1, + anon_sym_SQUOTE, + ACTIONS(4086), 1, + anon_sym_LPAREN, ACTIONS(4090), 1, + anon_sym_LT, + ACTIONS(4136), 1, + anon_sym_RPAREN, + STATE(1960), 1, + sym_link_destination, + STATE(1961), 1, + sym_link_title, + STATE(2137), 1, + sym__newline, + ACTIONS(4082), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1229), 2, + sym__link_destination_parenthesis, + sym__word, + STATE(991), 3, + sym__soft_line_break, + sym__whitespace, + aux_sym_inline_link_repeat1, + ACTIONS(4092), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4078), 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, + [32171] = 18, + ACTIONS(417), 1, + aux_sym__whitespace_token1, + ACTIONS(4138), 1, aux_sym__html_block_1_token1, - ACTIONS(4092), 1, + ACTIONS(4140), 1, anon_sym_LT_BANG_DASH_DASH, - ACTIONS(4094), 1, + ACTIONS(4142), 1, anon_sym_LT_QMARK, - ACTIONS(4096), 1, + ACTIONS(4144), 1, aux_sym__html_block_4_token1, - ACTIONS(4098), 1, + ACTIONS(4146), 1, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(4100), 1, + ACTIONS(4148), 1, aux_sym__html_block_6_token1, - ACTIONS(4102), 1, + ACTIONS(4150), 1, aux_sym__html_block_6_token2, - ACTIONS(4104), 1, + ACTIONS(4152), 1, sym__block_quote_start, - ACTIONS(4110), 1, + ACTIONS(4158), 1, sym__thematic_break, - ACTIONS(4112), 1, + ACTIONS(4160), 1, sym__fenced_code_block_start_backtick, - ACTIONS(4114), 1, + ACTIONS(4162), 1, sym__fenced_code_block_start_tilde, - ACTIONS(4116), 1, + ACTIONS(4164), 1, sym__blank_line_start, ACTIONS(447), 2, sym__split_token, sym__soft_line_break_marker, - ACTIONS(4106), 6, + ACTIONS(4154), 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(4108), 7, + ACTIONS(4156), 7, sym_setext_h1_underline, sym_setext_h2_underline, sym__list_marker_minus, @@ -100122,7 +100635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - STATE(1835), 12, + STATE(1833), 12, sym__block_interrupt_paragraph, sym_thematic_break, sym_atx_heading, @@ -100135,44 +100648,44 @@ static const uint16_t ts_small_parse_table[] = { sym__html_block_6, sym__blank_line, sym_block_quote, - [31675] = 18, - ACTIONS(497), 1, + [32256] = 18, + ACTIONS(467), 1, aux_sym__whitespace_token1, - ACTIONS(4090), 1, + ACTIONS(4138), 1, aux_sym__html_block_1_token1, - ACTIONS(4092), 1, + ACTIONS(4140), 1, anon_sym_LT_BANG_DASH_DASH, - ACTIONS(4094), 1, + ACTIONS(4142), 1, anon_sym_LT_QMARK, - ACTIONS(4096), 1, + ACTIONS(4144), 1, aux_sym__html_block_4_token1, - ACTIONS(4098), 1, + ACTIONS(4146), 1, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(4100), 1, + ACTIONS(4148), 1, aux_sym__html_block_6_token1, - ACTIONS(4102), 1, + ACTIONS(4150), 1, aux_sym__html_block_6_token2, - ACTIONS(4104), 1, + ACTIONS(4152), 1, sym__block_quote_start, - ACTIONS(4110), 1, + ACTIONS(4158), 1, sym__thematic_break, - ACTIONS(4112), 1, + ACTIONS(4160), 1, sym__fenced_code_block_start_backtick, - ACTIONS(4114), 1, + ACTIONS(4162), 1, sym__fenced_code_block_start_tilde, - ACTIONS(4116), 1, + ACTIONS(4164), 1, sym__blank_line_start, ACTIONS(447), 2, sym__split_token, sym__soft_line_break_marker, - ACTIONS(4106), 6, + ACTIONS(4154), 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(4118), 7, + ACTIONS(4166), 7, sym_setext_h1_underline, sym_setext_h2_underline, sym__list_marker_minus, @@ -100180,7 +100693,7 @@ static const uint16_t ts_small_parse_table[] = { sym__list_marker_star, sym__list_marker_parenthesis, sym__list_marker_dot, - ACTIONS(495), 8, + ACTIONS(465), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -100189,373 +100702,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - STATE(1844), 12, + STATE(1832), 12, sym__block_interrupt_paragraph, sym_thematic_break, sym_atx_heading, 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, - sym__blank_line, - sym_block_quote, - [31760] = 16, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(4035), 1, - sym__whitespace_ge_2, - ACTIONS(4037), 1, - aux_sym__whitespace_token1, - ACTIONS(4076), 1, - anon_sym_DQUOTE, - ACTIONS(4080), 1, - anon_sym_SQUOTE, - ACTIONS(4082), 1, - anon_sym_LPAREN, - ACTIONS(4086), 1, - anon_sym_LT, - ACTIONS(4120), 1, - anon_sym_RPAREN, - STATE(2007), 1, - sym_link_title, - STATE(2013), 1, - sym_link_destination, - STATE(2144), 1, - sym__newline, - ACTIONS(4078), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1267), 2, - sym__link_destination_parenthesis, - sym__word, - STATE(1016), 3, - sym__soft_line_break, - sym__whitespace, - aux_sym_inline_link_repeat1, - ACTIONS(4088), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4074), 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, - [31841] = 16, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(4035), 1, - sym__whitespace_ge_2, - ACTIONS(4037), 1, - aux_sym__whitespace_token1, - ACTIONS(4076), 1, - anon_sym_DQUOTE, - ACTIONS(4080), 1, - anon_sym_SQUOTE, - ACTIONS(4082), 1, - anon_sym_LPAREN, - ACTIONS(4086), 1, - anon_sym_LT, - ACTIONS(4122), 1, - anon_sym_RPAREN, - STATE(1984), 1, - sym_link_title, - STATE(1989), 1, - sym_link_destination, - STATE(2144), 1, - sym__newline, - ACTIONS(4078), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1267), 2, - sym__link_destination_parenthesis, - sym__word, - STATE(1022), 3, - sym__soft_line_break, - sym__whitespace, - aux_sym_inline_link_repeat1, - ACTIONS(4088), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4074), 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, - [31922] = 16, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(4035), 1, - sym__whitespace_ge_2, - ACTIONS(4037), 1, - aux_sym__whitespace_token1, - ACTIONS(4076), 1, - anon_sym_DQUOTE, - ACTIONS(4080), 1, - anon_sym_SQUOTE, - ACTIONS(4082), 1, - anon_sym_LPAREN, - ACTIONS(4086), 1, - anon_sym_LT, - ACTIONS(4124), 1, - anon_sym_RPAREN, - STATE(1985), 1, - sym_link_title, - STATE(1986), 1, - sym_link_destination, - STATE(2144), 1, - sym__newline, - ACTIONS(4078), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1267), 2, - sym__link_destination_parenthesis, - sym__word, - STATE(992), 3, - sym__soft_line_break, - sym__whitespace, - aux_sym_inline_link_repeat1, - ACTIONS(4088), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4074), 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, - [32003] = 16, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(4035), 1, - sym__whitespace_ge_2, - ACTIONS(4037), 1, - aux_sym__whitespace_token1, - ACTIONS(4076), 1, - anon_sym_DQUOTE, - ACTIONS(4080), 1, - anon_sym_SQUOTE, - ACTIONS(4082), 1, - anon_sym_LPAREN, - ACTIONS(4086), 1, - anon_sym_LT, - ACTIONS(4126), 1, - anon_sym_RPAREN, - STATE(1982), 1, - sym_link_title, - STATE(1983), 1, - sym_link_destination, - STATE(2144), 1, - sym__newline, - ACTIONS(4078), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1267), 2, - sym__link_destination_parenthesis, - sym__word, - STATE(993), 3, - sym__soft_line_break, - sym__whitespace, - aux_sym_inline_link_repeat1, - ACTIONS(4088), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4074), 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, - [32084] = 7, - ACTIONS(3945), 1, - sym__whitespace_ge_2, - ACTIONS(3947), 1, - aux_sym__whitespace_token1, - ACTIONS(3949), 1, - aux_sym__newline_token1, - ACTIONS(3939), 2, - anon_sym_LT, - anon_sym_BSLASH, - STATE(880), 5, - sym__whitespace, - sym__word, - sym__newline, - sym__text_inline_no_link, - aux_sym_link_label_repeat1, - ACTIONS(4128), 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(3937), 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, - [32147] = 11, - ACTIONS(4035), 1, + sym__html_block_3, + sym__html_block_4, + sym__html_block_5, + sym__html_block_6, + sym__blank_line, + sym_block_quote, + [32341] = 16, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(4041), 1, - aux_sym__newline_token1, - STATE(1038), 1, + ACTIONS(4080), 1, + anon_sym_DQUOTE, + ACTIONS(4084), 1, + anon_sym_SQUOTE, + ACTIONS(4086), 1, + anon_sym_LPAREN, + ACTIONS(4090), 1, + anon_sym_LT, + ACTIONS(4168), 1, + anon_sym_RPAREN, + STATE(2012), 1, + sym_link_title, + STATE(2017), 1, + sym_link_destination, + STATE(2137), 1, sym__newline, - STATE(1169), 1, - sym_language, - STATE(2328), 1, - sym_info_string, - ACTIONS(4031), 2, + ACTIONS(4082), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1507), 2, + STATE(1229), 2, + sym__link_destination_parenthesis, sym__word, - aux_sym_language_repeat1, - STATE(1166), 3, - sym__text, + STATE(1029), 3, + sym__soft_line_break, sym__whitespace, - aux_sym_info_string_repeat1, - ACTIONS(4033), 5, + aux_sym_inline_link_repeat1, + ACTIONS(4092), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4029), 30, + ACTIONS(4078), 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, @@ -100564,7 +100767,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, @@ -100578,35 +100780,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [32218] = 12, - ACTIONS(1904), 1, + [32422] = 12, + ACTIONS(1750), 1, sym__blank_line_start, - ACTIONS(4132), 1, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(4140), 1, + ACTIONS(4172), 1, sym__block_close, - STATE(1027), 1, + STATE(994), 1, aux_sym__ignore_matching_tokens, - STATE(1671), 1, + STATE(1656), 1, sym__newline, - STATE(2448), 1, + STATE(2340), 1, sym__blank_line, - ACTIONS(4136), 2, + ACTIONS(4170), 2, sym__word_no_digit, sym__digits, - ACTIONS(4142), 3, + ACTIONS(4174), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - STATE(1521), 3, + STATE(1353), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -100639,45 +100841,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [32291] = 12, - ACTIONS(4035), 1, + [32495] = 16, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(4041), 1, - aux_sym__newline_token1, - STATE(978), 1, - sym__whitespace, - STATE(1053), 1, + ACTIONS(4080), 1, + anon_sym_DQUOTE, + ACTIONS(4084), 1, + anon_sym_SQUOTE, + ACTIONS(4086), 1, + anon_sym_LPAREN, + ACTIONS(4090), 1, + anon_sym_LT, + ACTIONS(4176), 1, + anon_sym_RPAREN, + STATE(2024), 1, + sym_link_destination, + STATE(2025), 1, + sym_link_title, + STATE(2137), 1, sym__newline, - STATE(1169), 1, - sym_language, - STATE(2320), 1, - sym_info_string, - ACTIONS(4031), 2, + ACTIONS(4082), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1166), 2, - sym__text, - aux_sym_info_string_repeat1, - STATE(1507), 2, + STATE(1229), 2, + sym__link_destination_parenthesis, sym__word, - aux_sym_language_repeat1, - ACTIONS(4033), 5, + STATE(1159), 3, + sym__soft_line_break, + sym__whitespace, + aux_sym_inline_link_repeat1, + ACTIONS(4092), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4029), 30, + ACTIONS(4078), 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, @@ -100686,7 +100893,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, @@ -100700,8 +100906,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [32364] = 2, - ACTIONS(4057), 7, + [32576] = 2, + ACTIONS(4051), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -100709,7 +100915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4055), 41, + ACTIONS(4049), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -100751,8 +100957,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [32417] = 2, - ACTIONS(4045), 7, + [32629] = 2, + ACTIONS(4061), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -100760,7 +100966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4043), 41, + ACTIONS(4059), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -100802,8 +101008,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [32470] = 2, - ACTIONS(4053), 7, + [32682] = 2, + ACTIONS(4072), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -100811,7 +101017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4051), 41, + ACTIONS(4070), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -100853,8 +101059,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [32523] = 2, - ACTIONS(4049), 7, + [32735] = 2, + ACTIONS(4076), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -100862,7 +101068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4047), 41, + ACTIONS(4074), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -100904,45 +101110,176 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [32576] = 12, - ACTIONS(4035), 1, + [32788] = 12, + ACTIONS(1750), 1, + sym__blank_line_start, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4039), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - STATE(923), 1, + ACTIONS(4180), 1, + sym__block_close, + STATE(1240), 1, + aux_sym__ignore_matching_tokens, + STATE(1656), 1, + sym__newline, + STATE(2468), 1, + sym__blank_line, + ACTIONS(4178), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(4029), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + STATE(1490), 3, sym__whitespace, - STATE(1052), 1, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4017), 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, + [32861] = 16, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(4011), 1, + sym__whitespace_ge_2, + ACTIONS(4013), 1, + aux_sym__whitespace_token1, + ACTIONS(4080), 1, + anon_sym_DQUOTE, + ACTIONS(4084), 1, + anon_sym_SQUOTE, + ACTIONS(4086), 1, + anon_sym_LPAREN, + ACTIONS(4090), 1, + anon_sym_LT, + ACTIONS(4182), 1, + anon_sym_RPAREN, + STATE(1985), 1, + sym_link_title, + STATE(1999), 1, + sym_link_destination, + STATE(2137), 1, sym__newline, - STATE(1169), 1, - sym_language, - STATE(2318), 1, - sym_info_string, - ACTIONS(4031), 2, + ACTIONS(4082), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1166), 2, - sym__text, - aux_sym_info_string_repeat1, - STATE(1507), 2, + STATE(1229), 2, + sym__link_destination_parenthesis, sym__word, - aux_sym_language_repeat1, - ACTIONS(4033), 5, + STATE(1031), 3, + sym__soft_line_break, + sym__whitespace, + aux_sym_inline_link_repeat1, + ACTIONS(4092), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4029), 30, + ACTIONS(4078), 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, + [32942] = 16, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(4011), 1, + sym__whitespace_ge_2, + ACTIONS(4013), 1, + aux_sym__whitespace_token1, + ACTIONS(4080), 1, + anon_sym_DQUOTE, + ACTIONS(4084), 1, anon_sym_SQUOTE, + ACTIONS(4086), 1, anon_sym_LPAREN, + ACTIONS(4090), 1, + anon_sym_LT, + ACTIONS(4184), 1, anon_sym_RPAREN, + STATE(2003), 1, + sym_link_title, + STATE(2007), 1, + sym_link_destination, + STATE(2137), 1, + sym__newline, + ACTIONS(4082), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1229), 2, + sym__link_destination_parenthesis, + sym__word, + STATE(1159), 3, + sym__soft_line_break, + sym__whitespace, + aux_sym_inline_link_repeat1, + ACTIONS(4092), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4078), 25, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -100951,7 +101288,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, @@ -100965,26 +101301,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [32649] = 3, - ACTIONS(4148), 1, - sym__emphasis_close_star, - ACTIONS(4146), 7, - anon_sym_AMP, + [33023] = 7, + ACTIONS(3929), 1, + sym__whitespace_ge_2, + ACTIONS(3931), 1, + aux_sym__whitespace_token1, + ACTIONS(3933), 1, + aux_sym__newline_token1, + ACTIONS(3923), 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(4144), 40, + STATE(832), 5, + sym__whitespace, + sym__word, + sym__newline, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(4186), 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(3921), 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, @@ -101007,45 +101357,35 @@ 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_entity_reference, - sym_numeric_character_reference, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [32704] = 12, - ACTIONS(1904), 1, + [33086] = 12, + ACTIONS(1750), 1, sym__blank_line_start, - ACTIONS(4132), 1, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(4152), 1, + ACTIONS(4190), 1, sym__block_close, - STATE(1277), 1, + STATE(1240), 1, aux_sym__ignore_matching_tokens, - STATE(1671), 1, + STATE(1656), 1, sym__newline, - STATE(2526), 1, + STATE(2346), 1, sym__blank_line, - ACTIONS(4150), 2, + ACTIONS(4188), 2, sym__word_no_digit, sym__digits, - ACTIONS(4154), 3, + ACTIONS(4029), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - STATE(1511), 3, + STATE(1393), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -101078,26 +101418,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [32777] = 3, - ACTIONS(4156), 1, - sym__emphasis_close_underscore, - ACTIONS(4025), 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, + [33159] = 12, + ACTIONS(1750), 1, + sym__blank_line_start, + ACTIONS(4019), 1, + sym__whitespace_ge_2, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4023), 40, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, + ACTIONS(4025), 1, + aux_sym__newline_token1, + ACTIONS(4194), 1, + sym__block_close, + STATE(1240), 1, + aux_sym__ignore_matching_tokens, + STATE(1656), 1, + sym__newline, + STATE(2347), 1, + sym__blank_line, + ACTIONS(4192), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(4029), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + STATE(1401), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4017), 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, @@ -101109,10 +101464,14 @@ 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, @@ -101120,45 +101479,35 @@ 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_entity_reference, - sym_numeric_character_reference, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [32832] = 12, - ACTIONS(1904), 1, + [33232] = 12, + ACTIONS(1750), 1, sym__blank_line_start, - ACTIONS(4132), 1, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(4160), 1, + ACTIONS(4198), 1, sym__block_close, - STATE(996), 1, + STATE(1240), 1, aux_sym__ignore_matching_tokens, - STATE(1671), 1, + STATE(1656), 1, sym__newline, - STATE(2339), 1, + STATE(2358), 1, sym__blank_line, - ACTIONS(4158), 2, + ACTIONS(4196), 2, sym__word_no_digit, sym__digits, - ACTIONS(4162), 3, + ACTIONS(4029), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - STATE(1433), 3, + STATE(1539), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -101191,41 +101540,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [32905] = 12, - ACTIONS(1904), 1, - sym__blank_line_start, - ACTIONS(4132), 1, + [33305] = 11, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4031), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, - sym__block_close, - STATE(997), 1, - aux_sym__ignore_matching_tokens, - STATE(1671), 1, + STATE(1093), 1, sym__newline, - STATE(2340), 1, - sym__blank_line, - ACTIONS(4164), 2, + STATE(1173), 1, + sym_language, + STATE(2327), 1, + sym_info_string, + ACTIONS(4007), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1333), 2, + sym__word, + aux_sym_language_repeat1, + STATE(1174), 3, + sym__text, + sym__whitespace, + aux_sym_info_string_repeat1, + ACTIONS(4009), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4168), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - STATE(1431), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(4005), 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, @@ -101243,7 +101592,66 @@ 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, + [33376] = 11, + ACTIONS(4011), 1, + sym__whitespace_ge_2, + ACTIONS(4013), 1, + aux_sym__whitespace_token1, + ACTIONS(4015), 1, + aux_sym__newline_token1, + STATE(1043), 1, + sym__newline, + STATE(1173), 1, + sym_language, + STATE(2330), 1, + sym_info_string, + ACTIONS(4007), 2, + anon_sym_AMP, anon_sym_BSLASH, + STATE(1333), 2, + sym__word, + aux_sym_language_repeat1, + STATE(1174), 3, + sym__text, + sym__whitespace, + aux_sym_info_string_repeat1, + ACTIONS(4009), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4005), 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__, @@ -101252,35 +101660,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [32978] = 12, - ACTIONS(1904), 1, + [33447] = 12, + ACTIONS(1750), 1, sym__blank_line_start, - ACTIONS(4132), 1, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(4172), 1, + ACTIONS(4202), 1, sym__block_close, - STATE(987), 1, + STATE(1240), 1, aux_sym__ignore_matching_tokens, - STATE(1671), 1, + STATE(1656), 1, sym__newline, - STATE(2525), 1, + STATE(2334), 1, sym__blank_line, - ACTIONS(4170), 2, + ACTIONS(4200), 2, sym__word_no_digit, sym__digits, - ACTIONS(4174), 3, + ACTIONS(4029), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - STATE(1364), 3, + STATE(1528), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -101313,50 +101721,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [33051] = 16, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(4035), 1, + [33520] = 12, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(4076), 1, - anon_sym_DQUOTE, - ACTIONS(4080), 1, - anon_sym_SQUOTE, - ACTIONS(4082), 1, - anon_sym_LPAREN, - ACTIONS(4086), 1, - anon_sym_LT, - ACTIONS(4176), 1, - anon_sym_RPAREN, - STATE(1966), 1, - sym_link_title, - STATE(1967), 1, - sym_link_destination, - STATE(2144), 1, + ACTIONS(4031), 1, + aux_sym__newline_token1, + STATE(970), 1, + sym__whitespace, + STATE(1047), 1, sym__newline, - ACTIONS(4078), 2, + STATE(1173), 1, + sym_language, + STATE(2278), 1, + sym_info_string, + ACTIONS(4007), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1267), 2, - sym__link_destination_parenthesis, + STATE(1174), 2, + sym__text, + aux_sym_info_string_repeat1, + STATE(1333), 2, sym__word, - STATE(1149), 3, - sym__soft_line_break, - sym__whitespace, - aux_sym_inline_link_repeat1, - ACTIONS(4088), 5, + aux_sym_language_repeat1, + ACTIONS(4009), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4074), 25, + ACTIONS(4005), 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, @@ -101365,6 +101768,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, @@ -101378,50 +101782,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [33132] = 16, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(4035), 1, + [33593] = 12, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(4076), 1, + ACTIONS(4031), 1, + aux_sym__newline_token1, + STATE(996), 1, + sym__whitespace, + STATE(1064), 1, + sym__newline, + STATE(1173), 1, + sym_language, + STATE(2320), 1, + sym_info_string, + ACTIONS(4007), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1174), 2, + sym__text, + aux_sym_info_string_repeat1, + STATE(1333), 2, + sym__word, + aux_sym_language_repeat1, + ACTIONS(4009), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4005), 30, + anon_sym_BANG, anon_sym_DQUOTE, - ACTIONS(4080), 1, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, anon_sym_SQUOTE, - ACTIONS(4082), 1, anon_sym_LPAREN, - ACTIONS(4086), 1, - anon_sym_LT, - ACTIONS(4178), 1, anon_sym_RPAREN, - STATE(1958), 1, - sym_link_title, - STATE(1959), 1, - sym_link_destination, - STATE(2144), 1, + 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, + [33666] = 12, + ACTIONS(4011), 1, + sym__whitespace_ge_2, + ACTIONS(4013), 1, + aux_sym__whitespace_token1, + ACTIONS(4015), 1, + aux_sym__newline_token1, + STATE(997), 1, + sym__whitespace, + STATE(1068), 1, sym__newline, - ACTIONS(4078), 2, + STATE(1173), 1, + sym_language, + STATE(2318), 1, + sym_info_string, + ACTIONS(4007), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1267), 2, - sym__link_destination_parenthesis, + STATE(1174), 2, + sym__text, + aux_sym_info_string_repeat1, + STATE(1333), 2, sym__word, - STATE(1149), 3, - sym__soft_line_break, - sym__whitespace, - aux_sym_inline_link_repeat1, - ACTIONS(4088), 5, + aux_sym_language_repeat1, + ACTIONS(4009), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4074), 25, + ACTIONS(4005), 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, @@ -101430,6 +101890,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, @@ -101443,13 +101904,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [33213] = 3, - ACTIONS(4186), 4, - sym_entity_reference, - sym_numeric_character_reference, - sym_uri_autolink, - sym_email_autolink, - ACTIONS(4183), 7, + [33739] = 3, + ACTIONS(4204), 1, + sym__emphasis_close_star, + ACTIONS(4041), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -101457,7 +101915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4180), 37, + ACTIONS(4039), 40, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -101481,7 +101939,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, @@ -101491,14 +101948,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [33268] = 3, - ACTIONS(4188), 1, - sym__emphasis_close_star, - ACTIONS(4146), 7, + [33794] = 2, + ACTIONS(4041), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -101506,10 +101965,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4144), 40, + ACTIONS(4039), 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, @@ -101547,105 +102007,50 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [33323] = 12, - ACTIONS(1904), 1, - sym__blank_line_start, - ACTIONS(4132), 1, + [33847] = 16, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, - aux_sym__newline_token1, - ACTIONS(4192), 1, - sym__block_close, - STATE(1277), 1, - aux_sym__ignore_matching_tokens, - STATE(1671), 1, - sym__newline, - STATE(2346), 1, - sym__blank_line, - ACTIONS(4190), 2, - sym__word_no_digit, - sym__digits, - ACTIONS(4154), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - STATE(1419), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, - anon_sym_BANG, + ACTIONS(4080), 1, anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, + ACTIONS(4084), 1, anon_sym_SQUOTE, + ACTIONS(4086), 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, + ACTIONS(4090), 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, - [33396] = 12, - ACTIONS(1904), 1, - sym__blank_line_start, - ACTIONS(4132), 1, - sym__whitespace_ge_2, - ACTIONS(4134), 1, - aux_sym__whitespace_token1, - ACTIONS(4138), 1, - aux_sym__newline_token1, - ACTIONS(4196), 1, - sym__block_close, - STATE(1277), 1, - aux_sym__ignore_matching_tokens, - STATE(1671), 1, + ACTIONS(4206), 1, + anon_sym_RPAREN, + STATE(1981), 1, + sym_link_destination, + STATE(1984), 1, + sym_link_title, + STATE(2137), 1, sym__newline, - STATE(2347), 1, - sym__blank_line, - ACTIONS(4194), 2, + ACTIONS(4082), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1229), 2, + sym__link_destination_parenthesis, + sym__word, + STATE(1028), 3, + sym__soft_line_break, + sym__whitespace, + aux_sym_inline_link_repeat1, + ACTIONS(4092), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4154), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - STATE(1417), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(4078), 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, @@ -101654,13 +102059,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__, @@ -101669,8 +102072,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [33469] = 2, - ACTIONS(4146), 7, + [33928] = 2, + ACTIONS(4096), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -101678,11 +102081,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4144), 41, + ACTIONS(4094), 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, @@ -101720,8 +102123,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [33522] = 2, - ACTIONS(4025), 7, + [33981] = 3, + ACTIONS(4208), 1, + sym__emphasis_close_underscore, + ACTIONS(4096), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -101729,11 +102134,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4023), 41, + ACTIONS(4094), 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, @@ -101771,8 +102175,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [33575] = 2, - ACTIONS(4200), 7, + [34036] = 2, + ACTIONS(4212), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -101780,7 +102184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4198), 41, + ACTIONS(4210), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -101822,50 +102226,44 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [33628] = 16, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(4035), 1, + [34089] = 12, + ACTIONS(1750), 1, + sym__blank_line_start, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4076), 1, - anon_sym_DQUOTE, - ACTIONS(4080), 1, - anon_sym_SQUOTE, - ACTIONS(4082), 1, - anon_sym_LPAREN, - ACTIONS(4086), 1, - anon_sym_LT, - ACTIONS(4202), 1, - anon_sym_RPAREN, - STATE(2025), 1, - sym_link_title, - STATE(2026), 1, - sym_link_destination, - STATE(2144), 1, + ACTIONS(4025), 1, + aux_sym__newline_token1, + ACTIONS(4216), 1, + sym__block_close, + STATE(923), 1, + aux_sym__ignore_matching_tokens, + STATE(1656), 1, sym__newline, - ACTIONS(4078), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1267), 2, - sym__link_destination_parenthesis, - sym__word, - STATE(1008), 3, - sym__soft_line_break, - sym__whitespace, - aux_sym_inline_link_repeat1, - ACTIONS(4088), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + STATE(2412), 1, + sym__blank_line, + ACTIONS(4214), 2, sym__word_no_digit, sym__digits, - ACTIONS(4074), 25, + ACTIONS(4218), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + STATE(1481), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4017), 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, @@ -101874,11 +102272,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__, @@ -101887,27 +102287,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [33709] = 2, - ACTIONS(4049), 7, - anon_sym_AMP, + [34162] = 16, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(4011), 1, + sym__whitespace_ge_2, + ACTIONS(4013), 1, + aux_sym__whitespace_token1, + ACTIONS(4080), 1, + anon_sym_DQUOTE, + ACTIONS(4084), 1, + anon_sym_SQUOTE, + ACTIONS(4086), 1, + anon_sym_LPAREN, + ACTIONS(4090), 1, anon_sym_LT, + ACTIONS(4220), 1, + anon_sym_RPAREN, + STATE(1986), 1, + sym_link_destination, + STATE(1987), 1, + sym_link_title, + STATE(2137), 1, + sym__newline, + ACTIONS(4082), 2, + anon_sym_AMP, anon_sym_BSLASH, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - aux_sym__whitespace_token1, - ACTIONS(4047), 41, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, + STATE(1229), 2, + sym__link_destination_parenthesis, + sym__word, + STATE(1026), 3, + sym__soft_line_break, + sym__whitespace, + aux_sym_inline_link_repeat1, + ACTIONS(4092), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4078), 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, @@ -101920,6 +102343,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__, @@ -101928,45 +102352,35 @@ 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_entity_reference, - sym_numeric_character_reference, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [33762] = 12, - ACTIONS(1904), 1, + [34243] = 12, + ACTIONS(1750), 1, sym__blank_line_start, - ACTIONS(4132), 1, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(4206), 1, + ACTIONS(4224), 1, sym__block_close, - STATE(1025), 1, + STATE(1014), 1, aux_sym__ignore_matching_tokens, - STATE(1671), 1, + STATE(1656), 1, sym__newline, - STATE(2517), 1, + STATE(2483), 1, sym__blank_line, - ACTIONS(4204), 2, + ACTIONS(4222), 2, sym__word_no_digit, sym__digits, - ACTIONS(4208), 3, + ACTIONS(4226), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - STATE(1377), 3, + STATE(1468), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -101999,35 +102413,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [33835] = 12, - ACTIONS(1904), 1, + [34316] = 12, + ACTIONS(1750), 1, sym__blank_line_start, - ACTIONS(4132), 1, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(4212), 1, + ACTIONS(4230), 1, sym__block_close, - STATE(1277), 1, + STATE(1240), 1, aux_sym__ignore_matching_tokens, - STATE(1671), 1, + STATE(1656), 1, sym__newline, - STATE(2502), 1, + STATE(2526), 1, sym__blank_line, - ACTIONS(4210), 2, + ACTIONS(4228), 2, sym__word_no_digit, sym__digits, - ACTIONS(4154), 3, + ACTIONS(4029), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - STATE(1403), 3, + STATE(1371), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -102060,26 +102474,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [33908] = 3, - ACTIONS(4214), 1, - sym__emphasis_close_star, - ACTIONS(4146), 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, + [34389] = 12, + ACTIONS(1750), 1, + sym__blank_line_start, + ACTIONS(4019), 1, + sym__whitespace_ge_2, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4144), 40, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, + ACTIONS(4025), 1, + aux_sym__newline_token1, + ACTIONS(4234), 1, + sym__block_close, + STATE(1011), 1, + aux_sym__ignore_matching_tokens, + STATE(1656), 1, + sym__newline, + STATE(2525), 1, + sym__blank_line, + ACTIONS(4232), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(4236), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + STATE(1373), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4017), 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, @@ -102091,10 +102520,14 @@ 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, @@ -102102,20 +102535,10 @@ 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_entity_reference, - sym_numeric_character_reference, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [33963] = 3, - ACTIONS(4216), 1, - sym__emphasis_close_underscore, - ACTIONS(4025), 7, + [34462] = 3, + ACTIONS(4238), 1, + sym__emphasis_close_star, + ACTIONS(4041), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -102123,7 +102546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4023), 40, + ACTIONS(4039), 40, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -102164,35 +102587,35 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [34018] = 12, - ACTIONS(1904), 1, + [34517] = 12, + ACTIONS(1750), 1, sym__blank_line_start, - ACTIONS(4132), 1, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(4220), 1, + ACTIONS(4242), 1, sym__block_close, - STATE(1012), 1, + STATE(1240), 1, aux_sym__ignore_matching_tokens, - STATE(1671), 1, + STATE(1656), 1, sym__newline, - STATE(2394), 1, + STATE(2485), 1, sym__blank_line, - ACTIONS(4218), 2, + ACTIONS(4240), 2, sym__word_no_digit, sym__digits, - ACTIONS(4222), 3, + ACTIONS(4029), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - STATE(1368), 3, + STATE(1466), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -102225,165 +102648,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [34091] = 16, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(4035), 1, - sym__whitespace_ge_2, - ACTIONS(4037), 1, - aux_sym__whitespace_token1, - ACTIONS(4076), 1, - anon_sym_DQUOTE, - ACTIONS(4080), 1, - anon_sym_SQUOTE, - ACTIONS(4082), 1, - anon_sym_LPAREN, - ACTIONS(4086), 1, - anon_sym_LT, - ACTIONS(4224), 1, - anon_sym_RPAREN, - STATE(2008), 1, - sym_link_title, - STATE(2010), 1, - sym_link_destination, - STATE(2144), 1, - sym__newline, - ACTIONS(4078), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1267), 2, - sym__link_destination_parenthesis, - sym__word, - STATE(1149), 3, - sym__soft_line_break, - sym__whitespace, - aux_sym_inline_link_repeat1, - ACTIONS(4088), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4074), 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, - [34172] = 16, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(4035), 1, - sym__whitespace_ge_2, - ACTIONS(4037), 1, - aux_sym__whitespace_token1, - ACTIONS(4076), 1, - anon_sym_DQUOTE, - ACTIONS(4080), 1, - anon_sym_SQUOTE, - ACTIONS(4082), 1, - anon_sym_LPAREN, - ACTIONS(4086), 1, - anon_sym_LT, - ACTIONS(4226), 1, - anon_sym_RPAREN, - STATE(2004), 1, - sym_link_title, - STATE(2005), 1, - sym_link_destination, - STATE(2144), 1, - sym__newline, - ACTIONS(4078), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1267), 2, - sym__link_destination_parenthesis, - sym__word, - STATE(1149), 3, - sym__soft_line_break, - sym__whitespace, - aux_sym_inline_link_repeat1, - ACTIONS(4088), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4074), 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, - [34253] = 12, - ACTIONS(1904), 1, + [34590] = 12, + ACTIONS(1750), 1, sym__blank_line_start, - ACTIONS(4132), 1, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(4230), 1, + ACTIONS(4246), 1, sym__block_close, - STATE(1004), 1, + STATE(1240), 1, aux_sym__ignore_matching_tokens, - STATE(1671), 1, + STATE(1656), 1, sym__newline, - STATE(2500), 1, + STATE(2519), 1, sym__blank_line, - ACTIONS(4228), 2, + ACTIONS(4244), 2, sym__word_no_digit, sym__digits, - ACTIONS(4232), 3, + ACTIONS(4029), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - STATE(1405), 3, + STATE(1389), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -102416,41 +102709,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [34326] = 12, - ACTIONS(1904), 1, - sym__blank_line_start, - ACTIONS(4132), 1, - sym__whitespace_ge_2, - ACTIONS(4134), 1, + [34663] = 3, + ACTIONS(4248), 1, + sym__emphasis_close_underscore, + ACTIONS(4096), 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(4138), 1, - aux_sym__newline_token1, - ACTIONS(4236), 1, - sym__block_close, - STATE(1028), 1, - aux_sym__ignore_matching_tokens, - STATE(1671), 1, - sym__newline, - STATE(2375), 1, - sym__blank_line, - ACTIONS(4234), 2, - sym__word_no_digit, - sym__digits, - ACTIONS(4238), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - STATE(1445), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(4094), 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_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102462,14 +102740,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__, anon_sym_BQUOTE, @@ -102477,35 +102751,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [34399] = 12, - ACTIONS(1904), 1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [34718] = 12, + ACTIONS(1750), 1, sym__blank_line_start, - ACTIONS(4132), 1, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(4242), 1, + ACTIONS(4252), 1, sym__block_close, - STATE(1277), 1, + STATE(1015), 1, aux_sym__ignore_matching_tokens, - STATE(1671), 1, + STATE(1656), 1, sym__newline, - STATE(2396), 1, + STATE(2517), 1, sym__blank_line, - ACTIONS(4240), 2, + ACTIONS(4250), 2, sym__word_no_digit, sym__digits, - ACTIONS(4154), 3, + ACTIONS(4254), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - STATE(1378), 3, + STATE(1391), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -102538,35 +102822,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [34472] = 12, - ACTIONS(1904), 1, + [34791] = 12, + ACTIONS(1750), 1, sym__blank_line_start, - ACTIONS(4132), 1, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(4246), 1, + ACTIONS(4258), 1, sym__block_close, - STATE(1026), 1, + STATE(998), 1, aux_sym__ignore_matching_tokens, - STATE(1671), 1, + STATE(1656), 1, sym__newline, - STATE(2453), 1, + STATE(2463), 1, sym__blank_line, - ACTIONS(4244), 2, + ACTIONS(4256), 2, sym__word_no_digit, sym__digits, - ACTIONS(4248), 3, + ACTIONS(4260), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - STATE(1439), 3, + STATE(1478), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -102599,41 +102883,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [34545] = 12, - ACTIONS(1904), 1, - sym__blank_line_start, - ACTIONS(4132), 1, - sym__whitespace_ge_2, - ACTIONS(4134), 1, + [34864] = 2, + ACTIONS(4076), 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(4138), 1, - aux_sym__newline_token1, - ACTIONS(4252), 1, - sym__block_close, - STATE(1277), 1, - aux_sym__ignore_matching_tokens, - STATE(1671), 1, - sym__newline, - STATE(2485), 1, - sym__blank_line, - ACTIONS(4250), 2, - sym__word_no_digit, - sym__digits, - ACTIONS(4154), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - STATE(1532), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(4074), 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, @@ -102645,13 +102912,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__, @@ -102660,35 +102924,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [34618] = 12, - ACTIONS(1904), 1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [34917] = 12, + ACTIONS(1750), 1, sym__blank_line_start, - ACTIONS(4132), 1, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(4256), 1, + ACTIONS(4264), 1, sym__block_close, - STATE(1014), 1, + STATE(995), 1, aux_sym__ignore_matching_tokens, - STATE(1671), 1, + STATE(1656), 1, sym__newline, - STATE(2483), 1, + STATE(2487), 1, sym__blank_line, - ACTIONS(4254), 2, + ACTIONS(4262), 2, sym__word_no_digit, sym__digits, - ACTIONS(4258), 3, + ACTIONS(4266), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - STATE(1534), 3, + STATE(1331), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -102721,50 +102995,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [34691] = 16, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(4035), 1, - sym__whitespace_ge_2, - ACTIONS(4037), 1, - aux_sym__whitespace_token1, - ACTIONS(4076), 1, - anon_sym_DQUOTE, - ACTIONS(4080), 1, - anon_sym_SQUOTE, - ACTIONS(4082), 1, - anon_sym_LPAREN, - ACTIONS(4086), 1, - anon_sym_LT, - ACTIONS(4260), 1, - anon_sym_RPAREN, - STATE(2019), 1, - sym_link_destination, - STATE(2021), 1, - sym_link_title, - STATE(2144), 1, - sym__newline, - ACTIONS(4078), 2, + [34990] = 2, + ACTIONS(4072), 7, anon_sym_AMP, + anon_sym_LT, anon_sym_BSLASH, - STATE(1267), 2, - sym__link_destination_parenthesis, - sym__word, - STATE(1149), 3, - sym__soft_line_break, - sym__whitespace, - aux_sym_inline_link_repeat1, - ACTIONS(4088), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4074), 25, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + aux_sym__whitespace_token1, + ACTIONS(4070), 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, @@ -102777,7 +103028,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__, @@ -102786,41 +103036,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [34772] = 12, - ACTIONS(1904), 1, - sym__blank_line_start, - ACTIONS(4132), 1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, sym__whitespace_ge_2, - ACTIONS(4134), 1, - aux_sym__whitespace_token1, - ACTIONS(4138), 1, - aux_sym__newline_token1, - ACTIONS(4264), 1, - sym__block_close, - STATE(1024), 1, - aux_sym__ignore_matching_tokens, - STATE(1671), 1, - sym__newline, - STATE(2412), 1, - sym__blank_line, - ACTIONS(4262), 2, sym__word_no_digit, sym__digits, - ACTIONS(4266), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - STATE(1425), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + aux_sym__newline_token1, + [35043] = 2, + ACTIONS(4270), 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(4268), 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, @@ -102832,14 +103076,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__, anon_sym_BQUOTE, @@ -102847,8 +103087,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [34845] = 2, - ACTIONS(4053), 7, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [35096] = 2, + ACTIONS(4061), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -102856,7 +103106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4051), 41, + ACTIONS(4059), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -102898,41 +103148,24 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [34898] = 12, - ACTIONS(1904), 1, - sym__blank_line_start, - ACTIONS(4132), 1, - sym__whitespace_ge_2, - ACTIONS(4134), 1, + [35149] = 2, + ACTIONS(4051), 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(4138), 1, - aux_sym__newline_token1, - ACTIONS(4270), 1, - sym__block_close, - STATE(1277), 1, - aux_sym__ignore_matching_tokens, - STATE(1671), 1, - sym__newline, - STATE(2432), 1, - sym__blank_line, - ACTIONS(4268), 2, - sym__word_no_digit, - sym__digits, - ACTIONS(4154), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - STATE(1469), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(4049), 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, @@ -102944,13 +103177,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__, @@ -102959,7 +103189,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [34971] = 2, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym_uri_autolink, + sym_email_autolink, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [35202] = 2, ACTIONS(4274), 7, anon_sym_AMP, anon_sym_LT, @@ -102972,7 +103212,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -103010,35 +103250,100 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [35024] = 12, - ACTIONS(1904), 1, + [35255] = 16, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(4011), 1, + sym__whitespace_ge_2, + ACTIONS(4013), 1, + aux_sym__whitespace_token1, + ACTIONS(4080), 1, + anon_sym_DQUOTE, + ACTIONS(4084), 1, + anon_sym_SQUOTE, + ACTIONS(4086), 1, + anon_sym_LPAREN, + ACTIONS(4090), 1, + anon_sym_LT, + ACTIONS(4276), 1, + anon_sym_RPAREN, + STATE(1949), 1, + sym_link_destination, + STATE(1950), 1, + sym_link_title, + STATE(2137), 1, + sym__newline, + ACTIONS(4082), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1229), 2, + sym__link_destination_parenthesis, + sym__word, + STATE(1159), 3, + sym__soft_line_break, + sym__whitespace, + aux_sym_inline_link_repeat1, + ACTIONS(4092), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4078), 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, + [35336] = 12, + ACTIONS(1750), 1, sym__blank_line_start, - ACTIONS(4132), 1, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(4278), 1, + ACTIONS(4280), 1, sym__block_close, - STATE(1277), 1, + STATE(1030), 1, aux_sym__ignore_matching_tokens, - STATE(1671), 1, + STATE(1656), 1, sym__newline, - STATE(2468), 1, + STATE(2500), 1, sym__blank_line, - ACTIONS(4276), 2, + ACTIONS(4278), 2, sym__word_no_digit, sym__digits, - ACTIONS(4154), 3, + ACTIONS(4282), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - STATE(1566), 3, + STATE(1409), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -103071,46 +103376,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [35097] = 16, + [35409] = 16, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(4076), 1, - anon_sym_DQUOTE, ACTIONS(4080), 1, + anon_sym_DQUOTE, + ACTIONS(4084), 1, anon_sym_SQUOTE, - ACTIONS(4082), 1, - anon_sym_LPAREN, ACTIONS(4086), 1, + anon_sym_LPAREN, + ACTIONS(4090), 1, anon_sym_LT, - ACTIONS(4280), 1, + ACTIONS(4284), 1, anon_sym_RPAREN, - STATE(1970), 1, + STATE(2020), 1, sym_link_destination, - STATE(2027), 1, + STATE(2026), 1, sym_link_title, - STATE(2144), 1, + STATE(2137), 1, sym__newline, - ACTIONS(4078), 2, + ACTIONS(4082), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1267), 2, + STATE(1229), 2, sym__link_destination_parenthesis, sym__word, - STATE(1149), 3, + STATE(1159), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - ACTIONS(4088), 5, + ACTIONS(4092), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4074), 25, + ACTIONS(4078), 25, anon_sym_BANG, anon_sym_POUND, anon_sym_DOLLAR, @@ -103136,44 +103441,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [35178] = 12, - ACTIONS(1904), 1, - sym__blank_line_start, - ACTIONS(4132), 1, + [35490] = 16, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, - aux_sym__newline_token1, - ACTIONS(4284), 1, - sym__block_close, - STATE(1021), 1, - aux_sym__ignore_matching_tokens, - STATE(1671), 1, + ACTIONS(4080), 1, + anon_sym_DQUOTE, + ACTIONS(4084), 1, + anon_sym_SQUOTE, + ACTIONS(4086), 1, + anon_sym_LPAREN, + ACTIONS(4090), 1, + anon_sym_LT, + ACTIONS(4286), 1, + anon_sym_RPAREN, + STATE(2008), 1, + sym_link_destination, + STATE(2009), 1, + sym_link_title, + STATE(2137), 1, sym__newline, - STATE(2466), 1, - sym__blank_line, - ACTIONS(4282), 2, + ACTIONS(4082), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1229), 2, + sym__link_destination_parenthesis, + sym__word, + STATE(1159), 3, + sym__soft_line_break, + sym__whitespace, + aux_sym_inline_link_repeat1, + ACTIONS(4092), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4286), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - STATE(1331), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(4078), 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, @@ -103182,13 +103493,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__, @@ -103197,35 +103506,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [35251] = 12, - ACTIONS(1904), 1, + [35571] = 12, + ACTIONS(1750), 1, sym__blank_line_start, - ACTIONS(4132), 1, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, ACTIONS(4290), 1, sym__block_close, - STATE(1277), 1, + STATE(1240), 1, aux_sym__ignore_matching_tokens, - STATE(1671), 1, + STATE(1656), 1, sym__newline, - STATE(2414), 1, + STATE(2502), 1, sym__blank_line, ACTIONS(4288), 2, sym__word_no_digit, sym__digits, - ACTIONS(4154), 3, + ACTIONS(4029), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - STATE(1427), 3, + STATE(1407), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -103258,44 +103567,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [35324] = 12, - ACTIONS(1904), 1, - sym__blank_line_start, - ACTIONS(4132), 1, + [35644] = 16, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, - aux_sym__newline_token1, - ACTIONS(4294), 1, - sym__block_close, - STATE(1277), 1, - aux_sym__ignore_matching_tokens, - STATE(1671), 1, + ACTIONS(4080), 1, + anon_sym_DQUOTE, + ACTIONS(4084), 1, + anon_sym_SQUOTE, + ACTIONS(4086), 1, + anon_sym_LPAREN, + ACTIONS(4090), 1, + anon_sym_LT, + ACTIONS(4292), 1, + anon_sym_RPAREN, + STATE(1965), 1, + sym_link_destination, + STATE(1967), 1, + sym_link_title, + STATE(2137), 1, sym__newline, - STATE(2519), 1, - sym__blank_line, - ACTIONS(4292), 2, + ACTIONS(4082), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1229), 2, + sym__link_destination_parenthesis, + sym__word, + STATE(1159), 3, + sym__soft_line_break, + sym__whitespace, + aux_sym_inline_link_repeat1, + ACTIONS(4092), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4154), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - STATE(1375), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(4078), 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, @@ -103304,13 +103619,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__, @@ -103319,35 +103632,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [35397] = 12, - ACTIONS(1904), 1, + [35725] = 12, + ACTIONS(1750), 1, sym__blank_line_start, - ACTIONS(4132), 1, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(4298), 1, + ACTIONS(4296), 1, sym__block_close, - STATE(1277), 1, + STATE(962), 1, aux_sym__ignore_matching_tokens, - STATE(1671), 1, + STATE(1656), 1, sym__newline, - STATE(2417), 1, + STATE(2394), 1, sym__blank_line, - ACTIONS(4296), 2, + ACTIONS(4294), 2, sym__word_no_digit, sym__digits, - ACTIONS(4154), 3, + ACTIONS(4298), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - STATE(1366), 3, + STATE(1438), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -103380,44 +103693,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [35470] = 12, - ACTIONS(1904), 1, - sym__blank_line_start, - ACTIONS(4132), 1, + [35798] = 14, + ACTIONS(4304), 1, + anon_sym_SQUOTE, + ACTIONS(4306), 1, + anon_sym_LPAREN, + ACTIONS(4308), 1, + anon_sym_RPAREN, + ACTIONS(4313), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4316), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4319), 1, aux_sym__newline_token1, - ACTIONS(4302), 1, - sym__block_close, - STATE(1277), 1, - aux_sym__ignore_matching_tokens, - STATE(1671), 1, + ACTIONS(4322), 1, + sym__last_token_punctuation, + STATE(1496), 1, sym__newline, - STATE(2450), 1, - sym__blank_line, - ACTIONS(4300), 2, + STATE(1653), 1, + sym__word, + ACTIONS(4302), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1182), 2, + sym__whitespace, + aux_sym_link_title_repeat2, + STATE(1188), 2, + sym__link_destination_parenthesis, + aux_sym_link_destination_repeat2, + ACTIONS(4311), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4154), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - STATE(1524), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(4300), 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, @@ -103432,7 +103747,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__, @@ -103441,44 +103755,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [35543] = 12, - ACTIONS(1904), 1, - sym__blank_line_start, - ACTIONS(4132), 1, + [35874] = 14, + ACTIONS(4304), 1, + anon_sym_DQUOTE, + ACTIONS(4313), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4316), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4319), 1, aux_sym__newline_token1, - ACTIONS(4306), 1, - sym__block_close, - STATE(1277), 1, - aux_sym__ignore_matching_tokens, - STATE(1671), 1, + ACTIONS(4322), 1, + sym__last_token_punctuation, + ACTIONS(4328), 1, + anon_sym_LPAREN, + ACTIONS(4330), 1, + anon_sym_RPAREN, + STATE(1486), 1, sym__newline, - STATE(2418), 1, - sym__blank_line, - ACTIONS(4304), 2, + STATE(1654), 1, + sym__word, + ACTIONS(4326), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1180), 2, + sym__whitespace, + aux_sym_link_title_repeat1, + STATE(1188), 2, + sym__link_destination_parenthesis, + aux_sym_link_destination_repeat2, + ACTIONS(4333), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4154), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - STATE(1357), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(4324), 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, @@ -103493,7 +103809,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__, @@ -103502,25 +103817,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [35616] = 2, - ACTIONS(4310), 7, - anon_sym_AMP, + [35950] = 5, + ACTIONS(455), 1, + sym__soft_line_break_marker, + ACTIONS(4339), 1, + sym__split_token, + STATE(2136), 1, + aux_sym__soft_line_break_repeat1, + ACTIONS(4337), 3, 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(4308), 41, + ACTIONS(4335), 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_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103536,6 +103853,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, @@ -103543,29 +103861,90 @@ 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_uri_autolink, - sym_email_autolink, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [35669] = 2, - ACTIONS(4057), 7, + [36008] = 13, + ACTIONS(4011), 1, + sym__whitespace_ge_2, + ACTIONS(4013), 1, + aux_sym__whitespace_token1, + ACTIONS(4345), 1, + anon_sym_LPAREN, + ACTIONS(4347), 1, + anon_sym_RPAREN, + ACTIONS(4353), 1, + aux_sym__newline_token1, + STATE(1568), 1, + sym__newline, + STATE(1650), 1, + sym__word, + ACTIONS(4343), 2, anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(4351), 2, + sym_entity_reference, + sym_numeric_character_reference, + STATE(1201), 2, + sym__whitespace, + aux_sym_link_title_repeat3, + STATE(1995), 2, + sym__link_destination_parenthesis, + aux_sym__link_destination_parenthesis_repeat1, + ACTIONS(4349), 3, + sym_backslash_escape, + sym__word_no_digit, + sym__digits, + ACTIONS(4341), 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, + [36081] = 5, + ACTIONS(4355), 1, + sym__line_ending, + STATE(1066), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(379), 3, + anon_sym_AMP, anon_sym_BSLASH, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4055), 41, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, + ACTIONS(4357), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(377), 38, + sym__blank_line_start, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -103582,10 +103961,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_RBRACK, anon_sym_CARET, anon_sym__, @@ -103594,45 +103975,36 @@ 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_entity_reference, sym_numeric_character_reference, - sym_uri_autolink, - sym_email_autolink, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [35722] = 12, - ACTIONS(1904), 1, - sym__blank_line_start, - ACTIONS(4132), 1, + [36138] = 9, + ACTIONS(4015), 1, + aux_sym__newline_token1, + ACTIONS(4361), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4363), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, - aux_sym__newline_token1, - ACTIONS(4314), 1, + ACTIONS(4367), 1, sym__block_close, - STATE(1019), 1, - aux_sym__ignore_matching_tokens, - STATE(1671), 1, - sym__newline, - STATE(2430), 1, - sym__blank_line, - ACTIONS(4312), 2, + ACTIONS(4369), 1, + sym__fenced_code_block_end_backtick, + STATE(2317), 1, + sym_code_fence_content, + ACTIONS(4365), 2, sym__word_no_digit, sym__digits, - ACTIONS(4316), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - STATE(1464), 3, + STATE(1163), 5, + sym__text, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + sym__newline, + aux_sym_code_fence_content_repeat1, + ACTIONS(4359), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -103665,24 +104037,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [35795] = 2, - ACTIONS(4045), 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, + [36202] = 9, + ACTIONS(4015), 1, + aux_sym__newline_token1, + ACTIONS(4361), 1, + sym__whitespace_ge_2, + ACTIONS(4363), 1, aux_sym__whitespace_token1, - ACTIONS(4043), 41, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, + ACTIONS(4371), 1, + sym__block_close, + ACTIONS(4373), 1, + sym__fenced_code_block_end_backtick, + STATE(2259), 1, + sym_code_fence_content, + ACTIONS(4365), 2, + sym__word_no_digit, + sym__digits, + STATE(1163), 5, + sym__text, + sym__whitespace, + sym__word, + sym__newline, + aux_sym_code_fence_content_repeat1, + ACTIONS(4359), 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, @@ -103694,10 +104077,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__, @@ -103706,56 +104092,38 @@ 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_entity_reference, - sym_numeric_character_reference, - sym_uri_autolink, - sym_email_autolink, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, + [36266] = 9, + ACTIONS(4031), 1, aux_sym__newline_token1, - [35848] = 14, - ACTIONS(4322), 1, - anon_sym_SQUOTE, - ACTIONS(4324), 1, - anon_sym_LPAREN, - ACTIONS(4326), 1, - anon_sym_RPAREN, - ACTIONS(4331), 1, + ACTIONS(4377), 1, sym__whitespace_ge_2, - ACTIONS(4334), 1, + ACTIONS(4379), 1, aux_sym__whitespace_token1, - ACTIONS(4337), 1, - aux_sym__newline_token1, - ACTIONS(4340), 1, - sym__last_token_punctuation, - STATE(1412), 1, - sym__newline, - STATE(1643), 1, - sym__word, - ACTIONS(4320), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1115), 2, - sym__whitespace, - aux_sym_link_title_repeat2, - STATE(1214), 2, - sym__link_destination_parenthesis, - aux_sym_link_destination_repeat2, - ACTIONS(4329), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(4383), 1, + sym__block_close, + ACTIONS(4385), 1, + sym__fenced_code_block_end_tilde, + STATE(2207), 1, + sym_code_fence_content, + ACTIONS(4381), 2, sym__word_no_digit, sym__digits, - ACTIONS(4318), 27, + STATE(1158), 5, + sym__text, + sym__whitespace, + sym__word, + sym__newline, + aux_sym_code_fence_content_repeat1, + ACTIONS(4375), 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, @@ -103770,6 +104138,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__, @@ -103778,46 +104147,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [35924] = 14, - ACTIONS(4322), 1, - anon_sym_DQUOTE, - ACTIONS(4331), 1, + [36330] = 9, + ACTIONS(4015), 1, + aux_sym__newline_token1, + ACTIONS(4361), 1, sym__whitespace_ge_2, - ACTIONS(4334), 1, + ACTIONS(4363), 1, aux_sym__whitespace_token1, - ACTIONS(4337), 1, - aux_sym__newline_token1, - ACTIONS(4340), 1, - sym__last_token_punctuation, - ACTIONS(4346), 1, - anon_sym_LPAREN, - ACTIONS(4348), 1, - anon_sym_RPAREN, - STATE(1424), 1, - sym__newline, - STATE(1655), 1, - sym__word, - ACTIONS(4344), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1119), 2, - sym__whitespace, - aux_sym_link_title_repeat1, - STATE(1214), 2, - sym__link_destination_parenthesis, - aux_sym_link_destination_repeat2, - ACTIONS(4351), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(4387), 1, + sym__block_close, + ACTIONS(4389), 1, + sym__fenced_code_block_end_backtick, + STATE(2311), 1, + sym_code_fence_content, + ACTIONS(4365), 2, sym__word_no_digit, sym__digits, - ACTIONS(4342), 27, + STATE(1163), 5, + sym__text, + sym__whitespace, + sym__word, + sym__newline, + aux_sym_code_fence_content_repeat1, + ACTIONS(4359), 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, @@ -103832,6 +104193,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__, @@ -103840,21 +104202,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [36000] = 5, - ACTIONS(459), 1, - sym__soft_line_break_marker, - ACTIONS(4357), 1, - sym__split_token, - STATE(2130), 1, - aux_sym__soft_line_break_repeat1, - ACTIONS(4355), 3, - anon_sym_LT, - anon_sym_BSLASH, + [36394] = 9, + ACTIONS(4031), 1, + aux_sym__newline_token1, + ACTIONS(4377), 1, + sym__whitespace_ge_2, + ACTIONS(4379), 1, aux_sym__whitespace_token1, - ACTIONS(4353), 41, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, + ACTIONS(4387), 1, + sym__block_close, + ACTIONS(4389), 1, + sym__fenced_code_block_end_tilde, + STATE(2312), 1, + sym_code_fence_content, + ACTIONS(4381), 2, + sym__word_no_digit, + sym__digits, + STATE(1158), 5, + sym__text, + sym__whitespace, + sym__word, + sym__newline, + aux_sym_code_fence_content_repeat1, + ACTIONS(4375), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -103872,10 +104242,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__, @@ -103884,35 +104257,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, + [36458] = 9, + ACTIONS(4015), 1, + aux_sym__newline_token1, + ACTIONS(4361), 1, sym__whitespace_ge_2, + ACTIONS(4363), 1, + aux_sym__whitespace_token1, + ACTIONS(4391), 1, + sym__block_close, + ACTIONS(4393), 1, + sym__fenced_code_block_end_backtick, + STATE(2262), 1, + sym_code_fence_content, + ACTIONS(4365), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [36058] = 5, - ACTIONS(4359), 1, - sym__line_ending, - STATE(1040), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(379), 3, - anon_sym_AMP, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(4361), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(377), 38, - sym__blank_line_start, + STATE(1163), 5, + sym__text, + sym__whitespace, + sym__word, + sym__newline, + aux_sym_code_fence_content_repeat1, + ACTIONS(4359), 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, @@ -103930,6 +104303,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__, @@ -103938,51 +104312,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, + [36522] = 9, + ACTIONS(4015), 1, aux_sym__newline_token1, - [36115] = 13, - ACTIONS(4035), 1, + ACTIONS(4361), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4363), 1, aux_sym__whitespace_token1, - ACTIONS(4367), 1, - anon_sym_LPAREN, - ACTIONS(4369), 1, - anon_sym_RPAREN, - ACTIONS(4375), 1, - aux_sym__newline_token1, - STATE(1577), 1, - sym__newline, - STATE(1641), 1, - sym__word, + ACTIONS(4395), 1, + sym__block_close, + ACTIONS(4397), 1, + sym__fenced_code_block_end_backtick, + STATE(2316), 1, + sym_code_fence_content, ACTIONS(4365), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(4373), 2, - sym_entity_reference, - sym_numeric_character_reference, - STATE(1205), 2, - sym__whitespace, - aux_sym_link_title_repeat3, - STATE(1977), 2, - sym__link_destination_parenthesis, - aux_sym__link_destination_parenthesis_repeat1, - ACTIONS(4371), 3, - sym_backslash_escape, sym__word_no_digit, sym__digits, - ACTIONS(4363), 28, + STATE(1163), 5, + sym__text, + sym__whitespace, + sym__word, + sym__newline, + aux_sym_code_fence_content_repeat1, + ACTIONS(4359), 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, @@ -103997,6 +104358,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__, @@ -104005,29 +104367,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [36188] = 9, - ACTIONS(4041), 1, + [36586] = 9, + ACTIONS(4031), 1, aux_sym__newline_token1, - ACTIONS(4379), 1, + ACTIONS(4377), 1, sym__whitespace_ge_2, - ACTIONS(4381), 1, + ACTIONS(4379), 1, aux_sym__whitespace_token1, - ACTIONS(4385), 1, + ACTIONS(4395), 1, sym__block_close, - ACTIONS(4387), 1, + ACTIONS(4397), 1, sym__fenced_code_block_end_tilde, - STATE(2324), 1, + STATE(2319), 1, sym_code_fence_content, - ACTIONS(4383), 2, + ACTIONS(4381), 2, sym__word_no_digit, sym__digits, - STATE(1173), 5, + STATE(1158), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4377), 32, + ACTIONS(4375), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -104060,29 +104422,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [36252] = 9, - ACTIONS(4041), 1, + [36650] = 9, + ACTIONS(4015), 1, aux_sym__newline_token1, - ACTIONS(4379), 1, + ACTIONS(4361), 1, sym__whitespace_ge_2, - ACTIONS(4381), 1, + ACTIONS(4363), 1, aux_sym__whitespace_token1, - ACTIONS(4389), 1, + ACTIONS(4399), 1, sym__block_close, - ACTIONS(4391), 1, - sym__fenced_code_block_end_tilde, - STATE(2255), 1, + ACTIONS(4401), 1, + sym__fenced_code_block_end_backtick, + STATE(2295), 1, sym_code_fence_content, - ACTIONS(4383), 2, + ACTIONS(4365), 2, sym__word_no_digit, sym__digits, - STATE(1173), 5, + STATE(1163), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4377), 32, + ACTIONS(4359), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -104115,24 +104477,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [36316] = 4, - STATE(1048), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(391), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [36714] = 9, + ACTIONS(4031), 1, + aux_sym__newline_token1, + ACTIONS(4377), 1, + sym__whitespace_ge_2, + ACTIONS(4379), 1, aux_sym__whitespace_token1, - ACTIONS(4393), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(389), 38, - sym__blank_line_start, + ACTIONS(4403), 1, + sym__block_close, + ACTIONS(4405), 1, + sym__fenced_code_block_end_tilde, + STATE(2178), 1, + sym_code_fence_content, + ACTIONS(4381), 2, + sym__word_no_digit, + sym__digits, + STATE(1158), 5, + sym__text, + sym__whitespace, + sym__word, + sym__newline, + aux_sym_code_fence_content_repeat1, + ACTIONS(4375), 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, @@ -104150,6 +104523,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__, @@ -104158,36 +104532,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, - [36370] = 9, - ACTIONS(4041), 1, + [36778] = 9, + ACTIONS(4015), 1, aux_sym__newline_token1, - ACTIONS(4379), 1, + ACTIONS(4361), 1, sym__whitespace_ge_2, - ACTIONS(4381), 1, + ACTIONS(4363), 1, aux_sym__whitespace_token1, - ACTIONS(4395), 1, + ACTIONS(4407), 1, sym__block_close, - ACTIONS(4397), 1, - sym__fenced_code_block_end_tilde, - STATE(2232), 1, + ACTIONS(4409), 1, + sym__fenced_code_block_end_backtick, + STATE(2275), 1, sym_code_fence_content, - ACTIONS(4383), 2, + ACTIONS(4365), 2, sym__word_no_digit, sym__digits, - STATE(1173), 5, + STATE(1163), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4377), 32, + ACTIONS(4359), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -104220,29 +104587,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [36434] = 9, - ACTIONS(4039), 1, + [36842] = 9, + ACTIONS(4031), 1, aux_sym__newline_token1, - ACTIONS(4401), 1, + ACTIONS(4377), 1, sym__whitespace_ge_2, - ACTIONS(4403), 1, + ACTIONS(4379), 1, aux_sym__whitespace_token1, ACTIONS(4407), 1, sym__block_close, ACTIONS(4409), 1, - sym__fenced_code_block_end_backtick, - STATE(2305), 1, + sym__fenced_code_block_end_tilde, + STATE(2270), 1, sym_code_fence_content, - ACTIONS(4405), 2, + ACTIONS(4381), 2, sym__word_no_digit, sym__digits, - STATE(1126), 5, + STATE(1158), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4399), 32, + ACTIONS(4375), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -104275,14 +104642,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [36498] = 3, + [36906] = 3, ACTIONS(4411), 1, - sym__last_token_punctuation, - ACTIONS(2946), 3, + sym__last_token_whitespace, + ACTIONS(2842), 3, anon_sym_LT, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(2523), 41, + ACTIONS(2840), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -104324,29 +104691,207 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [36550] = 9, - ACTIONS(4041), 1, + [36958] = 18, + ACTIONS(417), 1, + aux_sym__whitespace_token1, + ACTIONS(4413), 1, + aux_sym__html_block_1_token1, + ACTIONS(4415), 1, + anon_sym_LT_BANG_DASH_DASH, + ACTIONS(4417), 1, + anon_sym_LT_QMARK, + ACTIONS(4419), 1, + aux_sym__html_block_4_token1, + ACTIONS(4421), 1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(4423), 1, + aux_sym__html_block_6_token1, + ACTIONS(4425), 1, + aux_sym__html_block_6_token2, + ACTIONS(4427), 1, + sym__block_quote_start, + ACTIONS(4433), 1, + sym__thematic_break, + ACTIONS(4435), 1, + sym__fenced_code_block_start_backtick, + ACTIONS(4437), 1, + sym__fenced_code_block_start_tilde, + ACTIONS(4439), 1, + sym__blank_line_start, + ACTIONS(447), 2, + sym__split_token, + sym__soft_line_break_marker, + ACTIONS(415), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, + sym__whitespace_ge_2, aux_sym__newline_token1, - ACTIONS(4379), 1, + ACTIONS(4429), 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(4431), 7, + sym_setext_h1_underline, + sym_setext_h2_underline, + sym__list_marker_minus, + sym__list_marker_plus, + sym__list_marker_star, + sym__list_marker_parenthesis, + sym__list_marker_dot, + STATE(2052), 12, + sym__block_interrupt_paragraph, + sym_thematic_break, + sym_atx_heading, + 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, + sym__blank_line, + sym_block_quote, + [37040] = 18, + ACTIONS(467), 1, + aux_sym__whitespace_token1, + ACTIONS(4413), 1, + aux_sym__html_block_1_token1, + ACTIONS(4415), 1, + anon_sym_LT_BANG_DASH_DASH, + ACTIONS(4417), 1, + anon_sym_LT_QMARK, + ACTIONS(4419), 1, + aux_sym__html_block_4_token1, + ACTIONS(4421), 1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(4423), 1, + aux_sym__html_block_6_token1, + ACTIONS(4425), 1, + aux_sym__html_block_6_token2, + ACTIONS(4427), 1, + sym__block_quote_start, + ACTIONS(4433), 1, + sym__thematic_break, + ACTIONS(4435), 1, + sym__fenced_code_block_start_backtick, + ACTIONS(4437), 1, + sym__fenced_code_block_start_tilde, + ACTIONS(4439), 1, + sym__blank_line_start, + ACTIONS(447), 2, + sym__split_token, + sym__soft_line_break_marker, + ACTIONS(465), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, sym__whitespace_ge_2, - ACTIONS(4381), 1, + aux_sym__newline_token1, + ACTIONS(4429), 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(4441), 7, + sym_setext_h1_underline, + sym_setext_h2_underline, + sym__list_marker_minus, + sym__list_marker_plus, + sym__list_marker_star, + sym__list_marker_parenthesis, + sym__list_marker_dot, + STATE(2044), 12, + sym__block_interrupt_paragraph, + sym_thematic_break, + sym_atx_heading, + 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, + sym__blank_line, + sym_block_quote, + [37122] = 4, + STATE(1095), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(391), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4407), 1, + ACTIONS(4443), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(389), 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, + 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, + [37176] = 9, + ACTIONS(4015), 1, + aux_sym__newline_token1, + ACTIONS(4361), 1, + sym__whitespace_ge_2, + ACTIONS(4363), 1, + aux_sym__whitespace_token1, + ACTIONS(4445), 1, sym__block_close, - ACTIONS(4409), 1, - sym__fenced_code_block_end_tilde, - STATE(2287), 1, + ACTIONS(4447), 1, + sym__fenced_code_block_end_backtick, + STATE(2217), 1, sym_code_fence_content, - ACTIONS(4383), 2, + ACTIONS(4365), 2, sym__word_no_digit, sym__digits, - STATE(1173), 5, + STATE(1163), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4377), 32, + ACTIONS(4359), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -104379,17 +104924,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [36614] = 3, - ACTIONS(4413), 1, - sym__last_token_whitespace, - ACTIONS(2842), 3, - anon_sym_LT, - anon_sym_BSLASH, + [37240] = 9, + ACTIONS(4015), 1, + aux_sym__newline_token1, + ACTIONS(4361), 1, + sym__whitespace_ge_2, + ACTIONS(4363), 1, aux_sym__whitespace_token1, - ACTIONS(2840), 41, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, + ACTIONS(4449), 1, + sym__block_close, + ACTIONS(4451), 1, + sym__fenced_code_block_end_backtick, + STATE(2265), 1, + sym_code_fence_content, + ACTIONS(4365), 2, + sym__word_no_digit, + sym__digits, + STATE(1163), 5, + sym__text, + sym__whitespace, + sym__word, + sym__newline, + aux_sym_code_fence_content_repeat1, + ACTIONS(4359), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -104407,10 +104964,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__, @@ -104419,38 +104979,84 @@ 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, + [37304] = 9, + ACTIONS(4015), 1, + aux_sym__newline_token1, + ACTIONS(4361), 1, sym__whitespace_ge_2, + ACTIONS(4363), 1, + aux_sym__whitespace_token1, + ACTIONS(4403), 1, + sym__block_close, + ACTIONS(4405), 1, + sym__fenced_code_block_end_backtick, + STATE(2306), 1, + sym_code_fence_content, + ACTIONS(4365), 2, sym__word_no_digit, sym__digits, + STATE(1163), 5, + sym__text, + sym__whitespace, + sym__word, + sym__newline, + aux_sym_code_fence_content_repeat1, + ACTIONS(4359), 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, + [37368] = 9, + ACTIONS(4015), 1, aux_sym__newline_token1, - [36666] = 9, - ACTIONS(4039), 1, - aux_sym__newline_token1, - ACTIONS(4401), 1, + ACTIONS(4361), 1, sym__whitespace_ge_2, - ACTIONS(4403), 1, + ACTIONS(4363), 1, aux_sym__whitespace_token1, - ACTIONS(4415), 1, + ACTIONS(4453), 1, sym__block_close, - ACTIONS(4417), 1, + ACTIONS(4455), 1, sym__fenced_code_block_end_backtick, - STATE(2228), 1, + STATE(2288), 1, sym_code_fence_content, - ACTIONS(4405), 2, + ACTIONS(4365), 2, sym__word_no_digit, sym__digits, - STATE(1126), 5, + STATE(1163), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4399), 32, + ACTIONS(4359), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -104483,24 +105089,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [36730] = 4, - STATE(1049), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(391), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [37432] = 9, + ACTIONS(4031), 1, + aux_sym__newline_token1, + ACTIONS(4377), 1, + sym__whitespace_ge_2, + ACTIONS(4379), 1, aux_sym__whitespace_token1, - ACTIONS(4419), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(389), 38, - sym__blank_line_start, + ACTIONS(4449), 1, + sym__block_close, + ACTIONS(4451), 1, + sym__fenced_code_block_end_tilde, + STATE(2258), 1, + sym_code_fence_content, + ACTIONS(4381), 2, + sym__word_no_digit, + sym__digits, + STATE(1158), 5, + sym__text, + sym__whitespace, + sym__word, + sym__newline, + aux_sym_code_fence_content_repeat1, + ACTIONS(4375), 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, @@ -104518,6 +105135,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__, @@ -104526,31 +105144,35 @@ 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, + [37496] = 9, + ACTIONS(4031), 1, + aux_sym__newline_token1, + ACTIONS(4367), 1, + sym__block_close, + ACTIONS(4369), 1, + sym__fenced_code_block_end_tilde, + ACTIONS(4377), 1, sym__whitespace_ge_2, + ACTIONS(4379), 1, + aux_sym__whitespace_token1, + STATE(2313), 1, + sym_code_fence_content, + ACTIONS(4381), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [36784] = 4, - STATE(1048), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(399), 3, - anon_sym_AMP, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(4421), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(397), 38, - sym__blank_line_start, + STATE(1158), 5, + sym__text, + sym__whitespace, + sym__word, + sym__newline, + aux_sym_code_fence_content_repeat1, + ACTIONS(4375), 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, @@ -104568,6 +105190,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__, @@ -104576,31 +105199,35 @@ 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, + [37560] = 9, + ACTIONS(4031), 1, + aux_sym__newline_token1, + ACTIONS(4377), 1, sym__whitespace_ge_2, + ACTIONS(4379), 1, + aux_sym__whitespace_token1, + ACTIONS(4453), 1, + sym__block_close, + ACTIONS(4455), 1, + sym__fenced_code_block_end_tilde, + STATE(2292), 1, + sym_code_fence_content, + ACTIONS(4381), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [36838] = 4, - STATE(1048), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(409), 3, - anon_sym_AMP, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(4393), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(407), 38, - sym__blank_line_start, + STATE(1158), 5, + sym__text, + sym__whitespace, + sym__word, + sym__newline, + aux_sym_code_fence_content_repeat1, + ACTIONS(4375), 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, @@ -104618,6 +105245,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__, @@ -104626,36 +105254,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, + [37624] = 9, + ACTIONS(4031), 1, aux_sym__newline_token1, - [36892] = 9, - ACTIONS(4041), 1, - aux_sym__newline_token1, - ACTIONS(4379), 1, + ACTIONS(4377), 1, sym__whitespace_ge_2, - ACTIONS(4381), 1, + ACTIONS(4379), 1, aux_sym__whitespace_token1, - ACTIONS(4415), 1, + ACTIONS(4457), 1, sym__block_close, - ACTIONS(4417), 1, + ACTIONS(4459), 1, sym__fenced_code_block_end_tilde, - STATE(2227), 1, + STATE(2276), 1, sym_code_fence_content, - ACTIONS(4383), 2, + ACTIONS(4381), 2, sym__word_no_digit, sym__digits, - STATE(1173), 5, + STATE(1158), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4377), 32, + ACTIONS(4375), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -104688,25 +105309,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [36956] = 5, - ACTIONS(4424), 1, - sym__line_ending, - STATE(1144), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(379), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [37688] = 9, + ACTIONS(4015), 1, + aux_sym__newline_token1, + ACTIONS(4361), 1, + sym__whitespace_ge_2, + ACTIONS(4363), 1, aux_sym__whitespace_token1, - ACTIONS(4426), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(377), 37, + ACTIONS(4457), 1, + sym__block_close, + ACTIONS(4459), 1, + sym__fenced_code_block_end_backtick, + STATE(2268), 1, + sym_code_fence_content, + ACTIONS(4365), 2, + sym__word_no_digit, + sym__digits, + STATE(1163), 5, + sym__text, + sym__whitespace, + sym__word, + sym__newline, + aux_sym_code_fence_content_repeat1, + ACTIONS(4359), 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, @@ -104724,6 +105355,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__, @@ -104732,36 +105364,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, + [37752] = 9, + ACTIONS(4015), 1, aux_sym__newline_token1, - [37012] = 9, - ACTIONS(4039), 1, - aux_sym__newline_token1, - ACTIONS(4401), 1, + ACTIONS(4361), 1, sym__whitespace_ge_2, - ACTIONS(4403), 1, + ACTIONS(4363), 1, aux_sym__whitespace_token1, - ACTIONS(4428), 1, + ACTIONS(4461), 1, sym__block_close, - ACTIONS(4430), 1, + ACTIONS(4463), 1, sym__fenced_code_block_end_backtick, - STATE(2271), 1, + STATE(2222), 1, sym_code_fence_content, - ACTIONS(4405), 2, + ACTIONS(4365), 2, sym__word_no_digit, sym__digits, - STATE(1126), 5, + STATE(1163), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4399), 32, + ACTIONS(4359), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -104794,29 +105419,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [37076] = 9, - ACTIONS(4041), 1, + [37816] = 9, + ACTIONS(4031), 1, aux_sym__newline_token1, - ACTIONS(4379), 1, + ACTIONS(4377), 1, sym__whitespace_ge_2, - ACTIONS(4381), 1, + ACTIONS(4379), 1, aux_sym__whitespace_token1, - ACTIONS(4428), 1, + ACTIONS(4465), 1, sym__block_close, - ACTIONS(4430), 1, + ACTIONS(4467), 1, sym__fenced_code_block_end_tilde, - STATE(2278), 1, + STATE(2296), 1, sym_code_fence_content, - ACTIONS(4383), 2, + ACTIONS(4381), 2, sym__word_no_digit, sym__digits, - STATE(1173), 5, + STATE(1158), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4377), 32, + ACTIONS(4375), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -104849,44 +105474,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [37140] = 13, - ACTIONS(41), 1, + [37880] = 9, + ACTIONS(4031), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4377), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4379), 1, aux_sym__whitespace_token1, - ACTIONS(4086), 1, - anon_sym_LT, - ACTIONS(4367), 1, - anon_sym_LPAREN, - STATE(1543), 1, - sym__soft_line_break, - STATE(1546), 1, - sym__whitespace, - STATE(2074), 1, - sym_link_destination, - STATE(2144), 1, - sym__newline, - ACTIONS(4078), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1267), 2, - sym__link_destination_parenthesis, - sym__word, - ACTIONS(4088), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(4461), 1, + sym__block_close, + ACTIONS(4463), 1, + sym__fenced_code_block_end_tilde, + STATE(2220), 1, + sym_code_fence_content, + ACTIONS(4381), 2, sym__word_no_digit, sym__digits, - ACTIONS(4074), 27, + STATE(1158), 5, + sym__text, + sym__whitespace, + sym__word, + sym__newline, + aux_sym_code_fence_content_repeat1, + ACTIONS(4375), 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, @@ -104895,11 +105514,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__, @@ -104908,44 +105529,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [37212] = 13, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(4035), 1, - sym__whitespace_ge_2, - ACTIONS(4037), 1, - aux_sym__whitespace_token1, - ACTIONS(4086), 1, - anon_sym_LT, - ACTIONS(4367), 1, - anon_sym_LPAREN, - STATE(1536), 1, - sym__soft_line_break, - STATE(1538), 1, - sym__whitespace, - STATE(2066), 1, - sym_link_destination, - STATE(2144), 1, - sym__newline, - ACTIONS(4078), 2, + [37944] = 4, + STATE(1078), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(391), 3, anon_sym_AMP, anon_sym_BSLASH, - STATE(1267), 2, - sym__link_destination_parenthesis, - sym__word, - ACTIONS(4088), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4074), 27, + aux_sym__whitespace_token1, + ACTIONS(4469), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(389), 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, @@ -104954,6 +105558,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, @@ -104967,29 +105572,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [37284] = 9, - ACTIONS(4039), 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, - ACTIONS(4401), 1, + [37998] = 9, + ACTIONS(4015), 1, + aux_sym__newline_token1, + ACTIONS(4361), 1, sym__whitespace_ge_2, - ACTIONS(4403), 1, + ACTIONS(4363), 1, aux_sym__whitespace_token1, - ACTIONS(4432), 1, + ACTIONS(4471), 1, sym__block_close, - ACTIONS(4434), 1, + ACTIONS(4473), 1, sym__fenced_code_block_end_backtick, - STATE(2220), 1, + STATE(2191), 1, sym_code_fence_content, - ACTIONS(4405), 2, + ACTIONS(4365), 2, sym__word_no_digit, sym__digits, - STATE(1126), 5, + STATE(1163), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4399), 32, + ACTIONS(4359), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -105022,44 +105634,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [37348] = 13, - ACTIONS(41), 1, + [38062] = 9, + ACTIONS(4015), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4361), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4363), 1, aux_sym__whitespace_token1, - ACTIONS(4086), 1, - anon_sym_LT, - ACTIONS(4367), 1, - anon_sym_LPAREN, - STATE(1555), 1, - sym__soft_line_break, - STATE(1557), 1, - sym__whitespace, - STATE(2082), 1, - sym_link_destination, - STATE(2144), 1, - sym__newline, - ACTIONS(4078), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1267), 2, - sym__link_destination_parenthesis, - sym__word, - ACTIONS(4088), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(4465), 1, + sym__block_close, + ACTIONS(4467), 1, + sym__fenced_code_block_end_backtick, + STATE(2281), 1, + sym_code_fence_content, + ACTIONS(4365), 2, sym__word_no_digit, sym__digits, - ACTIONS(4074), 27, + STATE(1163), 5, + sym__text, + sym__whitespace, + sym__word, + sym__newline, + aux_sym_code_fence_content_repeat1, + ACTIONS(4359), 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, @@ -105068,11 +105674,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__, @@ -105081,29 +105689,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [37420] = 9, - ACTIONS(4039), 1, + [38126] = 9, + ACTIONS(4015), 1, aux_sym__newline_token1, - ACTIONS(4385), 1, - sym__block_close, - ACTIONS(4387), 1, - sym__fenced_code_block_end_backtick, - ACTIONS(4401), 1, + ACTIONS(4361), 1, sym__whitespace_ge_2, - ACTIONS(4403), 1, + ACTIONS(4363), 1, aux_sym__whitespace_token1, - STATE(2241), 1, + ACTIONS(4383), 1, + sym__block_close, + ACTIONS(4385), 1, + sym__fenced_code_block_end_backtick, + STATE(2205), 1, sym_code_fence_content, - ACTIONS(4405), 2, + ACTIONS(4365), 2, sym__word_no_digit, sym__digits, - STATE(1126), 5, + STATE(1163), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4399), 32, + ACTIONS(4359), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -105136,29 +105744,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [37484] = 9, - ACTIONS(4039), 1, + [38190] = 9, + ACTIONS(4031), 1, aux_sym__newline_token1, - ACTIONS(4401), 1, + ACTIONS(4377), 1, sym__whitespace_ge_2, - ACTIONS(4403), 1, + ACTIONS(4379), 1, aux_sym__whitespace_token1, - ACTIONS(4436), 1, + ACTIONS(4475), 1, sym__block_close, - ACTIONS(4438), 1, - sym__fenced_code_block_end_backtick, - STATE(2188), 1, + ACTIONS(4477), 1, + sym__fenced_code_block_end_tilde, + STATE(2146), 1, sym_code_fence_content, - ACTIONS(4405), 2, + ACTIONS(4381), 2, sym__word_no_digit, sym__digits, - STATE(1126), 5, + STATE(1158), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4399), 32, + ACTIONS(4375), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -105191,93 +105799,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [37548] = 18, - ACTIONS(417), 1, - aux_sym__whitespace_token1, - ACTIONS(4112), 1, - sym__fenced_code_block_start_backtick, - ACTIONS(4114), 1, - sym__fenced_code_block_start_tilde, - ACTIONS(4440), 1, - aux_sym__html_block_1_token1, - ACTIONS(4442), 1, - anon_sym_LT_BANG_DASH_DASH, - ACTIONS(4444), 1, - anon_sym_LT_QMARK, - ACTIONS(4446), 1, - aux_sym__html_block_4_token1, - ACTIONS(4448), 1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(4450), 1, - aux_sym__html_block_6_token1, - ACTIONS(4452), 1, - aux_sym__html_block_6_token2, - ACTIONS(4454), 1, - sym__block_quote_start, - ACTIONS(4458), 1, - sym__thematic_break, - ACTIONS(4460), 1, - sym__blank_line_start, - ACTIONS(447), 2, - sym__split_token, - sym__soft_line_break_marker, - ACTIONS(415), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, - sym__whitespace_ge_2, + [38254] = 9, + ACTIONS(4015), 1, aux_sym__newline_token1, - ACTIONS(4456), 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(4108), 7, - sym_setext_h1_underline, - sym_setext_h2_underline, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - STATE(1835), 12, - sym__block_interrupt_paragraph, - sym_thematic_break, - sym_atx_heading, - 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, - sym__blank_line, - sym_block_quote, - [37630] = 9, - ACTIONS(4039), 1, - aux_sym__newline_token1, - ACTIONS(4401), 1, + ACTIONS(4361), 1, sym__whitespace_ge_2, - ACTIONS(4403), 1, + ACTIONS(4363), 1, aux_sym__whitespace_token1, - ACTIONS(4462), 1, + ACTIONS(4479), 1, sym__block_close, - ACTIONS(4464), 1, + ACTIONS(4481), 1, sym__fenced_code_block_end_backtick, - STATE(2317), 1, + STATE(2211), 1, sym_code_fence_content, - ACTIONS(4405), 2, + ACTIONS(4365), 2, sym__word_no_digit, sym__digits, - STATE(1126), 5, + STATE(1163), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4399), 32, + ACTIONS(4359), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -105310,29 +105854,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [37694] = 9, - ACTIONS(4041), 1, + [38318] = 9, + ACTIONS(4031), 1, aux_sym__newline_token1, - ACTIONS(4379), 1, + ACTIONS(4377), 1, sym__whitespace_ge_2, - ACTIONS(4381), 1, + ACTIONS(4379), 1, aux_sym__whitespace_token1, - ACTIONS(4436), 1, + ACTIONS(4471), 1, sym__block_close, - ACTIONS(4438), 1, + ACTIONS(4473), 1, sym__fenced_code_block_end_tilde, - STATE(2206), 1, + STATE(2238), 1, sym_code_fence_content, - ACTIONS(4383), 2, + ACTIONS(4381), 2, sym__word_no_digit, sym__digits, - STATE(1173), 5, + STATE(1158), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4377), 32, + ACTIONS(4375), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -105365,102 +105909,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [37758] = 18, - ACTIONS(417), 1, - aux_sym__whitespace_token1, - ACTIONS(4466), 1, - aux_sym__html_block_1_token1, - ACTIONS(4468), 1, - anon_sym_LT_BANG_DASH_DASH, - ACTIONS(4470), 1, - anon_sym_LT_QMARK, - ACTIONS(4472), 1, - aux_sym__html_block_4_token1, - ACTIONS(4474), 1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(4476), 1, - aux_sym__html_block_6_token1, - ACTIONS(4478), 1, - aux_sym__html_block_6_token2, - ACTIONS(4480), 1, - sym__block_quote_start, - ACTIONS(4486), 1, - sym__thematic_break, - ACTIONS(4488), 1, - sym__fenced_code_block_start_backtick, - ACTIONS(4490), 1, - sym__fenced_code_block_start_tilde, - ACTIONS(4492), 1, - sym__blank_line_start, - ACTIONS(447), 2, - sym__split_token, - sym__soft_line_break_marker, - ACTIONS(415), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, - sym__whitespace_ge_2, - aux_sym__newline_token1, - ACTIONS(4482), 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(4484), 7, - sym_setext_h1_underline, - sym_setext_h2_underline, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - STATE(2053), 12, - sym__block_interrupt_paragraph, - sym_thematic_break, - sym_atx_heading, - 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, - sym__blank_line, - sym_block_quote, - [37840] = 9, - ACTIONS(4039), 1, + [38382] = 13, + ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4395), 1, - sym__block_close, - ACTIONS(4397), 1, - sym__fenced_code_block_end_backtick, - ACTIONS(4401), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4403), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - STATE(2233), 1, - sym_code_fence_content, - ACTIONS(4405), 2, - sym__word_no_digit, - sym__digits, - STATE(1126), 5, - sym__text, + ACTIONS(4090), 1, + anon_sym_LT, + ACTIONS(4345), 1, + anon_sym_LPAREN, + STATE(1509), 1, + sym__soft_line_break, + STATE(1519), 1, sym__whitespace, - sym__word, + STATE(2081), 1, + sym_link_destination, + STATE(2137), 1, sym__newline, - aux_sym_code_fence_content_repeat1, - ACTIONS(4399), 32, + ACTIONS(4082), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1229), 2, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(4092), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4078), 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, @@ -105469,13 +105955,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__, @@ -105484,29 +105968,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [37904] = 9, - ACTIONS(4041), 1, + [38454] = 9, + ACTIONS(4015), 1, aux_sym__newline_token1, - ACTIONS(4379), 1, + ACTIONS(4361), 1, sym__whitespace_ge_2, - ACTIONS(4381), 1, + ACTIONS(4363), 1, aux_sym__whitespace_token1, - ACTIONS(4494), 1, + ACTIONS(4483), 1, sym__block_close, - ACTIONS(4496), 1, - sym__fenced_code_block_end_tilde, - STATE(2275), 1, + ACTIONS(4485), 1, + sym__fenced_code_block_end_backtick, + STATE(2210), 1, sym_code_fence_content, - ACTIONS(4383), 2, + ACTIONS(4365), 2, sym__word_no_digit, sym__digits, - STATE(1173), 5, + STATE(1163), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4377), 32, + ACTIONS(4359), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -105539,29 +106023,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [37968] = 9, - ACTIONS(4039), 1, - aux_sym__newline_token1, - ACTIONS(4401), 1, - sym__whitespace_ge_2, - ACTIONS(4403), 1, + [38518] = 3, + ACTIONS(4487), 1, + sym__last_token_punctuation, + ACTIONS(2950), 3, + anon_sym_LT, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4494), 1, - sym__block_close, - ACTIONS(4496), 1, - sym__fenced_code_block_end_backtick, - STATE(2277), 1, - sym_code_fence_content, - ACTIONS(4405), 2, - sym__word_no_digit, - sym__digits, - STATE(1126), 5, - sym__text, - sym__whitespace, - sym__word, - sym__newline, - aux_sym_code_fence_content_repeat1, - ACTIONS(4399), 32, + ACTIONS(2389), 41, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -105579,13 +106051,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__, @@ -105594,93 +106063,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [38032] = 18, - ACTIONS(497), 1, - aux_sym__whitespace_token1, - ACTIONS(4466), 1, - aux_sym__html_block_1_token1, - ACTIONS(4468), 1, anon_sym_LT_BANG_DASH_DASH, - ACTIONS(4470), 1, anon_sym_LT_QMARK, - ACTIONS(4472), 1, aux_sym__html_block_4_token1, - ACTIONS(4474), 1, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(4476), 1, - aux_sym__html_block_6_token1, - ACTIONS(4478), 1, - aux_sym__html_block_6_token2, - ACTIONS(4480), 1, - sym__block_quote_start, - ACTIONS(4486), 1, - sym__thematic_break, - ACTIONS(4488), 1, - sym__fenced_code_block_start_backtick, - ACTIONS(4490), 1, - sym__fenced_code_block_start_tilde, - ACTIONS(4492), 1, - sym__blank_line_start, - ACTIONS(447), 2, - sym__split_token, - sym__soft_line_break_marker, - ACTIONS(495), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, + sym_backslash_escape, sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, aux_sym__newline_token1, - ACTIONS(4482), 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(4498), 7, - sym_setext_h1_underline, - sym_setext_h2_underline, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - STATE(2043), 12, - sym__block_interrupt_paragraph, - sym_thematic_break, - sym_atx_heading, - 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, - sym__blank_line, - sym_block_quote, - [38114] = 9, - ACTIONS(4041), 1, + [38570] = 9, + ACTIONS(4031), 1, aux_sym__newline_token1, - ACTIONS(4379), 1, + ACTIONS(4377), 1, sym__whitespace_ge_2, - ACTIONS(4381), 1, + ACTIONS(4379), 1, aux_sym__whitespace_token1, - ACTIONS(4500), 1, + ACTIONS(4479), 1, sym__block_close, - ACTIONS(4502), 1, + ACTIONS(4481), 1, sym__fenced_code_block_end_tilde, - STATE(2280), 1, + STATE(2213), 1, sym_code_fence_content, - ACTIONS(4383), 2, + ACTIONS(4381), 2, sym__word_no_digit, sym__digits, - STATE(1173), 5, + STATE(1158), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4377), 32, + ACTIONS(4375), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -105713,29 +106127,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [38178] = 9, - ACTIONS(4041), 1, + [38634] = 9, + ACTIONS(4031), 1, aux_sym__newline_token1, - ACTIONS(4379), 1, + ACTIONS(4377), 1, sym__whitespace_ge_2, - ACTIONS(4381), 1, + ACTIONS(4379), 1, aux_sym__whitespace_token1, - ACTIONS(4432), 1, + ACTIONS(4483), 1, sym__block_close, - ACTIONS(4434), 1, + ACTIONS(4485), 1, sym__fenced_code_block_end_tilde, - STATE(2217), 1, + STATE(2209), 1, sym_code_fence_content, - ACTIONS(4383), 2, + ACTIONS(4381), 2, sym__word_no_digit, sym__digits, - STATE(1173), 5, + STATE(1158), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4377), 32, + ACTIONS(4375), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -105768,29 +106182,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [38242] = 9, - ACTIONS(4039), 1, + [38698] = 4, + STATE(1078), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(405), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(4489), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(403), 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, + 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, - ACTIONS(4401), 1, + [38752] = 9, + ACTIONS(4015), 1, + aux_sym__newline_token1, + ACTIONS(4361), 1, sym__whitespace_ge_2, - ACTIONS(4403), 1, + ACTIONS(4363), 1, aux_sym__whitespace_token1, - ACTIONS(4500), 1, + ACTIONS(4475), 1, sym__block_close, - ACTIONS(4502), 1, + ACTIONS(4477), 1, sym__fenced_code_block_end_backtick, - STATE(2282), 1, + STATE(2308), 1, sym_code_fence_content, - ACTIONS(4405), 2, + ACTIONS(4365), 2, sym__word_no_digit, sym__digits, - STATE(1126), 5, + STATE(1163), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4399), 32, + ACTIONS(4359), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -105823,29 +106287,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [38306] = 9, - ACTIONS(4041), 1, + [38816] = 9, + ACTIONS(4031), 1, aux_sym__newline_token1, - ACTIONS(4379), 1, + ACTIONS(4377), 1, sym__whitespace_ge_2, - ACTIONS(4381), 1, + ACTIONS(4379), 1, aux_sym__whitespace_token1, - ACTIONS(4504), 1, + ACTIONS(4492), 1, sym__block_close, - ACTIONS(4506), 1, + ACTIONS(4494), 1, sym__fenced_code_block_end_tilde, - STATE(2198), 1, + STATE(2260), 1, sym_code_fence_content, - ACTIONS(4383), 2, + ACTIONS(4381), 2, sym__word_no_digit, sym__digits, - STATE(1173), 5, + STATE(1158), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4377), 32, + ACTIONS(4375), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -105878,29 +106342,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [38370] = 9, - ACTIONS(4039), 1, + [38880] = 9, + ACTIONS(4015), 1, aux_sym__newline_token1, - ACTIONS(4401), 1, + ACTIONS(4361), 1, sym__whitespace_ge_2, - ACTIONS(4403), 1, + ACTIONS(4363), 1, aux_sym__whitespace_token1, - ACTIONS(4508), 1, + ACTIONS(4496), 1, sym__block_close, - ACTIONS(4510), 1, + ACTIONS(4498), 1, sym__fenced_code_block_end_backtick, - STATE(2194), 1, + STATE(2153), 1, sym_code_fence_content, - ACTIONS(4405), 2, + ACTIONS(4365), 2, sym__word_no_digit, sym__digits, - STATE(1126), 5, + STATE(1163), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4399), 32, + ACTIONS(4359), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -105933,29 +106397,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [38434] = 9, - ACTIONS(4041), 1, + [38944] = 9, + ACTIONS(4031), 1, aux_sym__newline_token1, - ACTIONS(4379), 1, + ACTIONS(4377), 1, sym__whitespace_ge_2, - ACTIONS(4381), 1, + ACTIONS(4379), 1, aux_sym__whitespace_token1, - ACTIONS(4508), 1, + ACTIONS(4496), 1, sym__block_close, - ACTIONS(4510), 1, + ACTIONS(4498), 1, sym__fenced_code_block_end_tilde, - STATE(2187), 1, + STATE(2204), 1, sym_code_fence_content, - ACTIONS(4383), 2, + ACTIONS(4381), 2, sym__word_no_digit, sym__digits, - STATE(1173), 5, + STATE(1158), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4377), 32, + ACTIONS(4375), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -105988,35 +106452,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [38498] = 9, - ACTIONS(4041), 1, - aux_sym__newline_token1, - ACTIONS(4379), 1, - sym__whitespace_ge_2, - ACTIONS(4381), 1, + [39008] = 5, + ACTIONS(4500), 1, + sym__line_ending, + STATE(1185), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(379), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4512), 1, - sym__block_close, - ACTIONS(4514), 1, - sym__fenced_code_block_end_tilde, - STATE(2297), 1, - sym_code_fence_content, - ACTIONS(4383), 2, - sym__word_no_digit, - sym__digits, - STATE(1173), 5, - sym__text, - sym__whitespace, - sym__word, - sym__newline, - aux_sym_code_fence_content_repeat1, - ACTIONS(4377), 32, + ACTIONS(4502), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(377), 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, @@ -106034,7 +106488,72 @@ 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, + [39064] = 13, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(4011), 1, + sym__whitespace_ge_2, + ACTIONS(4013), 1, + aux_sym__whitespace_token1, + ACTIONS(4090), 1, + anon_sym_LT, + ACTIONS(4345), 1, + anon_sym_LPAREN, + STATE(1402), 1, + sym__soft_line_break, + STATE(1403), 1, + sym__whitespace, + STATE(2090), 1, + sym_link_destination, + STATE(2137), 1, + sym__newline, + ACTIONS(4082), 2, + anon_sym_AMP, anon_sym_BSLASH, + STATE(1229), 2, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(4092), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4078), 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__, @@ -106043,29 +106562,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [38562] = 9, - ACTIONS(4039), 1, + [39136] = 9, + ACTIONS(4015), 1, aux_sym__newline_token1, - ACTIONS(4401), 1, + ACTIONS(4361), 1, sym__whitespace_ge_2, - ACTIONS(4403), 1, + ACTIONS(4363), 1, aux_sym__whitespace_token1, ACTIONS(4504), 1, sym__block_close, ACTIONS(4506), 1, sym__fenced_code_block_end_backtick, - STATE(2201), 1, + STATE(2305), 1, sym_code_fence_content, - ACTIONS(4405), 2, + ACTIONS(4365), 2, sym__word_no_digit, sym__digits, - STATE(1126), 5, + STATE(1163), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4399), 32, + ACTIONS(4359), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -106098,29 +106617,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [38626] = 9, - ACTIONS(4039), 1, + [39200] = 9, + ACTIONS(4015), 1, aux_sym__newline_token1, - ACTIONS(4401), 1, + ACTIONS(4361), 1, sym__whitespace_ge_2, - ACTIONS(4403), 1, + ACTIONS(4363), 1, aux_sym__whitespace_token1, - ACTIONS(4516), 1, + ACTIONS(4508), 1, sym__block_close, - ACTIONS(4518), 1, + ACTIONS(4510), 1, sym__fenced_code_block_end_backtick, - STATE(2183), 1, + STATE(2147), 1, sym_code_fence_content, - ACTIONS(4405), 2, + ACTIONS(4365), 2, sym__word_no_digit, sym__digits, - STATE(1126), 5, + STATE(1163), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4399), 32, + ACTIONS(4359), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -106153,29 +106672,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [38690] = 9, - ACTIONS(4041), 1, + [39264] = 9, + ACTIONS(4015), 1, aux_sym__newline_token1, - ACTIONS(4379), 1, + ACTIONS(4361), 1, sym__whitespace_ge_2, - ACTIONS(4381), 1, + ACTIONS(4363), 1, aux_sym__whitespace_token1, - ACTIONS(4516), 1, + ACTIONS(4512), 1, sym__block_close, - ACTIONS(4518), 1, - sym__fenced_code_block_end_tilde, - STATE(2184), 1, + ACTIONS(4514), 1, + sym__fenced_code_block_end_backtick, + STATE(2243), 1, sym_code_fence_content, - ACTIONS(4383), 2, + ACTIONS(4365), 2, sym__word_no_digit, sym__digits, - STATE(1173), 5, + STATE(1163), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4377), 32, + ACTIONS(4359), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -106208,29 +106727,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [38754] = 9, - ACTIONS(4039), 1, + [39328] = 9, + ACTIONS(4031), 1, aux_sym__newline_token1, - ACTIONS(4401), 1, + ACTIONS(4377), 1, sym__whitespace_ge_2, - ACTIONS(4403), 1, + ACTIONS(4379), 1, aux_sym__whitespace_token1, - ACTIONS(4512), 1, + ACTIONS(4504), 1, sym__block_close, - ACTIONS(4514), 1, - sym__fenced_code_block_end_backtick, - STATE(2299), 1, + ACTIONS(4506), 1, + sym__fenced_code_block_end_tilde, + STATE(2300), 1, sym_code_fence_content, - ACTIONS(4405), 2, + ACTIONS(4381), 2, sym__word_no_digit, sym__digits, - STATE(1126), 5, + STATE(1158), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4399), 32, + ACTIONS(4375), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -106263,44 +106782,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [38818] = 13, - ACTIONS(41), 1, + [39392] = 9, + ACTIONS(4031), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4377), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4379), 1, aux_sym__whitespace_token1, - ACTIONS(4086), 1, - anon_sym_LT, - ACTIONS(4367), 1, - anon_sym_LPAREN, - STATE(1336), 1, - sym__soft_line_break, - STATE(1337), 1, - sym__whitespace, - STATE(2067), 1, - sym_link_destination, - STATE(2144), 1, - sym__newline, - ACTIONS(4078), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1267), 2, - sym__link_destination_parenthesis, - sym__word, - ACTIONS(4088), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(4512), 1, + sym__block_close, + ACTIONS(4514), 1, + sym__fenced_code_block_end_tilde, + STATE(2245), 1, + sym_code_fence_content, + ACTIONS(4381), 2, sym__word_no_digit, sym__digits, - ACTIONS(4074), 27, + STATE(1158), 5, + sym__text, + sym__whitespace, + sym__word, + sym__newline, + aux_sym_code_fence_content_repeat1, + ACTIONS(4375), 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, @@ -106309,11 +106822,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__, @@ -106322,38 +106837,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [38890] = 9, - ACTIONS(4041), 1, + [39456] = 13, + ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4379), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4381), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(4462), 1, - sym__block_close, - ACTIONS(4464), 1, - sym__fenced_code_block_end_tilde, - STATE(2312), 1, - sym_code_fence_content, - ACTIONS(4383), 2, - sym__word_no_digit, - sym__digits, - STATE(1173), 5, - sym__text, + ACTIONS(4090), 1, + anon_sym_LT, + ACTIONS(4345), 1, + anon_sym_LPAREN, + STATE(1357), 1, sym__whitespace, - sym__word, + STATE(1358), 1, + sym__soft_line_break, + STATE(2071), 1, + sym_link_destination, + STATE(2137), 1, sym__newline, - aux_sym_code_fence_content_repeat1, - ACTIONS(4377), 32, + ACTIONS(4082), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1229), 2, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(4092), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4078), 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, @@ -106362,13 +106883,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__, @@ -106377,38 +106896,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [38954] = 9, - ACTIONS(4039), 1, + [39528] = 13, + ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4401), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4403), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(4520), 1, - sym__block_close, - ACTIONS(4522), 1, - sym__fenced_code_block_end_backtick, - STATE(2155), 1, - sym_code_fence_content, - ACTIONS(4405), 2, - sym__word_no_digit, - sym__digits, - STATE(1126), 5, - sym__text, + ACTIONS(4090), 1, + anon_sym_LT, + ACTIONS(4345), 1, + anon_sym_LPAREN, + STATE(1359), 1, sym__whitespace, - sym__word, + STATE(1360), 1, + sym__soft_line_break, + STATE(2070), 1, + sym_link_destination, + STATE(2137), 1, sym__newline, - aux_sym_code_fence_content_repeat1, - ACTIONS(4399), 32, + ACTIONS(4082), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1229), 2, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(4092), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4078), 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, @@ -106417,13 +106942,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__, @@ -106432,29 +106955,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [39018] = 9, - ACTIONS(4041), 1, + [39600] = 9, + ACTIONS(4031), 1, aux_sym__newline_token1, - ACTIONS(4379), 1, + ACTIONS(4377), 1, sym__whitespace_ge_2, - ACTIONS(4381), 1, + ACTIONS(4379), 1, aux_sym__whitespace_token1, - ACTIONS(4520), 1, + ACTIONS(4508), 1, sym__block_close, - ACTIONS(4522), 1, + ACTIONS(4510), 1, sym__fenced_code_block_end_tilde, - STATE(2180), 1, + STATE(2149), 1, sym_code_fence_content, - ACTIONS(4383), 2, + ACTIONS(4381), 2, sym__word_no_digit, sym__digits, - STATE(1173), 5, + STATE(1158), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4377), 32, + ACTIONS(4375), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -106487,29 +107010,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [39082] = 9, - ACTIONS(4041), 1, + [39664] = 9, + ACTIONS(4031), 1, aux_sym__newline_token1, - ACTIONS(4379), 1, + ACTIONS(4377), 1, sym__whitespace_ge_2, - ACTIONS(4381), 1, + ACTIONS(4379), 1, aux_sym__whitespace_token1, - ACTIONS(4524), 1, + ACTIONS(4391), 1, sym__block_close, - ACTIONS(4526), 1, + ACTIONS(4393), 1, sym__fenced_code_block_end_tilde, - STATE(2322), 1, + STATE(2291), 1, sym_code_fence_content, - ACTIONS(4383), 2, + ACTIONS(4381), 2, sym__word_no_digit, sym__digits, - STATE(1173), 5, + STATE(1158), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4377), 32, + ACTIONS(4375), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -106542,29 +107065,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [39146] = 9, - ACTIONS(4039), 1, + [39728] = 9, + ACTIONS(4031), 1, aux_sym__newline_token1, - ACTIONS(4401), 1, + ACTIONS(4371), 1, + sym__block_close, + ACTIONS(4373), 1, + sym__fenced_code_block_end_tilde, + ACTIONS(4377), 1, sym__whitespace_ge_2, - ACTIONS(4403), 1, + ACTIONS(4379), 1, aux_sym__whitespace_token1, - ACTIONS(4524), 1, - sym__block_close, - ACTIONS(4526), 1, - sym__fenced_code_block_end_backtick, - STATE(2319), 1, + STATE(2145), 1, sym_code_fence_content, - ACTIONS(4405), 2, + ACTIONS(4381), 2, sym__word_no_digit, sym__digits, - STATE(1126), 5, + STATE(1158), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4399), 32, + ACTIONS(4375), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -106597,35 +107120,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [39210] = 9, - ACTIONS(4039), 1, - aux_sym__newline_token1, - ACTIONS(4401), 1, - sym__whitespace_ge_2, - ACTIONS(4403), 1, + [39792] = 4, + STATE(1078), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(399), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4528), 1, - sym__block_close, - ACTIONS(4530), 1, - sym__fenced_code_block_end_backtick, - STATE(2147), 1, - sym_code_fence_content, - ACTIONS(4405), 2, - sym__word_no_digit, - sym__digits, - STATE(1126), 5, - sym__text, - sym__whitespace, - sym__word, - sym__newline, - aux_sym_code_fence_content_repeat1, - ACTIONS(4399), 32, + ACTIONS(4469), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(397), 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, @@ -106643,7 +107155,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__, @@ -106652,29 +107163,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [39274] = 9, - ACTIONS(4041), 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, - ACTIONS(4379), 1, + [39846] = 9, + ACTIONS(4015), 1, + aux_sym__newline_token1, + ACTIONS(4361), 1, sym__whitespace_ge_2, - ACTIONS(4381), 1, + ACTIONS(4363), 1, aux_sym__whitespace_token1, - ACTIONS(4528), 1, + ACTIONS(4492), 1, sym__block_close, - ACTIONS(4530), 1, - sym__fenced_code_block_end_tilde, - STATE(2149), 1, + ACTIONS(4494), 1, + sym__fenced_code_block_end_backtick, + STATE(2254), 1, sym_code_fence_content, - ACTIONS(4383), 2, + ACTIONS(4365), 2, sym__word_no_digit, sym__digits, - STATE(1173), 5, + STATE(1163), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4377), 32, + ACTIONS(4359), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -106707,29 +107225,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [39338] = 9, - ACTIONS(4039), 1, + [39910] = 18, + ACTIONS(467), 1, + aux_sym__whitespace_token1, + ACTIONS(4160), 1, + sym__fenced_code_block_start_backtick, + ACTIONS(4162), 1, + sym__fenced_code_block_start_tilde, + ACTIONS(4516), 1, + aux_sym__html_block_1_token1, + ACTIONS(4518), 1, + anon_sym_LT_BANG_DASH_DASH, + ACTIONS(4520), 1, + anon_sym_LT_QMARK, + ACTIONS(4522), 1, + aux_sym__html_block_4_token1, + ACTIONS(4524), 1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(4526), 1, + aux_sym__html_block_6_token1, + ACTIONS(4528), 1, + aux_sym__html_block_6_token2, + ACTIONS(4530), 1, + sym__block_quote_start, + ACTIONS(4534), 1, + sym__thematic_break, + ACTIONS(4536), 1, + sym__blank_line_start, + ACTIONS(447), 2, + sym__split_token, + sym__soft_line_break_marker, + ACTIONS(465), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, + sym__whitespace_ge_2, aux_sym__newline_token1, - ACTIONS(4401), 1, + ACTIONS(4532), 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(4166), 7, + sym_setext_h1_underline, + sym_setext_h2_underline, + sym__list_marker_minus, + sym__list_marker_plus, + sym__list_marker_star, + sym__list_marker_parenthesis, + sym__list_marker_dot, + STATE(1832), 12, + sym__block_interrupt_paragraph, + sym_thematic_break, + sym_atx_heading, + 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, + sym__blank_line, + sym_block_quote, + [39992] = 9, + ACTIONS(4015), 1, + aux_sym__newline_token1, + ACTIONS(4361), 1, sym__whitespace_ge_2, - ACTIONS(4403), 1, + ACTIONS(4363), 1, aux_sym__whitespace_token1, - ACTIONS(4532), 1, + ACTIONS(4538), 1, sym__block_close, - ACTIONS(4534), 1, + ACTIONS(4540), 1, sym__fenced_code_block_end_backtick, - STATE(2238), 1, + STATE(2157), 1, sym_code_fence_content, - ACTIONS(4405), 2, + ACTIONS(4365), 2, sym__word_no_digit, sym__digits, - STATE(1126), 5, + STATE(1163), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4399), 32, + ACTIONS(4359), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -106762,84 +107344,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [39402] = 9, - ACTIONS(4041), 1, - aux_sym__newline_token1, - ACTIONS(4379), 1, - sym__whitespace_ge_2, - ACTIONS(4381), 1, + [40056] = 18, + ACTIONS(417), 1, aux_sym__whitespace_token1, - ACTIONS(4532), 1, - sym__block_close, + ACTIONS(4160), 1, + sym__fenced_code_block_start_backtick, + ACTIONS(4162), 1, + sym__fenced_code_block_start_tilde, + ACTIONS(4516), 1, + aux_sym__html_block_1_token1, + ACTIONS(4518), 1, + anon_sym_LT_BANG_DASH_DASH, + ACTIONS(4520), 1, + anon_sym_LT_QMARK, + ACTIONS(4522), 1, + aux_sym__html_block_4_token1, + ACTIONS(4524), 1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(4526), 1, + aux_sym__html_block_6_token1, + ACTIONS(4528), 1, + aux_sym__html_block_6_token2, + ACTIONS(4530), 1, + sym__block_quote_start, ACTIONS(4534), 1, - sym__fenced_code_block_end_tilde, - STATE(2240), 1, - sym_code_fence_content, - ACTIONS(4383), 2, - sym__word_no_digit, - sym__digits, - STATE(1173), 5, - sym__text, - sym__whitespace, - sym__word, - sym__newline, - aux_sym_code_fence_content_repeat1, - ACTIONS(4377), 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, + sym__thematic_break, + ACTIONS(4536), 1, + sym__blank_line_start, + ACTIONS(447), 2, + sym__split_token, + sym__soft_line_break_marker, + ACTIONS(415), 5, 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, - [39466] = 9, - ACTIONS(4041), 1, + sym__attribute_name, + sym__whitespace_ge_2, aux_sym__newline_token1, - ACTIONS(4379), 1, + ACTIONS(4532), 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(4156), 7, + sym_setext_h1_underline, + sym_setext_h2_underline, + sym__list_marker_minus, + sym__list_marker_plus, + sym__list_marker_star, + sym__list_marker_parenthesis, + sym__list_marker_dot, + STATE(1833), 12, + sym__block_interrupt_paragraph, + sym_thematic_break, + sym_atx_heading, + 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, + sym__blank_line, + sym_block_quote, + [40138] = 9, + ACTIONS(4015), 1, + aux_sym__newline_token1, + ACTIONS(4361), 1, sym__whitespace_ge_2, - ACTIONS(4381), 1, + ACTIONS(4363), 1, aux_sym__whitespace_token1, - ACTIONS(4536), 1, + ACTIONS(4542), 1, sym__block_close, - ACTIONS(4538), 1, - sym__fenced_code_block_end_tilde, - STATE(2316), 1, + ACTIONS(4544), 1, + sym__fenced_code_block_end_backtick, + STATE(2253), 1, sym_code_fence_content, - ACTIONS(4383), 2, + ACTIONS(4365), 2, sym__word_no_digit, sym__digits, - STATE(1173), 5, + STATE(1163), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4377), 32, + ACTIONS(4359), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -106872,29 +107463,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [39530] = 9, - ACTIONS(4039), 1, + [40202] = 9, + ACTIONS(4031), 1, aux_sym__newline_token1, - ACTIONS(4401), 1, + ACTIONS(4377), 1, sym__whitespace_ge_2, - ACTIONS(4403), 1, + ACTIONS(4379), 1, aux_sym__whitespace_token1, - ACTIONS(4540), 1, - sym__block_close, ACTIONS(4542), 1, - sym__fenced_code_block_end_backtick, - STATE(2244), 1, + sym__block_close, + ACTIONS(4544), 1, + sym__fenced_code_block_end_tilde, + STATE(2255), 1, sym_code_fence_content, - ACTIONS(4405), 2, + ACTIONS(4381), 2, sym__word_no_digit, sym__digits, - STATE(1126), 5, + STATE(1158), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4399), 32, + ACTIONS(4375), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -106927,29 +107518,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [39594] = 9, - ACTIONS(4039), 1, + [40266] = 9, + ACTIONS(4031), 1, aux_sym__newline_token1, - ACTIONS(4401), 1, + ACTIONS(4377), 1, sym__whitespace_ge_2, - ACTIONS(4403), 1, + ACTIONS(4379), 1, aux_sym__whitespace_token1, - ACTIONS(4544), 1, - sym__block_close, ACTIONS(4546), 1, - sym__fenced_code_block_end_backtick, - STATE(2157), 1, + sym__block_close, + ACTIONS(4548), 1, + sym__fenced_code_block_end_tilde, + STATE(2197), 1, sym_code_fence_content, - ACTIONS(4405), 2, + ACTIONS(4381), 2, sym__word_no_digit, sym__digits, - STATE(1126), 5, + STATE(1158), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4399), 32, + ACTIONS(4375), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -106982,29 +107573,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [39658] = 9, - ACTIONS(4041), 1, + [40330] = 9, + ACTIONS(4015), 1, aux_sym__newline_token1, - ACTIONS(4379), 1, + ACTIONS(4361), 1, sym__whitespace_ge_2, - ACTIONS(4381), 1, + ACTIONS(4363), 1, aux_sym__whitespace_token1, - ACTIONS(4544), 1, + ACTIONS(4550), 1, sym__block_close, - ACTIONS(4546), 1, - sym__fenced_code_block_end_tilde, - STATE(2159), 1, + ACTIONS(4552), 1, + sym__fenced_code_block_end_backtick, + STATE(2187), 1, sym_code_fence_content, - ACTIONS(4383), 2, + ACTIONS(4365), 2, sym__word_no_digit, sym__digits, - STATE(1173), 5, + STATE(1163), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4377), 32, + ACTIONS(4359), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -107037,29 +107628,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [39722] = 9, - ACTIONS(4039), 1, + [40394] = 9, + ACTIONS(4015), 1, aux_sym__newline_token1, - ACTIONS(4401), 1, + ACTIONS(4361), 1, sym__whitespace_ge_2, - ACTIONS(4403), 1, + ACTIONS(4363), 1, aux_sym__whitespace_token1, - ACTIONS(4536), 1, + ACTIONS(4554), 1, sym__block_close, - ACTIONS(4538), 1, + ACTIONS(4556), 1, sym__fenced_code_block_end_backtick, - STATE(2315), 1, + STATE(2202), 1, sym_code_fence_content, - ACTIONS(4405), 2, + ACTIONS(4365), 2, sym__word_no_digit, sym__digits, - STATE(1126), 5, + STATE(1163), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4399), 32, + ACTIONS(4359), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -107092,29 +107683,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [39786] = 9, - ACTIONS(4039), 1, + [40458] = 9, + ACTIONS(4031), 1, aux_sym__newline_token1, - ACTIONS(4401), 1, + ACTIONS(4377), 1, sym__whitespace_ge_2, - ACTIONS(4403), 1, + ACTIONS(4379), 1, aux_sym__whitespace_token1, - ACTIONS(4548), 1, - sym__block_close, ACTIONS(4550), 1, - sym__fenced_code_block_end_backtick, - STATE(2163), 1, + sym__block_close, + ACTIONS(4552), 1, + sym__fenced_code_block_end_tilde, + STATE(2184), 1, sym_code_fence_content, - ACTIONS(4405), 2, + ACTIONS(4381), 2, sym__word_no_digit, sym__digits, - STATE(1126), 5, + STATE(1158), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4399), 32, + ACTIONS(4375), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -107147,29 +107738,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [39850] = 9, - ACTIONS(4041), 1, + [40522] = 9, + ACTIONS(4031), 1, aux_sym__newline_token1, - ACTIONS(4379), 1, + ACTIONS(4377), 1, sym__whitespace_ge_2, - ACTIONS(4381), 1, + ACTIONS(4379), 1, aux_sym__whitespace_token1, - ACTIONS(4548), 1, + ACTIONS(4554), 1, sym__block_close, - ACTIONS(4550), 1, + ACTIONS(4556), 1, sym__fenced_code_block_end_tilde, - STATE(2165), 1, + STATE(2198), 1, sym_code_fence_content, - ACTIONS(4383), 2, + ACTIONS(4381), 2, sym__word_no_digit, sym__digits, - STATE(1173), 5, + STATE(1158), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4377), 32, + ACTIONS(4375), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -107202,93 +107793,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [39914] = 18, - ACTIONS(497), 1, - aux_sym__whitespace_token1, - ACTIONS(4112), 1, - sym__fenced_code_block_start_backtick, - ACTIONS(4114), 1, - sym__fenced_code_block_start_tilde, - ACTIONS(4440), 1, - aux_sym__html_block_1_token1, - ACTIONS(4442), 1, - anon_sym_LT_BANG_DASH_DASH, - ACTIONS(4444), 1, - anon_sym_LT_QMARK, - ACTIONS(4446), 1, - aux_sym__html_block_4_token1, - ACTIONS(4448), 1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(4450), 1, - aux_sym__html_block_6_token1, - ACTIONS(4452), 1, - aux_sym__html_block_6_token2, - ACTIONS(4454), 1, - sym__block_quote_start, - ACTIONS(4458), 1, - sym__thematic_break, - ACTIONS(4460), 1, - sym__blank_line_start, - ACTIONS(447), 2, - sym__split_token, - sym__soft_line_break_marker, - ACTIONS(495), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, - sym__whitespace_ge_2, - aux_sym__newline_token1, - ACTIONS(4456), 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(4118), 7, - sym_setext_h1_underline, - sym_setext_h2_underline, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - STATE(1844), 12, - sym__block_interrupt_paragraph, - sym_thematic_break, - sym_atx_heading, - 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, - sym__blank_line, - sym_block_quote, - [39996] = 9, - ACTIONS(4041), 1, + [40586] = 9, + ACTIONS(4031), 1, aux_sym__newline_token1, - ACTIONS(4379), 1, + ACTIONS(4377), 1, sym__whitespace_ge_2, - ACTIONS(4381), 1, + ACTIONS(4379), 1, aux_sym__whitespace_token1, - ACTIONS(4552), 1, + ACTIONS(4558), 1, sym__block_close, - ACTIONS(4554), 1, + ACTIONS(4560), 1, sym__fenced_code_block_end_tilde, - STATE(2310), 1, + STATE(2165), 1, sym_code_fence_content, - ACTIONS(4383), 2, + ACTIONS(4381), 2, sym__word_no_digit, sym__digits, - STATE(1173), 5, + STATE(1158), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4377), 32, + ACTIONS(4375), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -107321,29 +107848,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [40060] = 9, - ACTIONS(4039), 1, + [40650] = 9, + ACTIONS(4031), 1, aux_sym__newline_token1, - ACTIONS(4401), 1, + ACTIONS(4377), 1, sym__whitespace_ge_2, - ACTIONS(4403), 1, + ACTIONS(4379), 1, aux_sym__whitespace_token1, - ACTIONS(4552), 1, + ACTIONS(4399), 1, sym__block_close, - ACTIONS(4554), 1, - sym__fenced_code_block_end_backtick, - STATE(2307), 1, + ACTIONS(4401), 1, + sym__fenced_code_block_end_tilde, + STATE(2293), 1, sym_code_fence_content, - ACTIONS(4405), 2, + ACTIONS(4381), 2, sym__word_no_digit, sym__digits, - STATE(1126), 5, + STATE(1158), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4399), 32, + ACTIONS(4375), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -107376,29 +107903,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [40124] = 9, - ACTIONS(4039), 1, + [40714] = 9, + ACTIONS(4031), 1, aux_sym__newline_token1, - ACTIONS(4401), 1, + ACTIONS(4377), 1, sym__whitespace_ge_2, - ACTIONS(4403), 1, + ACTIONS(4379), 1, aux_sym__whitespace_token1, - ACTIONS(4556), 1, + ACTIONS(4538), 1, sym__block_close, - ACTIONS(4558), 1, - sym__fenced_code_block_end_backtick, - STATE(2195), 1, + ACTIONS(4540), 1, + sym__fenced_code_block_end_tilde, + STATE(2159), 1, sym_code_fence_content, - ACTIONS(4405), 2, + ACTIONS(4381), 2, sym__word_no_digit, sym__digits, - STATE(1126), 5, + STATE(1158), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4399), 32, + ACTIONS(4375), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -107431,29 +107958,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [40188] = 9, - ACTIONS(4041), 1, + [40778] = 9, + ACTIONS(4031), 1, aux_sym__newline_token1, - ACTIONS(4379), 1, + ACTIONS(4377), 1, sym__whitespace_ge_2, - ACTIONS(4381), 1, + ACTIONS(4379), 1, aux_sym__whitespace_token1, - ACTIONS(4556), 1, + ACTIONS(4445), 1, sym__block_close, - ACTIONS(4558), 1, + ACTIONS(4447), 1, sym__fenced_code_block_end_tilde, - STATE(2197), 1, + STATE(2218), 1, sym_code_fence_content, - ACTIONS(4383), 2, + ACTIONS(4381), 2, sym__word_no_digit, sym__digits, - STATE(1173), 5, + STATE(1158), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4377), 32, + ACTIONS(4375), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -107486,29 +108013,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [40252] = 9, - ACTIONS(4039), 1, + [40842] = 9, + ACTIONS(4015), 1, aux_sym__newline_token1, - ACTIONS(4401), 1, + ACTIONS(4361), 1, sym__whitespace_ge_2, - ACTIONS(4403), 1, + ACTIONS(4363), 1, aux_sym__whitespace_token1, - ACTIONS(4560), 1, + ACTIONS(4558), 1, sym__block_close, - ACTIONS(4562), 1, + ACTIONS(4560), 1, sym__fenced_code_block_end_backtick, - STATE(2205), 1, + STATE(2163), 1, sym_code_fence_content, - ACTIONS(4405), 2, + ACTIONS(4365), 2, sym__word_no_digit, sym__digits, - STATE(1126), 5, + STATE(1163), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4399), 32, + ACTIONS(4359), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -107541,29 +108068,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [40316] = 9, - ACTIONS(4041), 1, + [40906] = 9, + ACTIONS(4015), 1, aux_sym__newline_token1, - ACTIONS(4379), 1, + ACTIONS(4361), 1, sym__whitespace_ge_2, - ACTIONS(4381), 1, + ACTIONS(4363), 1, aux_sym__whitespace_token1, - ACTIONS(4560), 1, + ACTIONS(4546), 1, sym__block_close, - ACTIONS(4562), 1, - sym__fenced_code_block_end_tilde, - STATE(2207), 1, + ACTIONS(4548), 1, + sym__fenced_code_block_end_backtick, + STATE(2195), 1, sym_code_fence_content, - ACTIONS(4383), 2, + ACTIONS(4365), 2, sym__word_no_digit, sym__digits, - STATE(1173), 5, + STATE(1163), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4377), 32, + ACTIONS(4359), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -107596,38 +108123,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [40380] = 9, - ACTIONS(4041), 1, - aux_sym__newline_token1, - ACTIONS(4379), 1, - sym__whitespace_ge_2, - ACTIONS(4381), 1, - aux_sym__whitespace_token1, - ACTIONS(4564), 1, - sym__block_close, + [40970] = 7, ACTIONS(4566), 1, - sym__fenced_code_block_end_tilde, - STATE(2274), 1, - sym_code_fence_content, - ACTIONS(4383), 2, + anon_sym_LPAREN, + ACTIONS(4569), 1, + anon_sym_RPAREN, + ACTIONS(4575), 1, + sym__last_token_punctuation, + ACTIONS(4564), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(4572), 3, + sym_backslash_escape, sym__word_no_digit, sym__digits, - STATE(1173), 5, - sym__text, - sym__whitespace, + STATE(1995), 3, + sym__link_destination_parenthesis, sym__word, - sym__newline, - aux_sym_code_fence_content_repeat1, - ACTIONS(4377), 32, + aux_sym__link_destination_parenthesis_repeat1, + ACTIONS(4562), 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, @@ -107642,7 +108163,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__, @@ -107651,38 +108171,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [40444] = 9, - ACTIONS(4039), 1, - aux_sym__newline_token1, - ACTIONS(4401), 1, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, - ACTIONS(4403), 1, + aux_sym__newline_token1, + [41029] = 8, + ACTIONS(4322), 1, + sym__last_token_punctuation, + ACTIONS(4345), 1, + anon_sym_LPAREN, + ACTIONS(4585), 1, aux_sym__whitespace_token1, - ACTIONS(4568), 1, - sym__block_close, - ACTIONS(4570), 1, - sym__fenced_code_block_end_backtick, - STATE(2211), 1, - sym_code_fence_content, - ACTIONS(4405), 2, + ACTIONS(4579), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(4581), 3, + anon_sym_RPAREN, + sym__whitespace_ge_2, + aux_sym__newline_token1, + STATE(1188), 3, + sym__link_destination_parenthesis, + sym__word, + aux_sym_link_destination_repeat2, + ACTIONS(4583), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(1126), 5, - sym__text, - sym__whitespace, - sym__word, - sym__newline, - aux_sym_code_fence_content_repeat1, - ACTIONS(4399), 32, + ACTIONS(4577), 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, @@ -107697,7 +108220,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__, @@ -107706,35 +108228,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [40508] = 9, - ACTIONS(4041), 1, - aux_sym__newline_token1, - ACTIONS(4379), 1, - sym__whitespace_ge_2, - ACTIONS(4381), 1, + [41090] = 4, + STATE(1178), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(838), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4572), 1, - sym__block_close, - ACTIONS(4574), 1, - sym__fenced_code_block_end_tilde, - STATE(2261), 1, - sym_code_fence_content, - ACTIONS(4383), 2, - sym__word_no_digit, - sym__digits, - STATE(1173), 5, - sym__text, - sym__whitespace, - sym__word, - sym__newline, - aux_sym_code_fence_content_repeat1, - ACTIONS(4377), 32, + ACTIONS(4587), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(836), 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, @@ -107752,7 +108262,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__, @@ -107761,35 +108270,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [40572] = 9, - ACTIONS(4041), 1, - aux_sym__newline_token1, - ACTIONS(4379), 1, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, - ACTIONS(4381), 1, - aux_sym__whitespace_token1, - ACTIONS(4568), 1, - sym__block_close, - ACTIONS(4570), 1, - sym__fenced_code_block_end_tilde, - STATE(2145), 1, - sym_code_fence_content, - ACTIONS(4383), 2, sym__word_no_digit, sym__digits, - STATE(1173), 5, - sym__text, - sym__whitespace, - sym__word, - sym__newline, - aux_sym_code_fence_content_repeat1, - ACTIONS(4377), 32, + aux_sym__newline_token1, + [41143] = 4, + STATE(1146), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(876), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(4589), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(874), 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, @@ -107807,7 +108311,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__, @@ -107816,35 +108319,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [40636] = 9, - ACTIONS(4039), 1, - aux_sym__newline_token1, - ACTIONS(4401), 1, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, - ACTIONS(4403), 1, - aux_sym__whitespace_token1, - ACTIONS(4564), 1, - sym__block_close, - ACTIONS(4566), 1, - sym__fenced_code_block_end_backtick, - STATE(2267), 1, - sym_code_fence_content, - ACTIONS(4405), 2, sym__word_no_digit, sym__digits, - STATE(1126), 5, - sym__text, - sym__whitespace, - sym__word, - sym__newline, - aux_sym_code_fence_content_repeat1, - ACTIONS(4399), 32, + aux_sym__newline_token1, + [41196] = 4, + STATE(1178), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(876), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(4587), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(874), 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, @@ -107862,7 +108360,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__, @@ -107871,35 +108368,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [40700] = 9, - ACTIONS(4039), 1, - aux_sym__newline_token1, - ACTIONS(4401), 1, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, - ACTIONS(4403), 1, - aux_sym__whitespace_token1, - ACTIONS(4576), 1, - sym__block_close, - ACTIONS(4578), 1, - sym__fenced_code_block_end_backtick, - STATE(2243), 1, - sym_code_fence_content, - ACTIONS(4405), 2, sym__word_no_digit, sym__digits, - STATE(1126), 5, - sym__text, - sym__whitespace, - sym__word, - sym__newline, - aux_sym_code_fence_content_repeat1, - ACTIONS(4399), 32, + aux_sym__newline_token1, + [41249] = 4, + STATE(1147), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(893), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(4591), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(891), 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, @@ -107917,7 +108409,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__, @@ -107926,35 +108417,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [40764] = 9, - ACTIONS(4041), 1, - aux_sym__newline_token1, - ACTIONS(4379), 1, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, - ACTIONS(4381), 1, - aux_sym__whitespace_token1, - ACTIONS(4576), 1, - sym__block_close, - ACTIONS(4578), 1, - sym__fenced_code_block_end_tilde, - STATE(2245), 1, - sym_code_fence_content, - ACTIONS(4383), 2, sym__word_no_digit, sym__digits, - STATE(1173), 5, - sym__text, - sym__whitespace, - sym__word, - sym__newline, - aux_sym_code_fence_content_repeat1, - ACTIONS(4377), 32, + aux_sym__newline_token1, + [41302] = 4, + STATE(1178), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(893), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(4587), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(891), 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, @@ -107972,7 +108458,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__, @@ -107981,35 +108466,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [40828] = 9, - ACTIONS(4039), 1, - aux_sym__newline_token1, - ACTIONS(4389), 1, - sym__block_close, - ACTIONS(4391), 1, - sym__fenced_code_block_end_backtick, - ACTIONS(4401), 1, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, - ACTIONS(4403), 1, - aux_sym__whitespace_token1, - STATE(2253), 1, - sym_code_fence_content, - ACTIONS(4405), 2, sym__word_no_digit, sym__digits, - STATE(1126), 5, - sym__text, - sym__whitespace, - sym__word, - sym__newline, - aux_sym_code_fence_content_repeat1, - ACTIONS(4399), 32, + aux_sym__newline_token1, + [41355] = 4, + STATE(1148), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(852), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(4593), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(850), 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, @@ -108027,7 +108507,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__, @@ -108036,35 +108515,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [40892] = 9, - ACTIONS(4039), 1, - aux_sym__newline_token1, - ACTIONS(4401), 1, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, - ACTIONS(4403), 1, - aux_sym__whitespace_token1, - ACTIONS(4572), 1, - sym__block_close, - ACTIONS(4574), 1, - sym__fenced_code_block_end_backtick, - STATE(2259), 1, - sym_code_fence_content, - ACTIONS(4405), 2, sym__word_no_digit, sym__digits, - STATE(1126), 5, - sym__text, - sym__whitespace, - sym__word, - sym__newline, - aux_sym_code_fence_content_repeat1, - ACTIONS(4399), 32, + aux_sym__newline_token1, + [41408] = 4, + STATE(1178), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(852), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(4587), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(850), 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, @@ -108082,7 +108556,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__, @@ -108091,35 +108564,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [40956] = 9, - ACTIONS(4041), 1, - aux_sym__newline_token1, - ACTIONS(4379), 1, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, - ACTIONS(4381), 1, - aux_sym__whitespace_token1, - ACTIONS(4540), 1, - sym__block_close, - ACTIONS(4542), 1, - sym__fenced_code_block_end_tilde, - STATE(2252), 1, - sym_code_fence_content, - ACTIONS(4383), 2, sym__word_no_digit, sym__digits, - STATE(1173), 5, - sym__text, - sym__whitespace, - sym__word, - sym__newline, - aux_sym_code_fence_content_repeat1, - ACTIONS(4377), 32, + aux_sym__newline_token1, + [41461] = 4, + STATE(1149), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(828), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(4595), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(826), 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, @@ -108137,7 +108605,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__, @@ -108146,18 +108613,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [41020] = 4, - STATE(1143), 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, + [41514] = 4, + STATE(1178), 1, aux_sym__ignore_matching_tokens, - ACTIONS(953), 3, + ACTIONS(828), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4580), 3, + ACTIONS(4587), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(951), 37, + ACTIONS(826), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -108195,23 +108669,26 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [41073] = 4, - STATE(1161), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(789), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [41567] = 5, + ACTIONS(379), 1, aux_sym__whitespace_token1, - ACTIONS(4582), 3, + ACTIONS(4597), 1, + sym__line_ending, + STATE(1317), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(4599), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(787), 37, + ACTIONS(377), 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, @@ -108229,6 +108706,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__, @@ -108237,43 +108715,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, - [41126] = 9, - ACTIONS(4035), 1, - sym__whitespace_ge_2, - ACTIONS(4037), 1, - aux_sym__whitespace_token1, - ACTIONS(4375), 1, - aux_sym__newline_token1, - ACTIONS(4588), 1, - anon_sym_SQUOTE, - STATE(1412), 1, - sym__newline, - ACTIONS(4586), 2, + [41622] = 4, + STATE(1178), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(1063), 3, anon_sym_AMP, anon_sym_BSLASH, - STATE(1127), 3, - sym__whitespace, - sym__word, - aux_sym_link_title_repeat2, - ACTIONS(4590), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4584), 29, + aux_sym__whitespace_token1, + ACTIONS(4587), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(1061), 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, @@ -108298,37 +108761,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [41189] = 8, - ACTIONS(4340), 1, - sym__last_token_punctuation, - ACTIONS(4367), 1, - anon_sym_LPAREN, - ACTIONS(4600), 1, - aux_sym__whitespace_token1, - ACTIONS(4594), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(4596), 3, - anon_sym_RPAREN, - sym__whitespace_ge_2, - aux_sym__newline_token1, - STATE(1214), 3, - sym__link_destination_parenthesis, - sym__word, - aux_sym_link_destination_repeat2, - ACTIONS(4598), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, + sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - ACTIONS(4592), 28, + aux_sym__newline_token1, + [41675] = 4, + STATE(1152), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(633), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(4601), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(631), 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, @@ -108351,33 +108810,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [41250] = 8, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(4602), 1, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, - ACTIONS(4604), 1, - aux_sym__whitespace_token1, - ACTIONS(4608), 1, - sym__code_span_close, - STATE(2138), 1, - sym__newline, - ACTIONS(4606), 2, sym__word_no_digit, sym__digits, - STATE(1121), 5, - sym__soft_line_break, - sym__text, - sym__whitespace, - sym__word, - aux_sym__code_span_repeat1, - ACTIONS(2874), 32, + aux_sym__newline_token1, + [41728] = 4, + STATE(1145), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(838), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(4603), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(836), 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, @@ -108395,7 +108851,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__, @@ -108404,32 +108859,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [41311] = 7, - ACTIONS(4614), 1, - anon_sym_LPAREN, - ACTIONS(4617), 1, - anon_sym_RPAREN, - ACTIONS(4623), 1, - sym__last_token_punctuation, - ACTIONS(4612), 3, - anon_sym_AMP, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(4620), 3, sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - STATE(1977), 3, - sym__link_destination_parenthesis, - sym__word, - aux_sym__link_destination_parenthesis_repeat1, - ACTIONS(4610), 32, + aux_sym__newline_token1, + [41781] = 4, + STATE(1178), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(633), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(4587), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(631), 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, @@ -108452,39 +108908,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, sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, aux_sym__newline_token1, - [41370] = 9, - ACTIONS(4035), 1, + [41834] = 7, + ACTIONS(4608), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4611), 1, aux_sym__whitespace_token1, - ACTIONS(4375), 1, + ACTIONS(4617), 1, aux_sym__newline_token1, - ACTIONS(4588), 1, - anon_sym_DQUOTE, - STATE(1424), 1, - sym__newline, - ACTIONS(4627), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1124), 3, - sym__whitespace, - sym__word, - aux_sym_link_title_repeat1, - ACTIONS(4629), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(4614), 2, sym__word_no_digit, sym__digits, - ACTIONS(4625), 29, + ACTIONS(4620), 2, + sym__block_close, + sym__fenced_code_block_end_backtick, + STATE(1129), 5, + sym__text, + sym__whitespace, + sym__word, + sym__newline, + aux_sym_code_fence_content_repeat1, + ACTIONS(4605), 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, @@ -108502,6 +108958,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__, @@ -108510,32 +108967,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [41433] = 7, - ACTIONS(4635), 1, - anon_sym_LPAREN, - ACTIONS(4638), 1, - anon_sym_RPAREN, - ACTIONS(4644), 1, - sym__last_token_punctuation, - ACTIONS(4633), 3, + [41893] = 4, + STATE(1151), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(967), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4641), 3, - sym_backslash_escape, - sym__word_no_digit, - sym__digits, - STATE(1977), 3, - sym__link_destination_parenthesis, - sym__word, - aux_sym__link_destination_parenthesis_repeat1, - ACTIONS(4631), 32, + ACTIONS(4622), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(965), 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, @@ -108558,37 +109009,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, sym__whitespace_ge_2, - aux_sym__newline_token1, - [41492] = 8, - ACTIONS(4649), 1, - sym__whitespace_ge_2, - ACTIONS(4652), 1, - aux_sym__whitespace_token1, - ACTIONS(4658), 1, - aux_sym__newline_token1, - ACTIONS(4661), 1, - sym__code_span_close, - STATE(2138), 1, - sym__newline, - ACTIONS(4655), 2, sym__word_no_digit, sym__digits, - STATE(1121), 5, - sym__soft_line_break, - sym__text, - sym__whitespace, - sym__word, - aux_sym__code_span_repeat1, - ACTIONS(4646), 32, + aux_sym__newline_token1, + [41946] = 4, + STATE(1178), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(557), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(4587), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(555), 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, @@ -108606,7 +109050,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__, @@ -108615,18 +109058,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [41553] = 4, - STATE(1143), 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, + [41999] = 4, + STATE(1155), 1, aux_sym__ignore_matching_tokens, - ACTIONS(572), 3, + ACTIONS(792), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4580), 3, + ACTIONS(4624), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(570), 37, + ACTIONS(790), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -108664,18 +109114,18 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [41606] = 4, - STATE(1131), 1, + [42052] = 4, + STATE(1115), 1, aux_sym__ignore_matching_tokens, - ACTIONS(976), 3, + ACTIONS(798), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4663), 3, + ACTIONS(4626), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(974), 37, + ACTIONS(796), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -108713,32 +109163,69 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [41659] = 9, - ACTIONS(4668), 1, - anon_sym_DQUOTE, - ACTIONS(4676), 1, - sym__whitespace_ge_2, - ACTIONS(4679), 1, - aux_sym__whitespace_token1, - ACTIONS(4682), 1, - aux_sym__newline_token1, - STATE(1424), 1, - sym__newline, - ACTIONS(4670), 2, + [42105] = 4, + STATE(1117), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(804), 3, anon_sym_AMP, anon_sym_BSLASH, - STATE(1124), 3, - sym__whitespace, - sym__word, - aux_sym_link_title_repeat1, - ACTIONS(4673), 5, + aux_sym__whitespace_token1, + ACTIONS(4628), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(802), 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, - ACTIONS(4665), 29, + aux_sym__newline_token1, + [42158] = 4, + STATE(1119), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(810), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(4630), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(808), 37, anon_sym_BANG, + anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, @@ -108767,84 +109254,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [41722] = 7, - ACTIONS(4694), 1, - sym__whitespace_ge_2, - ACTIONS(4697), 1, - aux_sym__whitespace_token1, - ACTIONS(4700), 1, - aux_sym__newline_token1, - ACTIONS(4688), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1125), 4, - sym__text, - sym__whitespace, - sym__word, - aux_sym_info_string_repeat1, - ACTIONS(4691), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, + sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - ACTIONS(4685), 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, - [41781] = 7, - ACTIONS(4039), 1, aux_sym__newline_token1, - ACTIONS(4401), 1, - sym__whitespace_ge_2, - ACTIONS(4403), 1, + [42211] = 4, + STATE(1121), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(816), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4702), 2, - sym__word_no_digit, - sym__digits, - ACTIONS(4704), 2, - sym__block_close, - sym__fenced_code_block_end_backtick, - STATE(1130), 5, - sym__text, - sym__whitespace, - sym__word, - sym__newline, - aux_sym_code_fence_content_repeat1, - ACTIONS(4399), 32, + ACTIONS(4632), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(814), 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, @@ -108862,7 +109295,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__, @@ -108871,72 +109303,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [41840] = 9, - ACTIONS(4712), 1, - anon_sym_SQUOTE, - ACTIONS(4717), 1, - sym__whitespace_ge_2, - ACTIONS(4720), 1, - aux_sym__whitespace_token1, - ACTIONS(4723), 1, - aux_sym__newline_token1, - STATE(1412), 1, - sym__newline, - ACTIONS(4709), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1127), 3, - sym__whitespace, - sym__word, - aux_sym_link_title_repeat2, - ACTIONS(4714), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, + sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - ACTIONS(4706), 29, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - 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, - [41903] = 4, - STATE(1143), 1, + aux_sym__newline_token1, + [42264] = 4, + STATE(1123), 1, aux_sym__ignore_matching_tokens, - ACTIONS(576), 3, + ACTIONS(822), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4580), 3, + ACTIONS(4634), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(574), 37, + ACTIONS(820), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -108974,28 +109359,18 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [41956] = 7, - ACTIONS(4035), 1, - sym__whitespace_ge_2, - ACTIONS(4037), 1, - aux_sym__whitespace_token1, - ACTIONS(4732), 1, - aux_sym__newline_token1, - ACTIONS(4728), 2, + [42317] = 4, + STATE(1125), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(557), 3, anon_sym_AMP, anon_sym_BSLASH, - STATE(1125), 4, - sym__text, - sym__whitespace, - sym__word, - aux_sym_info_string_repeat1, - ACTIONS(4730), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4726), 30, + aux_sym__whitespace_token1, + ACTIONS(4636), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(555), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -109026,70 +109401,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [42015] = 7, - ACTIONS(4737), 1, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, - ACTIONS(4740), 1, - aux_sym__whitespace_token1, - ACTIONS(4746), 1, - aux_sym__newline_token1, - ACTIONS(4743), 2, sym__word_no_digit, sym__digits, - ACTIONS(4749), 2, - sym__block_close, - sym__fenced_code_block_end_backtick, - STATE(1130), 5, - sym__text, - sym__whitespace, - sym__word, - sym__newline, - aux_sym_code_fence_content_repeat1, - ACTIONS(4734), 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, - [42074] = 4, - STATE(1143), 1, + aux_sym__newline_token1, + [42370] = 4, + STATE(1178), 1, aux_sym__ignore_matching_tokens, - ACTIONS(986), 3, + ACTIONS(967), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4580), 3, + ACTIONS(4587), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(984), 37, + ACTIONS(965), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -109127,18 +109457,18 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [42127] = 4, - STATE(1143), 1, + [42423] = 4, + STATE(1128), 1, aux_sym__ignore_matching_tokens, - ACTIONS(864), 3, + ACTIONS(856), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4580), 3, + ACTIONS(4638), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(862), 37, + ACTIONS(854), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -109176,18 +109506,18 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [42180] = 4, - STATE(1147), 1, + [42476] = 4, + STATE(1178), 1, aux_sym__ignore_matching_tokens, - ACTIONS(986), 3, + ACTIONS(856), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4751), 3, + ACTIONS(4587), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(984), 37, + ACTIONS(854), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -109225,32 +109555,20 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [42233] = 9, - ACTIONS(4035), 1, - sym__whitespace_ge_2, - ACTIONS(4037), 1, - aux_sym__whitespace_token1, - ACTIONS(4375), 1, - aux_sym__newline_token1, - ACTIONS(4753), 1, - anon_sym_DQUOTE, - STATE(1424), 1, - sym__newline, - ACTIONS(4627), 2, + [42529] = 4, + STATE(1131), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(899), 3, anon_sym_AMP, anon_sym_BSLASH, - STATE(1119), 3, - sym__whitespace, - sym__word, - aux_sym_link_title_repeat1, - ACTIONS(4755), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4625), 29, + aux_sym__whitespace_token1, + ACTIONS(4640), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(897), 37, anon_sym_BANG, + anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, @@ -109279,36 +109597,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [42296] = 9, - ACTIONS(4035), 1, - sym__whitespace_ge_2, - ACTIONS(4037), 1, - aux_sym__whitespace_token1, - ACTIONS(4375), 1, - aux_sym__newline_token1, - ACTIONS(4753), 1, - anon_sym_SQUOTE, - STATE(1412), 1, - sym__newline, - ACTIONS(4586), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1115), 3, - sym__whitespace, - sym__word, - aux_sym_link_title_repeat2, - ACTIONS(4757), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, + sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - ACTIONS(4584), 29, + aux_sym__newline_token1, + [42582] = 5, + ACTIONS(379), 1, + aux_sym__whitespace_token1, + ACTIONS(4642), 1, + sym__line_ending, + STATE(1270), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(4644), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(377), 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, @@ -109325,6 +109641,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__, @@ -109333,18 +109650,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [42359] = 4, - STATE(1113), 1, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [42637] = 4, + STATE(1178), 1, aux_sym__ignore_matching_tokens, - ACTIONS(1107), 3, + ACTIONS(899), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4759), 3, + ACTIONS(4587), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1105), 37, + ACTIONS(897), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -109382,33 +109703,23 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [42412] = 8, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(4602), 1, - sym__whitespace_ge_2, - ACTIONS(4604), 1, + [42690] = 4, + STATE(1178), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(889), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4761), 1, - sym__code_span_close, - STATE(2138), 1, - sym__newline, - ACTIONS(4606), 2, - sym__word_no_digit, - sym__digits, - STATE(1121), 5, - sym__soft_line_break, - sym__text, - sym__whitespace, - sym__word, - aux_sym__code_span_repeat1, - ACTIONS(2874), 32, + ACTIONS(4587), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(887), 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, @@ -109426,7 +109737,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__, @@ -109435,18 +109745,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [42473] = 4, - STATE(1163), 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, + [42743] = 4, + STATE(1178), 1, aux_sym__ignore_matching_tokens, - ACTIONS(1101), 3, + ACTIONS(882), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4763), 3, + ACTIONS(4587), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1099), 37, + ACTIONS(880), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -109484,18 +109801,18 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [42526] = 4, - STATE(1167), 1, + [42796] = 4, + STATE(1178), 1, aux_sym__ignore_matching_tokens, - ACTIONS(1095), 3, + ACTIONS(872), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4765), 3, + ACTIONS(4587), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1093), 37, + ACTIONS(870), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -109533,18 +109850,18 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [42579] = 4, - STATE(1132), 1, + [42849] = 4, + STATE(1178), 1, aux_sym__ignore_matching_tokens, - ACTIONS(1089), 3, + ACTIONS(866), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4767), 3, + ACTIONS(4587), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1087), 37, + ACTIONS(864), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -109582,18 +109899,18 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [42632] = 4, - STATE(1158), 1, + [42902] = 4, + STATE(1178), 1, aux_sym__ignore_matching_tokens, - ACTIONS(1083), 3, + ACTIONS(862), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4769), 3, + ACTIONS(4587), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1081), 37, + ACTIONS(860), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -109631,18 +109948,18 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [42685] = 4, - STATE(1143), 1, + [42955] = 4, + STATE(1141), 1, aux_sym__ignore_matching_tokens, - ACTIONS(409), 3, + ACTIONS(961), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4580), 3, + ACTIONS(4646), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(407), 37, + ACTIONS(959), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -109680,18 +109997,18 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [42738] = 4, - STATE(1143), 1, + [43008] = 4, + STATE(1178), 1, aux_sym__ignore_matching_tokens, - ACTIONS(399), 3, + ACTIONS(943), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4771), 3, + ACTIONS(4587), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(397), 37, + ACTIONS(941), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -109729,18 +110046,18 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [42791] = 4, - STATE(1143), 1, + [43061] = 4, + STATE(1178), 1, aux_sym__ignore_matching_tokens, - ACTIONS(391), 3, + ACTIONS(782), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4580), 3, + ACTIONS(4587), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(389), 37, + ACTIONS(780), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -109778,18 +110095,18 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [42844] = 4, - STATE(1142), 1, + [43114] = 4, + STATE(1139), 1, aux_sym__ignore_matching_tokens, - ACTIONS(391), 3, + ACTIONS(1063), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4774), 3, + ACTIONS(4648), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(389), 37, + ACTIONS(1061), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -109827,18 +110144,18 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [42897] = 4, - STATE(1177), 1, + [43167] = 4, + STATE(1144), 1, aux_sym__ignore_matching_tokens, - ACTIONS(1077), 3, + ACTIONS(832), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4776), 3, + ACTIONS(4650), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1075), 37, + ACTIONS(830), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -109876,18 +110193,18 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [42950] = 4, - STATE(1143), 1, + [43220] = 4, + STATE(1178), 1, aux_sym__ignore_matching_tokens, - ACTIONS(1000), 3, + ACTIONS(832), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4580), 3, + ACTIONS(4587), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(998), 37, + ACTIONS(830), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -109925,127 +110242,35 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [43003] = 4, - STATE(1122), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(1000), 3, - anon_sym_AMP, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(4778), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(998), 37, - anon_sym_BANG, + [43273] = 9, + ACTIONS(4655), 1, 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, - [43056] = 7, - ACTIONS(4784), 1, + ACTIONS(4663), 1, sym__whitespace_ge_2, - ACTIONS(4787), 1, + ACTIONS(4666), 1, aux_sym__whitespace_token1, - ACTIONS(4790), 1, + ACTIONS(4669), 1, aux_sym__newline_token1, - STATE(2144), 1, + STATE(1486), 1, sym__newline, - ACTIONS(4782), 2, + ACTIONS(4657), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1149), 3, - sym__soft_line_break, + STATE(1156), 3, sym__whitespace, - aux_sym_inline_link_repeat1, - ACTIONS(4780), 35, - 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__word, + aux_sym_link_title_repeat1, + ACTIONS(4660), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - [43115] = 5, - ACTIONS(4793), 1, - sym__line_ending, - STATE(1283), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(379), 2, - anon_sym_RBRACK, - aux_sym__whitespace_token1, - ACTIONS(4795), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(377), 37, - sym__block_close, + ACTIONS(4652), 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, @@ -110063,7 +110288,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, @@ -110071,25 +110296,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_RBRACK_RBRACK_GT, + [43336] = 7, + ACTIONS(4675), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [43170] = 5, - ACTIONS(379), 1, + ACTIONS(4678), 1, aux_sym__whitespace_token1, - ACTIONS(4797), 1, - sym__line_ending, - STATE(1195), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(4799), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(377), 38, + ACTIONS(4684), 1, + aux_sym__newline_token1, + ACTIONS(4620), 2, sym__block_close, sym__fenced_code_block_end_tilde, + ACTIONS(4681), 2, + sym__word_no_digit, + sym__digits, + STATE(1157), 5, + sym__text, + sym__whitespace, + sym__word, + sym__newline, + aux_sym_code_fence_content_repeat1, + ACTIONS(4672), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -110122,24 +110348,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + [43395] = 7, + ACTIONS(4031), 1, + aux_sym__newline_token1, + ACTIONS(4377), 1, sym__whitespace_ge_2, + ACTIONS(4379), 1, + aux_sym__whitespace_token1, + ACTIONS(4687), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [43225] = 5, - ACTIONS(4801), 1, - sym__line_ending, - STATE(1287), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(379), 2, - anon_sym_QMARK, - aux_sym__whitespace_token1, - ACTIONS(4803), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(377), 37, + ACTIONS(4689), 2, sym__block_close, + sym__fenced_code_block_end_tilde, + STATE(1157), 5, + sym__text, + sym__whitespace, + sym__word, + sym__newline, + aux_sym_code_fence_content_repeat1, + ACTIONS(4375), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -110160,6 +110388,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, @@ -110171,37 +110400,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_QMARK_GT, + [43454] = 7, + ACTIONS(4695), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [43280] = 5, - ACTIONS(4805), 1, - sym__line_ending, - STATE(1291), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(379), 2, - anon_sym_DASH, + ACTIONS(4698), 1, aux_sym__whitespace_token1, - ACTIONS(4807), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(377), 37, - sym__block_close, + ACTIONS(4701), 1, + aux_sym__newline_token1, + STATE(2137), 1, + sym__newline, + ACTIONS(4693), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1159), 3, + sym__soft_line_break, + sym__whitespace, + aux_sym_inline_link_repeat1, + ACTIONS(4691), 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, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -110212,7 +110439,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__, @@ -110221,20 +110447,32 @@ 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_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [43335] = 2, - ACTIONS(2959), 3, - anon_sym_LT, - anon_sym_BSLASH, + [43513] = 8, + ACTIONS(4707), 1, + sym__whitespace_ge_2, + ACTIONS(4710), 1, aux_sym__whitespace_token1, - ACTIONS(2957), 41, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, + ACTIONS(4716), 1, + aux_sym__newline_token1, + ACTIONS(4719), 1, + sym__code_span_close, + STATE(2129), 1, + sym__newline, + ACTIONS(4713), 2, + sym__word_no_digit, + sym__digits, + STATE(1160), 5, + sym__soft_line_break, + sym__text, + sym__whitespace, + sym__word, + aux_sym__code_span_repeat1, + ACTIONS(4704), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -110252,10 +110490,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__, @@ -110264,24 +110505,15 @@ 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, - [43384] = 5, - ACTIONS(4809), 1, + [43574] = 5, + ACTIONS(4721), 1, sym__line_ending, - STATE(1296), 1, + STATE(1265), 1, aux_sym__ignore_matching_tokens, ACTIONS(379), 2, anon_sym_LT, aux_sym__whitespace_token1, - ACTIONS(4811), 3, + ACTIONS(4723), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, @@ -110323,67 +110555,28 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [43439] = 4, - STATE(1128), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(953), 3, + [43629] = 7, + ACTIONS(4734), 1, + sym__whitespace_ge_2, + ACTIONS(4737), 1, + aux_sym__whitespace_token1, + ACTIONS(4740), 1, + aux_sym__newline_token1, + ACTIONS(4728), 2, anon_sym_AMP, anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(4813), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(951), 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, + STATE(1162), 4, + sym__text, + sym__whitespace, + sym__word, + aux_sym_info_string_repeat1, + ACTIONS(4731), 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, - [43492] = 4, - STATE(1179), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(864), 3, - anon_sym_AMP, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(4815), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(862), 37, + ACTIONS(4725), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -110414,30 +110607,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, + [43688] = 7, + ACTIONS(4015), 1, + aux_sym__newline_token1, + ACTIONS(4361), 1, sym__whitespace_ge_2, + ACTIONS(4363), 1, + aux_sym__whitespace_token1, + ACTIONS(4689), 2, + sym__block_close, + sym__fenced_code_block_end_backtick, + ACTIONS(4742), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [43545] = 4, - STATE(1143), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(823), 3, - anon_sym_AMP, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(4580), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(821), 37, + STATE(1129), 5, + sym__text, + sym__whitespace, + sym__word, + sym__newline, + aux_sym_code_fence_content_repeat1, + ACTIONS(4359), 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, @@ -110455,6 +110650,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__, @@ -110463,30 +110659,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, - [43598] = 4, - STATE(1143), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(697), 3, - anon_sym_AMP, + [43747] = 2, + ACTIONS(2942), 3, + anon_sym_LT, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4580), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(695), 37, + ACTIONS(2940), 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, @@ -110498,12 +110685,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__, @@ -110512,25 +110697,37 @@ 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, aux_sym__newline_token1, - [43651] = 4, - STATE(1159), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(765), 3, + [43796] = 7, + ACTIONS(4011), 1, + sym__whitespace_ge_2, + ACTIONS(4013), 1, + aux_sym__whitespace_token1, + ACTIONS(4750), 1, + aux_sym__newline_token1, + ACTIONS(4746), 2, anon_sym_AMP, anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(4817), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(763), 37, + STATE(1162), 4, + sym__text, + sym__whitespace, + sym__word, + aux_sym_info_string_repeat1, + ACTIONS(4748), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4744), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -110561,37 +110758,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, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [43704] = 4, - STATE(1143), 1, + [43855] = 5, + ACTIONS(4752), 1, + sym__line_ending, + STATE(1259), 1, aux_sym__ignore_matching_tokens, - ACTIONS(765), 3, - anon_sym_AMP, - anon_sym_BSLASH, + ACTIONS(379), 2, + anon_sym_DASH, aux_sym__whitespace_token1, - ACTIONS(4580), 3, + ACTIONS(4754), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(763), 37, + ACTIONS(377), 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, @@ -110602,6 +110794,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__, @@ -110610,34 +110803,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, + anon_sym_DASH_DASH_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [43757] = 8, + [43910] = 8, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4602), 1, + ACTIONS(4756), 1, sym__whitespace_ge_2, - ACTIONS(4604), 1, + ACTIONS(4758), 1, aux_sym__whitespace_token1, - ACTIONS(4819), 1, + ACTIONS(4762), 1, sym__code_span_close, - STATE(2138), 1, + STATE(2129), 1, sym__newline, - ACTIONS(4606), 2, + ACTIONS(4760), 2, sym__word_no_digit, sym__digits, - STATE(1121), 5, + STATE(1160), 5, sym__soft_line_break, sym__text, sym__whitespace, sym__word, aux_sym__code_span_repeat1, - ACTIONS(2874), 32, + ACTIONS(2855), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -110670,23 +110861,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [43818] = 4, - STATE(1143), 1, + [43971] = 5, + ACTIONS(4764), 1, + sym__line_ending, + STATE(1253), 1, aux_sym__ignore_matching_tokens, - ACTIONS(935), 3, - anon_sym_AMP, - anon_sym_BSLASH, + ACTIONS(379), 2, + anon_sym_QMARK, aux_sym__whitespace_token1, - ACTIONS(4580), 3, + ACTIONS(4766), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(933), 37, + ACTIONS(377), 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, @@ -110701,9 +110895,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__, @@ -110712,25 +110906,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, + anon_sym_QMARK_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [43871] = 4, - STATE(1185), 1, + [44026] = 4, + STATE(1178), 1, aux_sym__ignore_matching_tokens, - ACTIONS(935), 3, + ACTIONS(399), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4821), 3, + ACTIONS(4587), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(933), 37, + ACTIONS(397), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -110768,20 +110960,20 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [43924] = 5, - ACTIONS(379), 1, - aux_sym__whitespace_token1, - ACTIONS(4823), 1, + [44079] = 5, + ACTIONS(4768), 1, sym__line_ending, - STATE(1278), 1, + STATE(1248), 1, aux_sym__ignore_matching_tokens, - ACTIONS(4825), 3, + ACTIONS(379), 2, + anon_sym_RBRACK, + aux_sym__whitespace_token1, + ACTIONS(4770), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(377), 38, + ACTIONS(377), 37, sym__block_close, - sym__blank_line_start, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -110806,7 +110998,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, @@ -110814,79 +111005,31 @@ 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, - [43979] = 7, - ACTIONS(4035), 1, - sym__whitespace_ge_2, - ACTIONS(4037), 1, + [44134] = 5, + ACTIONS(379), 1, aux_sym__whitespace_token1, - ACTIONS(4827), 1, - aux_sym__newline_token1, - ACTIONS(4728), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1125), 4, - sym__text, - sym__whitespace, - sym__word, - aux_sym_info_string_repeat1, - ACTIONS(4730), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4726), 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, - [44038] = 4, - STATE(1143), 1, + ACTIONS(4772), 1, + sym__line_ending, + STATE(1241), 1, aux_sym__ignore_matching_tokens, - ACTIONS(872), 3, - anon_sym_AMP, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(4580), 3, + ACTIONS(4774), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(870), 37, + ACTIONS(377), 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, @@ -110904,6 +111047,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__, @@ -110912,30 +111056,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, - [44091] = 4, - STATE(1143), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(789), 3, - anon_sym_AMP, + [44189] = 2, + ACTIONS(4212), 3, + anon_sym_LT, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4580), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(787), 37, + ACTIONS(4210), 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, @@ -110947,12 +111086,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__, @@ -110961,35 +111098,37 @@ 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, aux_sym__newline_token1, - [44144] = 7, - ACTIONS(4035), 1, + [44238] = 7, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(4827), 1, + ACTIONS(4778), 1, aux_sym__newline_token1, - ACTIONS(4728), 2, + ACTIONS(4746), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1129), 4, + STATE(1165), 4, sym__text, sym__whitespace, sym__word, aux_sym_info_string_repeat1, - ACTIONS(4829), 5, + ACTIONS(4776), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4726), 30, + ACTIONS(4744), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -111020,18 +111159,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [44203] = 4, - STATE(1143), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(813), 3, + [44297] = 7, + ACTIONS(4011), 1, + sym__whitespace_ge_2, + ACTIONS(4013), 1, + aux_sym__whitespace_token1, + ACTIONS(4778), 1, + aux_sym__newline_token1, + ACTIONS(4746), 2, anon_sym_AMP, anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(4580), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(811), 37, + STATE(1162), 4, + sym__text, + sym__whitespace, + sym__word, + aux_sym_info_string_repeat1, + ACTIONS(4748), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4744), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -111062,30 +111211,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, + [44356] = 8, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(4756), 1, sym__whitespace_ge_2, + ACTIONS(4758), 1, + aux_sym__whitespace_token1, + ACTIONS(4780), 1, + sym__code_span_close, + STATE(2129), 1, + sym__newline, + ACTIONS(4760), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [44256] = 4, - STATE(1168), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(813), 3, - anon_sym_AMP, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(4831), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(811), 37, + STATE(1160), 5, + sym__soft_line_break, + sym__text, + sym__whitespace, + sym__word, + aux_sym__code_span_repeat1, + ACTIONS(2855), 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, @@ -111103,6 +111255,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__, @@ -111111,31 +111264,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + [44417] = 9, + ACTIONS(4011), 1, + sym__whitespace_ge_2, + ACTIONS(4013), 1, + aux_sym__whitespace_token1, + ACTIONS(4353), 1, + aux_sym__newline_token1, + ACTIONS(4786), 1, + anon_sym_SQUOTE, + STATE(1496), 1, + sym__newline, + ACTIONS(4784), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1182), 3, + sym__whitespace, + sym__word, + aux_sym_link_title_repeat2, + ACTIONS(4788), 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, - [44309] = 4, - STATE(1170), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(683), 3, - anon_sym_AMP, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(4833), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(681), 37, + ACTIONS(4782), 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, @@ -111160,39 +111318,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + [44480] = 9, + ACTIONS(4011), 1, + sym__whitespace_ge_2, + ACTIONS(4013), 1, + aux_sym__whitespace_token1, + ACTIONS(4353), 1, + aux_sym__newline_token1, + ACTIONS(4786), 1, + anon_sym_DQUOTE, + STATE(1486), 1, + sym__newline, + ACTIONS(4792), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1180), 3, + sym__whitespace, + sym__word, + aux_sym_link_title_repeat1, + ACTIONS(4794), 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, - [44362] = 7, - ACTIONS(4041), 1, - aux_sym__newline_token1, - ACTIONS(4379), 1, - sym__whitespace_ge_2, - ACTIONS(4381), 1, - aux_sym__whitespace_token1, - ACTIONS(4704), 2, - sym__block_close, - sym__fenced_code_block_end_tilde, - ACTIONS(4835), 2, - sym__word_no_digit, - sym__digits, - STATE(1181), 5, - sym__text, - sym__whitespace, - sym__word, - sym__newline, - aux_sym_code_fence_content_repeat1, - ACTIONS(4377), 32, + ACTIONS(4790), 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, @@ -111210,7 +111364,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__, @@ -111219,18 +111372,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [44421] = 4, + [44543] = 4, STATE(1178), 1, aux_sym__ignore_matching_tokens, - ACTIONS(823), 3, + ACTIONS(405), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4837), 3, + ACTIONS(4796), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(821), 37, + ACTIONS(403), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -111268,24 +111421,32 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [44474] = 2, - ACTIONS(4200), 3, - anon_sym_LT, + [44596] = 7, + ACTIONS(4803), 1, + anon_sym_LPAREN, + ACTIONS(4806), 1, + anon_sym_RPAREN, + ACTIONS(4812), 1, + sym__last_token_punctuation, + ACTIONS(4801), 3, + anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4198), 41, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, + ACTIONS(4809), 3, + sym_backslash_escape, + sym__word_no_digit, + sym__digits, + STATE(1995), 3, + sym__link_destination_parenthesis, + sym__word, + aux_sym__link_destination_parenthesis_repeat1, + ACTIONS(4799), 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, @@ -111294,10 +111455,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_RBRACK, anon_sym_CARET, anon_sym__, @@ -111306,35 +111469,39 @@ 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, aux_sym__newline_token1, - [44523] = 5, - ACTIONS(379), 1, + [44655] = 9, + ACTIONS(4011), 1, + sym__whitespace_ge_2, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(4839), 1, - sym__line_ending, - STATE(1317), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(4841), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(377), 38, - sym__block_close, - sym__fenced_code_block_end_backtick, - anon_sym_BANG, + ACTIONS(4353), 1, + aux_sym__newline_token1, + ACTIONS(4814), 1, anon_sym_DQUOTE, + STATE(1486), 1, + sym__newline, + ACTIONS(4792), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1156), 3, + sym__whitespace, + sym__word, + aux_sym_link_title_repeat1, + ACTIONS(4816), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4790), 29, + anon_sym_BANG, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111352,7 +111519,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__, @@ -111361,28 +111527,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + [44718] = 9, + ACTIONS(4824), 1, + anon_sym_SQUOTE, + ACTIONS(4829), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, + ACTIONS(4832), 1, + aux_sym__whitespace_token1, + ACTIONS(4835), 1, aux_sym__newline_token1, - [44578] = 4, - STATE(1143), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(801), 3, + STATE(1496), 1, + sym__newline, + ACTIONS(4821), 2, anon_sym_AMP, anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(4580), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(799), 37, + STATE(1181), 3, + sym__whitespace, + sym__word, + aux_sym_link_title_repeat2, + ACTIONS(4826), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4818), 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, @@ -111407,31 +111581,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + [44781] = 9, + ACTIONS(4011), 1, + sym__whitespace_ge_2, + ACTIONS(4013), 1, + aux_sym__whitespace_token1, + ACTIONS(4353), 1, + aux_sym__newline_token1, + ACTIONS(4814), 1, + anon_sym_SQUOTE, + STATE(1496), 1, + sym__newline, + ACTIONS(4784), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1181), 3, + sym__whitespace, + sym__word, + aux_sym_link_title_repeat2, + ACTIONS(4838), 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, - [44631] = 4, - STATE(1143), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(679), 3, - anon_sym_AMP, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(4580), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(677), 37, + ACTIONS(4782), 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, @@ -111456,30 +111635,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, + [44844] = 8, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(4756), 1, sym__whitespace_ge_2, + ACTIONS(4758), 1, + aux_sym__whitespace_token1, + ACTIONS(4840), 1, + sym__code_span_close, + STATE(2129), 1, + sym__newline, + ACTIONS(4760), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [44684] = 4, - STATE(1143), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(622), 3, - anon_sym_AMP, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(4580), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(620), 37, + STATE(1160), 5, + sym__soft_line_break, + sym__text, + sym__whitespace, + sym__word, + aux_sym__code_span_repeat1, + ACTIONS(2855), 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, @@ -111497,6 +111679,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__, @@ -111505,25 +111688,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, - [44737] = 4, - STATE(1143), 1, + [44905] = 4, + STATE(1169), 1, aux_sym__ignore_matching_tokens, - ACTIONS(618), 3, + ACTIONS(391), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4580), 3, + ACTIONS(4842), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(616), 37, + ACTIONS(389), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -111561,32 +111737,23 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [44790] = 7, - ACTIONS(4846), 1, - sym__whitespace_ge_2, - ACTIONS(4849), 1, + [44958] = 4, + STATE(1178), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(391), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4855), 1, - aux_sym__newline_token1, - ACTIONS(4749), 2, - sym__block_close, - sym__fenced_code_block_end_tilde, - ACTIONS(4852), 2, - sym__word_no_digit, - sym__digits, - STATE(1181), 5, - sym__text, - sym__whitespace, - sym__word, - sym__newline, - aux_sym_code_fence_content_repeat1, - ACTIONS(4843), 32, + ACTIONS(4587), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(389), 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, @@ -111604,7 +111771,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__, @@ -111613,23 +111779,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [44849] = 4, - STATE(1180), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(872), 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, + [45011] = 9, + ACTIONS(4846), 1, + anon_sym_LT, + ACTIONS(4848), 1, + aux_sym__html_block_1_token2, + ACTIONS(4850), 1, + sym__whitespace_ge_2, + ACTIONS(4852), 1, aux_sym__whitespace_token1, - ACTIONS(4858), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(870), 37, + ACTIONS(4856), 1, + aux_sym__newline_token1, + ACTIONS(4858), 1, + sym__block_close, + ACTIONS(4854), 2, + sym__word_no_digit, + sym__digits, + STATE(1287), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_1_repeat1, + ACTIONS(4844), 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, @@ -111641,12 +111825,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__, @@ -111655,37 +111839,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, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [44902] = 4, - STATE(1143), 1, + [45073] = 4, + STATE(1258), 1, aux_sym__ignore_matching_tokens, - ACTIONS(683), 3, - anon_sym_AMP, - anon_sym_BSLASH, + ACTIONS(399), 2, + anon_sym_DASH, aux_sym__whitespace_token1, - ACTIONS(4580), 3, + ACTIONS(4860), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(681), 37, + ACTIONS(397), 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, @@ -111696,6 +111873,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__, @@ -111704,33 +111882,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, + anon_sym_DASH_DASH_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [44955] = 4, - STATE(1183), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(801), 3, + [45125] = 7, + ACTIONS(4345), 1, + anon_sym_LPAREN, + ACTIONS(4866), 1, + aux_sym__whitespace_token1, + ACTIONS(4579), 2, anon_sym_AMP, anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(4860), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(799), 37, + ACTIONS(4862), 3, + anon_sym_RPAREN, + sym__whitespace_ge_2, + aux_sym__newline_token1, + STATE(1283), 3, + sym__link_destination_parenthesis, + sym__word, + aux_sym_link_destination_repeat2, + ACTIONS(4864), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4577), 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, @@ -111753,37 +111938,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, + [45183] = 9, + ACTIONS(1628), 1, + aux_sym__newline_token1, + ACTIONS(4870), 1, + anon_sym_DASH, + ACTIONS(4872), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4874), 1, sym__whitespace_ge_2, + ACTIONS(4876), 1, + aux_sym__whitespace_token1, + ACTIONS(4880), 1, + sym__last_token_punctuation, + ACTIONS(4878), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [45008] = 4, - STATE(1143), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(614), 3, - anon_sym_AMP, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(4580), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(612), 37, + STATE(1436), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_comment_repeat1, + ACTIONS(4868), 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, @@ -111794,6 +111982,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__, @@ -111802,35 +111991,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, - [45061] = 9, - ACTIONS(4864), 1, + [45245] = 9, + ACTIONS(4884), 1, anon_sym_QMARK, - ACTIONS(4866), 1, + ACTIONS(4886), 1, anon_sym_QMARK_GT, - ACTIONS(4868), 1, + ACTIONS(4888), 1, sym__whitespace_ge_2, - ACTIONS(4870), 1, + ACTIONS(4890), 1, aux_sym__whitespace_token1, - ACTIONS(4874), 1, + ACTIONS(4894), 1, aux_sym__newline_token1, - ACTIONS(4876), 1, + ACTIONS(4896), 1, sym__block_close, - ACTIONS(4872), 2, + ACTIONS(4892), 2, sym__word_no_digit, sym__digits, - STATE(1211), 4, + STATE(1299), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_3_repeat1, - ACTIONS(4862), 31, + ACTIONS(4882), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -111862,19 +112044,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [45123] = 5, - ACTIONS(379), 1, + [45307] = 4, + ACTIONS(405), 1, aux_sym__whitespace_token1, - ACTIONS(4878), 1, - sym__line_ending, - STATE(1343), 1, + STATE(1191), 1, aux_sym__ignore_matching_tokens, - ACTIONS(4880), 3, + ACTIONS(4898), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(377), 37, + ACTIONS(403), 38, sym__block_close, + sym__fenced_code_block_end_tilde, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -111911,28 +112092,28 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [45177] = 9, - ACTIONS(4884), 1, + [45359] = 9, + ACTIONS(4903), 1, anon_sym_RBRACK, - ACTIONS(4886), 1, + ACTIONS(4905), 1, anon_sym_RBRACK_RBRACK_GT, - ACTIONS(4888), 1, + ACTIONS(4907), 1, sym__whitespace_ge_2, - ACTIONS(4890), 1, + ACTIONS(4909), 1, aux_sym__whitespace_token1, - ACTIONS(4894), 1, + ACTIONS(4913), 1, aux_sym__newline_token1, - ACTIONS(4896), 1, + ACTIONS(4915), 1, sym__block_close, - ACTIONS(4892), 2, + ACTIONS(4911), 2, sym__word_no_digit, sym__digits, - STATE(1204), 4, + STATE(1313), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_5_repeat1, - ACTIONS(4882), 31, + ACTIONS(4901), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -111964,37 +112145,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [45239] = 9, - ACTIONS(4864), 1, - anon_sym_QMARK, - ACTIONS(4866), 1, - anon_sym_QMARK_GT, - ACTIONS(4868), 1, + [45421] = 9, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4870), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(4874), 1, + ACTIONS(4353), 1, aux_sym__newline_token1, - ACTIONS(4900), 1, - sym__block_close, - ACTIONS(4898), 2, - sym__word_no_digit, - sym__digits, - STATE(1231), 4, + ACTIONS(4786), 1, + anon_sym_RPAREN, + STATE(1568), 1, + sym__newline, + ACTIONS(4343), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1201), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_block_3_repeat1, - ACTIONS(4862), 31, + aux_sym_link_title_repeat3, + ACTIONS(4351), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4341), 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, @@ -112006,9 +112187,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__, @@ -112017,71 +112198,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [45301] = 9, - ACTIONS(1614), 1, - aux_sym__newline_token1, - ACTIONS(4904), 1, - anon_sym_DASH, - ACTIONS(4906), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4908), 1, + [45483] = 9, + ACTIONS(4884), 1, + anon_sym_QMARK, + ACTIONS(4886), 1, + anon_sym_QMARK_GT, + ACTIONS(4888), 1, sym__whitespace_ge_2, - ACTIONS(4910), 1, + ACTIONS(4890), 1, aux_sym__whitespace_token1, - ACTIONS(4914), 1, - sym__last_token_punctuation, - ACTIONS(4912), 2, + ACTIONS(4894), 1, + aux_sym__newline_token1, + ACTIONS(4917), 1, + sym__block_close, + ACTIONS(4892), 2, sym__word_no_digit, sym__digits, - STATE(1356), 4, + STATE(1299), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(4902), 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, - [45363] = 4, - ACTIONS(409), 1, - aux_sym__whitespace_token1, - STATE(1202), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(4916), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(407), 38, - sym__block_close, - sym__fenced_code_block_end_tilde, + aux_sym__html_block_3_repeat1, + ACTIONS(4882), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -112102,7 +112240,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, @@ -112114,32 +112251,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, - [45415] = 9, - ACTIONS(4920), 1, + [45545] = 9, + ACTIONS(4921), 1, anon_sym_DASH, - ACTIONS(4922), 1, + ACTIONS(4923), 1, anon_sym_DASH_DASH_GT, - ACTIONS(4924), 1, + ACTIONS(4925), 1, sym__whitespace_ge_2, - ACTIONS(4926), 1, + ACTIONS(4927), 1, aux_sym__whitespace_token1, - ACTIONS(4930), 1, + ACTIONS(4931), 1, aux_sym__newline_token1, - ACTIONS(4932), 1, + ACTIONS(4933), 1, sym__block_close, - ACTIONS(4928), 2, + ACTIONS(4929), 2, sym__word_no_digit, sym__digits, - STATE(1243), 4, + STATE(1314), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_2_repeat1, - ACTIONS(4918), 31, + ACTIONS(4919), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -112171,28 +112304,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [45477] = 9, - ACTIONS(4936), 1, + [45607] = 9, + ACTIONS(4846), 1, anon_sym_LT, - ACTIONS(4938), 1, + ACTIONS(4848), 1, aux_sym__html_block_1_token2, - ACTIONS(4940), 1, + ACTIONS(4850), 1, sym__whitespace_ge_2, - ACTIONS(4942), 1, + ACTIONS(4852), 1, aux_sym__whitespace_token1, - ACTIONS(4946), 1, + ACTIONS(4856), 1, aux_sym__newline_token1, - ACTIONS(4948), 1, + ACTIONS(4937), 1, sym__block_close, - ACTIONS(4944), 2, + ACTIONS(4935), 2, sym__word_no_digit, sym__digits, - STATE(1253), 4, + STATE(1315), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_1_repeat1, - ACTIONS(4934), 31, + ACTIONS(4844), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -112224,18 +112357,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [45539] = 4, - ACTIONS(399), 1, + [45669] = 5, + ACTIONS(379), 1, aux_sym__whitespace_token1, - STATE(1194), 1, + ACTIONS(4939), 1, + sym__line_ending, + STATE(1347), 1, aux_sym__ignore_matching_tokens, - ACTIONS(4950), 3, + ACTIONS(4941), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(397), 38, + ACTIONS(377), 37, sym__block_close, - sym__fenced_code_block_end_backtick, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -112272,18 +112406,28 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [45591] = 4, - ACTIONS(391), 1, + [45723] = 9, + ACTIONS(4903), 1, + anon_sym_RBRACK, + ACTIONS(4905), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(4907), 1, + sym__whitespace_ge_2, + ACTIONS(4909), 1, aux_sym__whitespace_token1, - STATE(1202), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(4916), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(389), 38, + ACTIONS(4913), 1, + aux_sym__newline_token1, + ACTIONS(4945), 1, sym__block_close, - sym__fenced_code_block_end_tilde, + ACTIONS(4943), 2, + sym__word_no_digit, + sym__digits, + STATE(1319), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_5_repeat1, + ACTIONS(4901), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -112308,7 +112452,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, @@ -112316,22 +112459,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + [45785] = 9, + ACTIONS(4846), 1, + anon_sym_LT, + ACTIONS(4848), 1, + aux_sym__html_block_1_token2, + ACTIONS(4850), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [45643] = 4, - ACTIONS(391), 1, + ACTIONS(4852), 1, aux_sym__whitespace_token1, - STATE(1191), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(4953), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(389), 38, + ACTIONS(4856), 1, + aux_sym__newline_token1, + ACTIONS(4947), 1, sym__block_close, - sym__fenced_code_block_end_tilde, + ACTIONS(4935), 2, + sym__word_no_digit, + sym__digits, + STATE(1315), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_1_repeat1, + ACTIONS(4844), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -112349,7 +112498,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, @@ -112364,32 +112512,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, - [45695] = 9, - ACTIONS(4884), 1, + [45847] = 9, + ACTIONS(4903), 1, anon_sym_RBRACK, - ACTIONS(4886), 1, + ACTIONS(4905), 1, anon_sym_RBRACK_RBRACK_GT, - ACTIONS(4888), 1, + ACTIONS(4907), 1, sym__whitespace_ge_2, - ACTIONS(4890), 1, + ACTIONS(4909), 1, aux_sym__whitespace_token1, - ACTIONS(4894), 1, + ACTIONS(4913), 1, aux_sym__newline_token1, - ACTIONS(4957), 1, + ACTIONS(4951), 1, sym__block_close, - ACTIONS(4955), 2, + ACTIONS(4949), 2, sym__word_no_digit, sym__digits, - STATE(1188), 4, + STATE(1223), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_5_repeat1, - ACTIONS(4882), 31, + ACTIONS(4901), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -112421,28 +112565,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [45757] = 9, - ACTIONS(4864), 1, + [45909] = 9, + ACTIONS(4011), 1, + sym__whitespace_ge_2, + ACTIONS(4013), 1, + aux_sym__whitespace_token1, + ACTIONS(4353), 1, + aux_sym__newline_token1, + ACTIONS(4814), 1, + anon_sym_RPAREN, + STATE(1568), 1, + sym__newline, + ACTIONS(4343), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1225), 3, + sym__whitespace, + sym__word, + aux_sym_link_title_repeat3, + ACTIONS(4953), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4341), 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, - ACTIONS(4866), 1, - anon_sym_QMARK_GT, - ACTIONS(4868), 1, + 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, + [45971] = 9, + ACTIONS(4903), 1, + anon_sym_RBRACK, + ACTIONS(4905), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(4907), 1, sym__whitespace_ge_2, - ACTIONS(4870), 1, + ACTIONS(4909), 1, aux_sym__whitespace_token1, - ACTIONS(4874), 1, + ACTIONS(4913), 1, aux_sym__newline_token1, - ACTIONS(4961), 1, + ACTIONS(4957), 1, sym__block_close, - ACTIONS(4959), 2, + ACTIONS(4955), 2, sym__word_no_digit, sym__digits, - STATE(1189), 4, + STATE(1294), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_3_repeat1, - ACTIONS(4862), 31, + aux_sym__html_block_5_repeat1, + ACTIONS(4901), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -112463,10 +112660,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, @@ -112474,28 +112671,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [45819] = 9, - ACTIONS(1614), 1, - aux_sym__newline_token1, - ACTIONS(4904), 1, - anon_sym_DASH, - ACTIONS(4908), 1, + [46033] = 9, + ACTIONS(4884), 1, + anon_sym_QMARK, + ACTIONS(4886), 1, + anon_sym_QMARK_GT, + ACTIONS(4888), 1, sym__whitespace_ge_2, - ACTIONS(4910), 1, + ACTIONS(4890), 1, aux_sym__whitespace_token1, - ACTIONS(4963), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4967), 1, - sym__last_token_punctuation, - ACTIONS(4965), 2, + ACTIONS(4894), 1, + aux_sym__newline_token1, + ACTIONS(4961), 1, + sym__block_close, + ACTIONS(4959), 2, sym__word_no_digit, sym__digits, - STATE(1333), 4, + STATE(1312), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(4902), 31, + aux_sym__html_block_3_repeat1, + ACTIONS(4882), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -112508,6 +112705,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, @@ -112515,7 +112713,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, @@ -112527,28 +112724,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [45881] = 9, - ACTIONS(4920), 1, - anon_sym_DASH, - ACTIONS(4922), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4924), 1, + [46095] = 7, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4926), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4930), 1, + ACTIONS(4967), 1, aux_sym__newline_token1, - ACTIONS(4971), 1, + ACTIONS(4969), 1, sym__block_close, - ACTIONS(4969), 2, + ACTIONS(4965), 2, sym__word_no_digit, sym__digits, - STATE(1192), 4, + STATE(1214), 5, + sym__text, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_2_repeat1, - ACTIONS(4918), 31, + aux_sym__indented_chunk_repeat1, + ACTIONS(4963), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -112561,6 +112755,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, @@ -112580,28 +112775,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [45943] = 9, - ACTIONS(4936), 1, - anon_sym_LT, - ACTIONS(4938), 1, - aux_sym__html_block_1_token2, - ACTIONS(4940), 1, + [46153] = 9, + ACTIONS(4884), 1, + anon_sym_QMARK, + ACTIONS(4886), 1, + anon_sym_QMARK_GT, + ACTIONS(4888), 1, sym__whitespace_ge_2, - ACTIONS(4942), 1, + ACTIONS(4890), 1, aux_sym__whitespace_token1, - ACTIONS(4946), 1, + ACTIONS(4894), 1, aux_sym__newline_token1, - ACTIONS(4975), 1, + ACTIONS(4971), 1, sym__block_close, - ACTIONS(4973), 2, + ACTIONS(4892), 2, sym__word_no_digit, sym__digits, - STATE(1193), 4, + STATE(1299), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_1_repeat1, - ACTIONS(4934), 31, + aux_sym__html_block_3_repeat1, + ACTIONS(4882), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -112619,9 +112814,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, @@ -112633,18 +112828,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [46005] = 4, - ACTIONS(399), 1, + [46215] = 9, + ACTIONS(4846), 1, + anon_sym_LT, + ACTIONS(4848), 1, + aux_sym__html_block_1_token2, + ACTIONS(4850), 1, + sym__whitespace_ge_2, + ACTIONS(4852), 1, aux_sym__whitespace_token1, - STATE(1202), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(4977), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(397), 38, + ACTIONS(4856), 1, + aux_sym__newline_token1, + ACTIONS(4973), 1, sym__block_close, - sym__fenced_code_block_end_tilde, + ACTIONS(4935), 2, + sym__word_no_digit, + sym__digits, + STATE(1315), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_1_repeat1, + ACTIONS(4844), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -112662,7 +112867,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, @@ -112677,83 +112881,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, + [46277] = 9, + ACTIONS(1628), 1, aux_sym__newline_token1, - [46057] = 7, - ACTIONS(4367), 1, - anon_sym_LPAREN, - ACTIONS(4984), 1, - aux_sym__whitespace_token1, - ACTIONS(4594), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(4980), 3, - anon_sym_RPAREN, - sym__whitespace_ge_2, - aux_sym__newline_token1, - STATE(1213), 3, - sym__link_destination_parenthesis, - sym__word, - aux_sym_link_destination_repeat2, - ACTIONS(4982), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4592), 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, + ACTIONS(4870), 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_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - [46115] = 9, - ACTIONS(4989), 1, - anon_sym_RBRACK, - ACTIONS(4992), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(4995), 1, + ACTIONS(4874), 1, sym__whitespace_ge_2, - ACTIONS(4998), 1, + ACTIONS(4876), 1, aux_sym__whitespace_token1, - ACTIONS(5004), 1, - aux_sym__newline_token1, - ACTIONS(5007), 1, - sym__block_close, - ACTIONS(5001), 2, + ACTIONS(4975), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4979), 1, + sym__last_token_punctuation, + ACTIONS(4977), 2, sym__word_no_digit, sym__digits, - STATE(1204), 4, + STATE(1381), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_5_repeat1, - ACTIONS(4986), 31, + aux_sym__html_comment_repeat1, + ACTIONS(4868), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -112766,7 +112915,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, @@ -112778,58 +112926,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, - [46177] = 9, - ACTIONS(4035), 1, - sym__whitespace_ge_2, - ACTIONS(4037), 1, - aux_sym__whitespace_token1, - ACTIONS(4375), 1, - aux_sym__newline_token1, - ACTIONS(4588), 1, - anon_sym_RPAREN, - STATE(1577), 1, - sym__newline, - ACTIONS(4365), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1229), 3, - sym__whitespace, - sym__word, - aux_sym_link_title_repeat3, - ACTIONS(5009), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4363), 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__, @@ -112838,28 +112934,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [46239] = 9, - ACTIONS(4936), 1, - anon_sym_LT, - ACTIONS(4938), 1, - aux_sym__html_block_1_token2, - ACTIONS(4940), 1, + [46339] = 9, + ACTIONS(4921), 1, + anon_sym_DASH, + ACTIONS(4923), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4925), 1, sym__whitespace_ge_2, - ACTIONS(4942), 1, + ACTIONS(4927), 1, aux_sym__whitespace_token1, - ACTIONS(4946), 1, + ACTIONS(4931), 1, aux_sym__newline_token1, - ACTIONS(5013), 1, + ACTIONS(4983), 1, sym__block_close, - ACTIONS(5011), 2, + ACTIONS(4981), 2, sym__word_no_digit, sym__digits, - STATE(1209), 4, + STATE(1304), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_1_repeat1, - ACTIONS(4934), 31, + aux_sym__html_block_2_repeat1, + ACTIONS(4919), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -112872,11 +112968,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, @@ -112891,28 +112987,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [46301] = 9, - ACTIONS(4920), 1, - anon_sym_DASH, - ACTIONS(4922), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4924), 1, + [46401] = 9, + ACTIONS(4846), 1, + anon_sym_LT, + ACTIONS(4848), 1, + aux_sym__html_block_1_token2, + ACTIONS(4850), 1, sym__whitespace_ge_2, - ACTIONS(4926), 1, + ACTIONS(4852), 1, aux_sym__whitespace_token1, - ACTIONS(4930), 1, + ACTIONS(4856), 1, aux_sym__newline_token1, - ACTIONS(5017), 1, + ACTIONS(4987), 1, sym__block_close, - ACTIONS(5015), 2, + ACTIONS(4985), 2, sym__word_no_digit, sym__digits, - STATE(1210), 4, + STATE(1301), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_2_repeat1, - ACTIONS(4918), 31, + aux_sym__html_block_1_repeat1, + ACTIONS(4844), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -112925,11 +113021,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, @@ -112944,28 +113040,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [46363] = 9, - ACTIONS(4884), 1, - anon_sym_RBRACK, - ACTIONS(4886), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(4888), 1, + [46463] = 9, + ACTIONS(1628), 1, + aux_sym__newline_token1, + ACTIONS(4870), 1, + anon_sym_DASH, + ACTIONS(4874), 1, sym__whitespace_ge_2, - ACTIONS(4890), 1, + ACTIONS(4876), 1, aux_sym__whitespace_token1, - ACTIONS(4894), 1, - aux_sym__newline_token1, - ACTIONS(5021), 1, - sym__block_close, - ACTIONS(5019), 2, + ACTIONS(4989), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4993), 1, + sym__last_token_punctuation, + ACTIONS(4991), 2, sym__word_no_digit, sym__digits, - STATE(1212), 4, + STATE(1336), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_5_repeat1, - ACTIONS(4882), 31, + aux_sym__html_comment_repeat1, + ACTIONS(4868), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -112978,7 +113074,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, @@ -112990,6 +113085,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, @@ -112997,28 +113093,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [46425] = 9, - ACTIONS(4936), 1, - anon_sym_LT, - ACTIONS(4938), 1, - aux_sym__html_block_1_token2, - ACTIONS(4940), 1, + [46525] = 9, + ACTIONS(4921), 1, + anon_sym_DASH, + ACTIONS(4923), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4925), 1, sym__whitespace_ge_2, - ACTIONS(4942), 1, + ACTIONS(4927), 1, aux_sym__whitespace_token1, - ACTIONS(4946), 1, + ACTIONS(4931), 1, aux_sym__newline_token1, - ACTIONS(5023), 1, + ACTIONS(4995), 1, sym__block_close, - ACTIONS(4944), 2, + ACTIONS(4929), 2, sym__word_no_digit, sym__digits, - STATE(1253), 4, + STATE(1314), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_1_repeat1, - ACTIONS(4934), 31, + aux_sym__html_block_2_repeat1, + ACTIONS(4919), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -113031,11 +113127,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, @@ -113050,28 +113146,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [46487] = 9, - ACTIONS(4920), 1, - anon_sym_DASH, - ACTIONS(4922), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4924), 1, + [46587] = 9, + ACTIONS(4903), 1, + anon_sym_RBRACK, + ACTIONS(4905), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(4907), 1, sym__whitespace_ge_2, - ACTIONS(4926), 1, + ACTIONS(4909), 1, aux_sym__whitespace_token1, - ACTIONS(4930), 1, + ACTIONS(4913), 1, aux_sym__newline_token1, - ACTIONS(5025), 1, + ACTIONS(4999), 1, sym__block_close, - ACTIONS(4928), 2, + ACTIONS(4997), 2, sym__word_no_digit, sym__digits, - STATE(1243), 4, + STATE(1219), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_2_repeat1, - ACTIONS(4918), 31, + aux_sym__html_block_5_repeat1, + ACTIONS(4901), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -113084,6 +113180,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, @@ -113095,7 +113192,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, @@ -113103,28 +113199,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [46549] = 9, - ACTIONS(4864), 1, - anon_sym_QMARK, - ACTIONS(4866), 1, - anon_sym_QMARK_GT, - ACTIONS(4868), 1, + [46649] = 9, + ACTIONS(4903), 1, + anon_sym_RBRACK, + ACTIONS(4905), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(4907), 1, sym__whitespace_ge_2, - ACTIONS(4870), 1, + ACTIONS(4909), 1, aux_sym__whitespace_token1, - ACTIONS(4874), 1, + ACTIONS(4913), 1, aux_sym__newline_token1, - ACTIONS(5027), 1, + ACTIONS(5001), 1, sym__block_close, - ACTIONS(4898), 2, + ACTIONS(4955), 2, sym__word_no_digit, sym__digits, - STATE(1231), 4, + STATE(1294), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_3_repeat1, - ACTIONS(4862), 31, + aux_sym__html_block_5_repeat1, + ACTIONS(4901), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -113145,10 +113241,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, @@ -113156,28 +113252,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [46611] = 9, - ACTIONS(4884), 1, - anon_sym_RBRACK, - ACTIONS(4886), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(4888), 1, + [46711] = 7, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4890), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4894), 1, + ACTIONS(4967), 1, aux_sym__newline_token1, - ACTIONS(5029), 1, + ACTIONS(5005), 1, sym__block_close, - ACTIONS(4892), 2, + ACTIONS(5003), 2, sym__word_no_digit, sym__digits, - STATE(1204), 4, + STATE(1255), 5, + sym__text, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_5_repeat1, - ACTIONS(4882), 31, + aux_sym__indented_chunk_repeat1, + ACTIONS(4963), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -113202,6 +113295,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, @@ -113209,35 +113303,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [46673] = 7, - ACTIONS(5037), 1, - anon_sym_LPAREN, - ACTIONS(5045), 1, - aux_sym__whitespace_token1, - ACTIONS(5034), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(5040), 3, - anon_sym_RPAREN, + [46769] = 9, + ACTIONS(4884), 1, + anon_sym_QMARK, + ACTIONS(4886), 1, + anon_sym_QMARK_GT, + ACTIONS(4888), 1, sym__whitespace_ge_2, + ACTIONS(4890), 1, + aux_sym__whitespace_token1, + ACTIONS(4894), 1, aux_sym__newline_token1, - STATE(1213), 3, - sym__link_destination_parenthesis, - sym__word, - aux_sym_link_destination_repeat2, - ACTIONS(5042), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(5009), 1, + sym__block_close, + ACTIONS(5007), 2, sym__word_no_digit, sym__digits, - ACTIONS(5031), 28, + STATE(1194), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_3_repeat1, + ACTIONS(4882), 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, @@ -113249,9 +113345,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__, @@ -113260,39 +113356,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [46731] = 7, - ACTIONS(4367), 1, - anon_sym_LPAREN, - ACTIONS(5049), 1, - aux_sym__whitespace_token1, - ACTIONS(4594), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(5047), 3, - anon_sym_RPAREN, + [46831] = 9, + ACTIONS(4921), 1, + anon_sym_DASH, + ACTIONS(4923), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4925), 1, sym__whitespace_ge_2, + ACTIONS(4927), 1, + aux_sym__whitespace_token1, + ACTIONS(4931), 1, aux_sym__newline_token1, - STATE(1213), 3, - sym__link_destination_parenthesis, - sym__word, - aux_sym_link_destination_repeat2, - ACTIONS(4982), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(5013), 1, + sym__block_close, + ACTIONS(5011), 2, sym__word_no_digit, sym__digits, - ACTIONS(4592), 28, + STATE(1195), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_2_repeat1, + ACTIONS(4919), 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, @@ -113303,6 +113400,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__, @@ -113311,35 +113409,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [46789] = 7, - ACTIONS(4367), 1, - anon_sym_LPAREN, - ACTIONS(5049), 1, - aux_sym__whitespace_token1, - ACTIONS(4594), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(5047), 3, - anon_sym_RPAREN, + [46893] = 9, + ACTIONS(4846), 1, + anon_sym_LT, + ACTIONS(4848), 1, + aux_sym__html_block_1_token2, + ACTIONS(4850), 1, sym__whitespace_ge_2, + ACTIONS(4852), 1, + aux_sym__whitespace_token1, + ACTIONS(4856), 1, aux_sym__newline_token1, - STATE(1203), 3, - sym__link_destination_parenthesis, - sym__word, - aux_sym_link_destination_repeat2, - ACTIONS(5051), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(5017), 1, + sym__block_close, + ACTIONS(5015), 2, sym__word_no_digit, sym__digits, - ACTIONS(4592), 28, + STATE(1199), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_1_repeat1, + ACTIONS(4844), 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, @@ -113348,12 +113448,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__, @@ -113362,28 +113462,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [46847] = 9, - ACTIONS(4936), 1, - anon_sym_LT, - ACTIONS(4938), 1, - aux_sym__html_block_1_token2, - ACTIONS(4940), 1, + [46955] = 7, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4942), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4946), 1, + ACTIONS(4967), 1, aux_sym__newline_token1, - ACTIONS(5055), 1, + ACTIONS(5021), 1, sym__block_close, - ACTIONS(5053), 2, + ACTIONS(5019), 2, sym__word_no_digit, sym__digits, - STATE(1220), 4, + STATE(1233), 5, + sym__text, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_1_repeat1, - ACTIONS(4934), 31, + aux_sym__indented_chunk_repeat1, + ACTIONS(4963), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -113401,6 +113498,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, @@ -113415,28 +113513,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [46909] = 9, - ACTIONS(4920), 1, - anon_sym_DASH, - ACTIONS(4922), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4924), 1, + [47013] = 9, + ACTIONS(4903), 1, + anon_sym_RBRACK, + ACTIONS(4905), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(4907), 1, sym__whitespace_ge_2, - ACTIONS(4926), 1, + ACTIONS(4909), 1, aux_sym__whitespace_token1, - ACTIONS(4930), 1, + ACTIONS(4913), 1, aux_sym__newline_token1, - ACTIONS(5059), 1, + ACTIONS(5023), 1, sym__block_close, - ACTIONS(5057), 2, + ACTIONS(4955), 2, sym__word_no_digit, sym__digits, - STATE(1221), 4, + STATE(1294), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_2_repeat1, - ACTIONS(4918), 31, + aux_sym__html_block_5_repeat1, + ACTIONS(4901), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -113449,6 +113547,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, @@ -113460,7 +113559,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, @@ -113468,28 +113566,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [46971] = 9, - ACTIONS(4864), 1, - anon_sym_QMARK, - ACTIONS(4866), 1, - anon_sym_QMARK_GT, - ACTIONS(4868), 1, - sym__whitespace_ge_2, - ACTIONS(4870), 1, + [47075] = 4, + ACTIONS(399), 1, aux_sym__whitespace_token1, - ACTIONS(4874), 1, - aux_sym__newline_token1, - ACTIONS(5063), 1, + STATE(1316), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5025), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(397), 38, sym__block_close, - ACTIONS(5061), 2, - sym__word_no_digit, - sym__digits, - STATE(1222), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_3_repeat1, - ACTIONS(4862), 31, + sym__fenced_code_block_end_backtick, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -113510,6 +113598,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, @@ -113521,28 +113610,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [47033] = 9, - ACTIONS(4884), 1, - anon_sym_RBRACK, - ACTIONS(4886), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(4888), 1, sym__whitespace_ge_2, - ACTIONS(4890), 1, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [47127] = 9, + ACTIONS(4846), 1, + anon_sym_LT, + ACTIONS(4848), 1, + aux_sym__html_block_1_token2, + ACTIONS(4850), 1, + sym__whitespace_ge_2, + ACTIONS(4852), 1, aux_sym__whitespace_token1, - ACTIONS(4894), 1, + ACTIONS(4856), 1, aux_sym__newline_token1, - ACTIONS(5067), 1, + ACTIONS(5027), 1, sym__block_close, - ACTIONS(5065), 2, + ACTIONS(4935), 2, sym__word_no_digit, sym__digits, - STATE(1228), 4, + STATE(1315), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_5_repeat1, - ACTIONS(4882), 31, + aux_sym__html_block_1_repeat1, + ACTIONS(4844), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -113560,13 +113653,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, @@ -113574,28 +113667,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [47095] = 9, - ACTIONS(4936), 1, - anon_sym_LT, - ACTIONS(4938), 1, - aux_sym__html_block_1_token2, - ACTIONS(4940), 1, - sym__whitespace_ge_2, - ACTIONS(4942), 1, + [47189] = 5, + ACTIONS(379), 1, aux_sym__whitespace_token1, - ACTIONS(4946), 1, - aux_sym__newline_token1, - ACTIONS(5069), 1, - sym__block_close, - ACTIONS(4944), 2, - sym__word_no_digit, - sym__digits, - STATE(1253), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_1_repeat1, - ACTIONS(4934), 31, + ACTIONS(5029), 1, + sym__line_ending, + STATE(1561), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5031), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(377), 37, + sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -113613,6 +113697,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, @@ -113627,28 +113712,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [47157] = 9, - ACTIONS(4920), 1, - anon_sym_DASH, - ACTIONS(4922), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4924), 1, sym__whitespace_ge_2, - ACTIONS(4926), 1, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [47243] = 9, + ACTIONS(4903), 1, + anon_sym_RBRACK, + ACTIONS(4905), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(4907), 1, + sym__whitespace_ge_2, + ACTIONS(4909), 1, aux_sym__whitespace_token1, - ACTIONS(4930), 1, + ACTIONS(4913), 1, aux_sym__newline_token1, - ACTIONS(5071), 1, + ACTIONS(5033), 1, sym__block_close, - ACTIONS(4928), 2, + ACTIONS(4955), 2, sym__word_no_digit, sym__digits, - STATE(1243), 4, + STATE(1294), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_2_repeat1, - ACTIONS(4918), 31, + aux_sym__html_block_5_repeat1, + ACTIONS(4901), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -113661,6 +113750,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, @@ -113672,7 +113762,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, @@ -113680,28 +113769,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [47219] = 9, - ACTIONS(4864), 1, + [47305] = 9, + ACTIONS(4884), 1, anon_sym_QMARK, - ACTIONS(4866), 1, + ACTIONS(4886), 1, anon_sym_QMARK_GT, - ACTIONS(4868), 1, + ACTIONS(4888), 1, sym__whitespace_ge_2, - ACTIONS(4870), 1, + ACTIONS(4890), 1, aux_sym__whitespace_token1, - ACTIONS(4874), 1, + ACTIONS(4894), 1, aux_sym__newline_token1, - ACTIONS(5073), 1, + ACTIONS(5035), 1, sym__block_close, - ACTIONS(4898), 2, + ACTIONS(4892), 2, sym__word_no_digit, sym__digits, - STATE(1231), 4, + STATE(1299), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_3_repeat1, - ACTIONS(4862), 31, + ACTIONS(4882), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -113733,37 +113822,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [47281] = 9, - ACTIONS(4884), 1, - anon_sym_RBRACK, - ACTIONS(4886), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(4888), 1, + [47367] = 9, + ACTIONS(5043), 1, + anon_sym_RPAREN, + ACTIONS(5048), 1, sym__whitespace_ge_2, - ACTIONS(4890), 1, + ACTIONS(5051), 1, aux_sym__whitespace_token1, - ACTIONS(4894), 1, + ACTIONS(5054), 1, aux_sym__newline_token1, - ACTIONS(5075), 1, - sym__block_close, - ACTIONS(4892), 2, - sym__word_no_digit, - sym__digits, - STATE(1204), 4, + STATE(1568), 1, + sym__newline, + ACTIONS(5040), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1225), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_block_5_repeat1, - ACTIONS(4882), 31, + aux_sym_link_title_repeat3, + ACTIONS(5045), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(5037), 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, @@ -113778,7 +113867,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, @@ -113786,28 +113875,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [47343] = 9, - ACTIONS(4864), 1, + [47429] = 9, + ACTIONS(4884), 1, anon_sym_QMARK, - ACTIONS(4866), 1, + ACTIONS(4886), 1, anon_sym_QMARK_GT, - ACTIONS(4868), 1, + ACTIONS(4888), 1, sym__whitespace_ge_2, - ACTIONS(4870), 1, + ACTIONS(4890), 1, aux_sym__whitespace_token1, - ACTIONS(4874), 1, + ACTIONS(4894), 1, aux_sym__newline_token1, - ACTIONS(5077), 1, + ACTIONS(5059), 1, sym__block_close, - ACTIONS(4898), 2, + ACTIONS(5057), 2, sym__word_no_digit, sym__digits, - STATE(1231), 4, + STATE(1224), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_3_repeat1, - ACTIONS(4862), 31, + ACTIONS(4882), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -113839,28 +113928,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [47405] = 9, - ACTIONS(1614), 1, - aux_sym__newline_token1, - ACTIONS(4904), 1, - anon_sym_DASH, - ACTIONS(4908), 1, + [47491] = 9, + ACTIONS(4903), 1, + anon_sym_RBRACK, + ACTIONS(4905), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(4907), 1, sym__whitespace_ge_2, - ACTIONS(4910), 1, + ACTIONS(4909), 1, aux_sym__whitespace_token1, - ACTIONS(5079), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5083), 1, - sym__last_token_punctuation, - ACTIONS(5081), 2, + ACTIONS(4913), 1, + aux_sym__newline_token1, + ACTIONS(5063), 1, + sym__block_close, + ACTIONS(5061), 2, sym__word_no_digit, sym__digits, - STATE(1435), 4, + STATE(1284), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(4902), 31, + aux_sym__html_block_5_repeat1, + ACTIONS(4901), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -113873,6 +113962,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, @@ -113884,7 +113974,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, @@ -113892,28 +113981,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [47467] = 9, - ACTIONS(4920), 1, + [47553] = 9, + ACTIONS(4921), 1, anon_sym_DASH, - ACTIONS(4922), 1, + ACTIONS(4923), 1, anon_sym_DASH_DASH_GT, - ACTIONS(4924), 1, + ACTIONS(4925), 1, sym__whitespace_ge_2, - ACTIONS(4926), 1, + ACTIONS(4927), 1, aux_sym__whitespace_token1, - ACTIONS(4930), 1, + ACTIONS(4931), 1, aux_sym__newline_token1, - ACTIONS(5085), 1, + ACTIONS(5067), 1, sym__block_close, - ACTIONS(4928), 2, + ACTIONS(5065), 2, sym__word_no_digit, sym__digits, - STATE(1243), 4, + STATE(1286), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_2_repeat1, - ACTIONS(4918), 31, + ACTIONS(4919), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -113945,37 +114034,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [47529] = 9, - ACTIONS(4936), 1, - anon_sym_LT, - ACTIONS(4938), 1, - aux_sym__html_block_1_token2, - ACTIONS(4940), 1, - sym__whitespace_ge_2, - ACTIONS(4942), 1, + [47615] = 7, + ACTIONS(4345), 1, + anon_sym_LPAREN, + ACTIONS(4585), 1, aux_sym__whitespace_token1, - ACTIONS(4946), 1, + ACTIONS(4579), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(4581), 3, + anon_sym_RPAREN, + sym__whitespace_ge_2, aux_sym__newline_token1, - ACTIONS(5087), 1, - sym__block_close, - ACTIONS(4944), 2, + STATE(1188), 3, + sym__link_destination_parenthesis, + sym__word, + aux_sym_link_destination_repeat2, + ACTIONS(4583), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(1253), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_1_repeat1, - ACTIONS(4934), 31, + ACTIONS(4577), 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, @@ -113984,12 +114071,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__, @@ -113998,28 +114085,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [47591] = 9, - ACTIONS(4884), 1, + [47673] = 9, + ACTIONS(4903), 1, anon_sym_RBRACK, - ACTIONS(4886), 1, + ACTIONS(4905), 1, anon_sym_RBRACK_RBRACK_GT, - ACTIONS(4888), 1, + ACTIONS(4907), 1, sym__whitespace_ge_2, - ACTIONS(4890), 1, + ACTIONS(4909), 1, aux_sym__whitespace_token1, - ACTIONS(4894), 1, + ACTIONS(4913), 1, aux_sym__newline_token1, - ACTIONS(5089), 1, + ACTIONS(5069), 1, sym__block_close, - ACTIONS(4892), 2, + ACTIONS(4955), 2, sym__word_no_digit, sym__digits, - STATE(1204), 4, + STATE(1294), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_5_repeat1, - ACTIONS(4882), 31, + ACTIONS(4901), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -114051,37 +114138,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [47653] = 9, - ACTIONS(5097), 1, - anon_sym_RPAREN, - ACTIONS(5102), 1, + [47735] = 9, + ACTIONS(4846), 1, + anon_sym_LT, + ACTIONS(4848), 1, + aux_sym__html_block_1_token2, + ACTIONS(4850), 1, sym__whitespace_ge_2, - ACTIONS(5105), 1, + ACTIONS(4852), 1, aux_sym__whitespace_token1, - ACTIONS(5108), 1, + ACTIONS(4856), 1, aux_sym__newline_token1, - STATE(1577), 1, - sym__newline, - ACTIONS(5094), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1229), 3, - sym__whitespace, - sym__word, - aux_sym_link_title_repeat3, - ACTIONS(5099), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(5073), 1, + sym__block_close, + ACTIONS(5071), 2, sym__word_no_digit, sym__digits, - ACTIONS(5091), 28, + STATE(1221), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_1_repeat1, + ACTIONS(4844), 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, @@ -114090,12 +114177,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__, @@ -114104,41 +114191,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [47715] = 9, - ACTIONS(4035), 1, + [47797] = 9, + ACTIONS(4921), 1, + anon_sym_DASH, + ACTIONS(4923), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4925), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4927), 1, aux_sym__whitespace_token1, - ACTIONS(4375), 1, + ACTIONS(4931), 1, aux_sym__newline_token1, - ACTIONS(4753), 1, - anon_sym_RPAREN, - STATE(1577), 1, - sym__newline, - ACTIONS(4365), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1205), 3, - sym__whitespace, - sym__word, - aux_sym_link_title_repeat3, - ACTIONS(4373), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(5075), 1, + sym__block_close, + ACTIONS(4929), 2, sym__word_no_digit, sym__digits, - ACTIONS(4363), 28, + STATE(1314), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_2_repeat1, + ACTIONS(4919), 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, @@ -114149,6 +114235,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__, @@ -114157,28 +114244,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [47777] = 9, - ACTIONS(5114), 1, - anon_sym_QMARK, - ACTIONS(5117), 1, - anon_sym_QMARK_GT, - ACTIONS(5120), 1, + [47859] = 7, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(5123), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(5129), 1, + ACTIONS(4967), 1, aux_sym__newline_token1, - ACTIONS(5132), 1, + ACTIONS(5077), 1, sym__block_close, - ACTIONS(5126), 2, + ACTIONS(5003), 2, sym__word_no_digit, sym__digits, - STATE(1231), 4, + STATE(1255), 5, + sym__text, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_3_repeat1, - ACTIONS(5111), 31, + aux_sym__indented_chunk_repeat1, + ACTIONS(4963), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -114199,6 +114283,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, @@ -114210,15 +114295,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [47839] = 5, - ACTIONS(5134), 1, + [47917] = 5, + ACTIONS(5079), 1, sym__line_ending, - STATE(1497), 1, + STATE(1529), 1, aux_sym__ignore_matching_tokens, ACTIONS(379), 2, anon_sym_DASH, aux_sym__whitespace_token1, - ACTIONS(5136), 3, + ACTIONS(5081), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, @@ -114259,28 +114344,28 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [47893] = 9, - ACTIONS(4936), 1, - anon_sym_LT, - ACTIONS(4938), 1, - aux_sym__html_block_1_token2, - ACTIONS(4940), 1, + [47971] = 9, + ACTIONS(4921), 1, + anon_sym_DASH, + ACTIONS(4923), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4925), 1, sym__whitespace_ge_2, - ACTIONS(4942), 1, + ACTIONS(4927), 1, aux_sym__whitespace_token1, - ACTIONS(4946), 1, + ACTIONS(4931), 1, aux_sym__newline_token1, - ACTIONS(5140), 1, + ACTIONS(5085), 1, sym__block_close, - ACTIONS(5138), 2, + ACTIONS(5083), 2, sym__word_no_digit, sym__digits, - STATE(1244), 4, + STATE(1211), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_1_repeat1, - ACTIONS(4934), 31, + aux_sym__html_block_2_repeat1, + ACTIONS(4919), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -114293,11 +114378,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, @@ -114312,28 +114397,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [47955] = 9, - ACTIONS(4920), 1, - anon_sym_DASH, - ACTIONS(4922), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4924), 1, + [48033] = 9, + ACTIONS(4884), 1, + anon_sym_QMARK, + ACTIONS(4886), 1, + anon_sym_QMARK_GT, + ACTIONS(4888), 1, sym__whitespace_ge_2, - ACTIONS(4926), 1, + ACTIONS(4890), 1, aux_sym__whitespace_token1, - ACTIONS(4930), 1, + ACTIONS(4894), 1, aux_sym__newline_token1, - ACTIONS(5144), 1, + ACTIONS(5087), 1, sym__block_close, - ACTIONS(5142), 2, + ACTIONS(4892), 2, sym__word_no_digit, sym__digits, - STATE(1245), 4, + STATE(1299), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_2_repeat1, - ACTIONS(4918), 31, + aux_sym__html_block_3_repeat1, + ACTIONS(4882), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -114346,6 +114431,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, @@ -114353,7 +114439,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, @@ -114365,28 +114450,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [48017] = 9, - ACTIONS(4864), 1, - anon_sym_QMARK, - ACTIONS(4866), 1, - anon_sym_QMARK_GT, - ACTIONS(4868), 1, - sym__whitespace_ge_2, - ACTIONS(4870), 1, + [48095] = 4, + ACTIONS(399), 1, aux_sym__whitespace_token1, - ACTIONS(4874), 1, - aux_sym__newline_token1, - ACTIONS(5148), 1, + STATE(1240), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(4029), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(397), 38, sym__block_close, - ACTIONS(5146), 2, - sym__word_no_digit, - sym__digits, - STATE(1246), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_3_repeat1, - ACTIONS(4862), 31, + sym__blank_line_start, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -114407,6 +114482,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, @@ -114418,28 +114494,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [48079] = 9, - ACTIONS(4884), 1, - anon_sym_RBRACK, - ACTIONS(4886), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(4888), 1, sym__whitespace_ge_2, - ACTIONS(4890), 1, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [48147] = 9, + ACTIONS(4921), 1, + anon_sym_DASH, + ACTIONS(4923), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4925), 1, + sym__whitespace_ge_2, + ACTIONS(4927), 1, aux_sym__whitespace_token1, - ACTIONS(4894), 1, + ACTIONS(4931), 1, aux_sym__newline_token1, - ACTIONS(5152), 1, + ACTIONS(5089), 1, sym__block_close, - ACTIONS(5150), 2, + ACTIONS(4929), 2, sym__word_no_digit, sym__digits, - STATE(1252), 4, + STATE(1314), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_5_repeat1, - ACTIONS(4882), 31, + aux_sym__html_block_2_repeat1, + ACTIONS(4919), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -114452,7 +114532,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, @@ -114464,6 +114543,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, @@ -114471,28 +114551,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [48141] = 9, - ACTIONS(4884), 1, - anon_sym_RBRACK, - ACTIONS(4886), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(4888), 1, + [48209] = 9, + ACTIONS(4846), 1, + anon_sym_LT, + ACTIONS(4848), 1, + aux_sym__html_block_1_token2, + ACTIONS(4850), 1, sym__whitespace_ge_2, - ACTIONS(4890), 1, + ACTIONS(4852), 1, aux_sym__whitespace_token1, - ACTIONS(4894), 1, + ACTIONS(4856), 1, aux_sym__newline_token1, - ACTIONS(5156), 1, + ACTIONS(5091), 1, sym__block_close, - ACTIONS(5154), 2, + ACTIONS(4935), 2, sym__word_no_digit, sym__digits, - STATE(1223), 4, + STATE(1315), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_5_repeat1, - ACTIONS(4882), 31, + aux_sym__html_block_1_repeat1, + ACTIONS(4844), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -114510,13 +114590,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, @@ -114524,28 +114604,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [48203] = 9, - ACTIONS(4864), 1, - anon_sym_QMARK, - ACTIONS(4866), 1, - anon_sym_QMARK_GT, - ACTIONS(4868), 1, - sym__whitespace_ge_2, - ACTIONS(4870), 1, + [48271] = 4, + ACTIONS(405), 1, aux_sym__whitespace_token1, - ACTIONS(4874), 1, - aux_sym__newline_token1, - ACTIONS(5160), 1, + STATE(1240), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5093), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(403), 38, sym__block_close, - ACTIONS(5158), 2, - sym__word_no_digit, - sym__digits, - STATE(1224), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_3_repeat1, - ACTIONS(4862), 31, + sym__blank_line_start, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -114566,6 +114636,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, @@ -114577,28 +114648,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [48265] = 9, - ACTIONS(1614), 1, - aux_sym__newline_token1, - ACTIONS(4904), 1, - anon_sym_DASH, - ACTIONS(4908), 1, sym__whitespace_ge_2, - ACTIONS(4910), 1, - aux_sym__whitespace_token1, - ACTIONS(5162), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5166), 1, - sym__last_token_punctuation, - ACTIONS(5164), 2, sym__word_no_digit, sym__digits, - STATE(1455), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(4902), 31, + aux_sym__newline_token1, + [48323] = 4, + ACTIONS(391), 1, + aux_sym__whitespace_token1, + STATE(1240), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(4029), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(389), 38, + sym__block_close, + sym__blank_line_start, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -114611,6 +114676,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, @@ -114630,28 +114696,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [48327] = 9, - ACTIONS(4920), 1, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [48375] = 9, + ACTIONS(1628), 1, + aux_sym__newline_token1, + ACTIONS(4870), 1, anon_sym_DASH, - ACTIONS(4922), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4924), 1, + ACTIONS(4874), 1, sym__whitespace_ge_2, - ACTIONS(4926), 1, + ACTIONS(4876), 1, aux_sym__whitespace_token1, - ACTIONS(4930), 1, - aux_sym__newline_token1, - ACTIONS(5170), 1, - sym__block_close, - ACTIONS(5168), 2, + ACTIONS(5096), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5100), 1, + sym__last_token_punctuation, + ACTIONS(5098), 2, sym__word_no_digit, sym__digits, - STATE(1226), 4, + STATE(1343), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_2_repeat1, - ACTIONS(4918), 31, + aux_sym__html_comment_repeat1, + ACTIONS(4868), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -114683,28 +114753,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [48389] = 9, - ACTIONS(4936), 1, - anon_sym_LT, - ACTIONS(4938), 1, - aux_sym__html_block_1_token2, - ACTIONS(4940), 1, + [48437] = 9, + ACTIONS(4884), 1, + anon_sym_QMARK, + ACTIONS(4886), 1, + anon_sym_QMARK_GT, + ACTIONS(4888), 1, sym__whitespace_ge_2, - ACTIONS(4942), 1, + ACTIONS(4890), 1, aux_sym__whitespace_token1, - ACTIONS(4946), 1, + ACTIONS(4894), 1, aux_sym__newline_token1, - ACTIONS(5174), 1, + ACTIONS(5104), 1, sym__block_close, - ACTIONS(5172), 2, + ACTIONS(5102), 2, sym__word_no_digit, sym__digits, - STATE(1227), 4, + STATE(1285), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_1_repeat1, - ACTIONS(4934), 31, + aux_sym__html_block_3_repeat1, + ACTIONS(4882), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -114722,9 +114792,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, @@ -114736,25 +114806,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [48451] = 7, - ACTIONS(4132), 1, - sym__whitespace_ge_2, - ACTIONS(4134), 1, + [48499] = 4, + ACTIONS(391), 1, aux_sym__whitespace_token1, - ACTIONS(5180), 1, - aux_sym__newline_token1, - ACTIONS(5182), 1, + STATE(1237), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5106), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(389), 38, sym__block_close, - ACTIONS(5178), 2, - sym__word_no_digit, - sym__digits, - STATE(1279), 5, - sym__text, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__indented_chunk_repeat1, - ACTIONS(5176), 32, + sym__blank_line_start, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -114787,28 +114850,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [48509] = 9, - ACTIONS(5187), 1, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [48551] = 9, + ACTIONS(4921), 1, anon_sym_DASH, - ACTIONS(5190), 1, + ACTIONS(4923), 1, anon_sym_DASH_DASH_GT, - ACTIONS(5193), 1, + ACTIONS(4925), 1, sym__whitespace_ge_2, - ACTIONS(5196), 1, + ACTIONS(4927), 1, aux_sym__whitespace_token1, - ACTIONS(5202), 1, + ACTIONS(4931), 1, aux_sym__newline_token1, - ACTIONS(5205), 1, + ACTIONS(5110), 1, sym__block_close, - ACTIONS(5199), 2, + ACTIONS(5108), 2, sym__word_no_digit, sym__digits, - STATE(1243), 4, + STATE(1269), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_2_repeat1, - ACTIONS(5184), 31, + ACTIONS(4919), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -114840,28 +114907,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [48571] = 9, - ACTIONS(4936), 1, - anon_sym_LT, - ACTIONS(4938), 1, - aux_sym__html_block_1_token2, - ACTIONS(4940), 1, - sym__whitespace_ge_2, - ACTIONS(4942), 1, + [48613] = 4, + STATE(1247), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(399), 2, + anon_sym_RBRACK, aux_sym__whitespace_token1, - ACTIONS(4946), 1, - aux_sym__newline_token1, - ACTIONS(5207), 1, + ACTIONS(5112), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(397), 37, sym__block_close, - ACTIONS(4944), 2, - sym__word_no_digit, - sym__digits, - STATE(1253), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_1_repeat1, - ACTIONS(4934), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -114879,13 +114936,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, @@ -114893,28 +114950,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [48633] = 9, - ACTIONS(4920), 1, - anon_sym_DASH, - ACTIONS(4922), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4924), 1, + anon_sym_RBRACK_RBRACK_GT, sym__whitespace_ge_2, - ACTIONS(4926), 1, - aux_sym__whitespace_token1, - ACTIONS(4930), 1, - aux_sym__newline_token1, - ACTIONS(5209), 1, - sym__block_close, - ACTIONS(4928), 2, sym__word_no_digit, sym__digits, - STATE(1243), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_2_repeat1, - ACTIONS(4918), 31, + aux_sym__newline_token1, + [48665] = 4, + STATE(1247), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(405), 2, + anon_sym_RBRACK, + aux_sym__whitespace_token1, + ACTIONS(5114), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(403), 37, + sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -114927,6 +114979,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, @@ -114938,7 +114991,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, @@ -114946,28 +114998,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [48695] = 9, - ACTIONS(4864), 1, - anon_sym_QMARK, - ACTIONS(4866), 1, - anon_sym_QMARK_GT, - ACTIONS(4868), 1, + anon_sym_RBRACK_RBRACK_GT, sym__whitespace_ge_2, - ACTIONS(4870), 1, - aux_sym__whitespace_token1, - ACTIONS(4874), 1, - aux_sym__newline_token1, - ACTIONS(5211), 1, - sym__block_close, - ACTIONS(4898), 2, sym__word_no_digit, sym__digits, - STATE(1231), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_3_repeat1, - ACTIONS(4862), 31, + aux_sym__newline_token1, + [48717] = 4, + STATE(1247), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(391), 2, + anon_sym_RBRACK, + aux_sym__whitespace_token1, + ACTIONS(5112), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(389), 37, + sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -114988,10 +115035,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, @@ -114999,25 +115046,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [48757] = 7, - ACTIONS(4132), 1, + anon_sym_RBRACK_RBRACK_GT, sym__whitespace_ge_2, - ACTIONS(4134), 1, - aux_sym__whitespace_token1, - ACTIONS(5180), 1, - aux_sym__newline_token1, - ACTIONS(5213), 1, - sym__block_close, - ACTIONS(5178), 2, sym__word_no_digit, sym__digits, - STATE(1279), 5, - sym__text, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__indented_chunk_repeat1, - ACTIONS(5176), 32, + aux_sym__newline_token1, + [48769] = 4, + STATE(1246), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(391), 2, + anon_sym_RBRACK, + aux_sym__whitespace_token1, + ACTIONS(5117), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(389), 37, + sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -115042,7 +115087,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, @@ -115050,25 +115094,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [48815] = 7, - ACTIONS(4132), 1, + anon_sym_RBRACK_RBRACK_GT, sym__whitespace_ge_2, - ACTIONS(4134), 1, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [48821] = 9, + ACTIONS(4846), 1, + anon_sym_LT, + ACTIONS(4848), 1, + aux_sym__html_block_1_token2, + ACTIONS(4850), 1, + sym__whitespace_ge_2, + ACTIONS(4852), 1, aux_sym__whitespace_token1, - ACTIONS(5180), 1, + ACTIONS(4856), 1, aux_sym__newline_token1, - ACTIONS(5217), 1, + ACTIONS(5121), 1, sym__block_close, - ACTIONS(5215), 2, + ACTIONS(5119), 2, sym__word_no_digit, sym__digits, - STATE(1242), 5, - sym__text, + STATE(1196), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__indented_chunk_repeat1, - ACTIONS(5176), 32, + aux_sym__html_block_1_repeat1, + ACTIONS(4844), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -115086,7 +115138,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, @@ -115101,28 +115152,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [48873] = 9, - ACTIONS(4936), 1, - anon_sym_LT, - ACTIONS(4938), 1, - aux_sym__html_block_1_token2, - ACTIONS(4940), 1, - sym__whitespace_ge_2, - ACTIONS(4942), 1, + [48883] = 4, + STATE(1252), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(399), 2, + anon_sym_QMARK, aux_sym__whitespace_token1, - ACTIONS(4946), 1, - aux_sym__newline_token1, - ACTIONS(5221), 1, + ACTIONS(5123), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(397), 37, sym__block_close, - ACTIONS(5219), 2, - sym__word_no_digit, - sym__digits, - STATE(1321), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_1_repeat1, - ACTIONS(4934), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -115140,9 +115181,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, @@ -115154,28 +115195,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [48935] = 9, - ACTIONS(4920), 1, - anon_sym_DASH, - ACTIONS(4922), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4924), 1, + anon_sym_QMARK_GT, sym__whitespace_ge_2, - ACTIONS(4926), 1, - aux_sym__whitespace_token1, - ACTIONS(4930), 1, - aux_sym__newline_token1, - ACTIONS(5225), 1, - sym__block_close, - ACTIONS(5223), 2, sym__word_no_digit, sym__digits, - STATE(1314), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_2_repeat1, - ACTIONS(4918), 31, + aux_sym__newline_token1, + [48935] = 4, + STATE(1252), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(405), 2, + anon_sym_QMARK, + aux_sym__whitespace_token1, + ACTIONS(5125), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(403), 37, + sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -115188,6 +115224,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, @@ -115195,7 +115232,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, @@ -115207,28 +115243,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [48997] = 9, - ACTIONS(1614), 1, - aux_sym__newline_token1, - ACTIONS(4904), 1, - anon_sym_DASH, - ACTIONS(4908), 1, + anon_sym_QMARK_GT, sym__whitespace_ge_2, - ACTIONS(4910), 1, - aux_sym__whitespace_token1, - ACTIONS(5227), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5231), 1, - sym__last_token_punctuation, - ACTIONS(5229), 2, sym__word_no_digit, sym__digits, - STATE(1395), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(4902), 31, + aux_sym__newline_token1, + [48987] = 4, + STATE(1252), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(391), 2, + anon_sym_QMARK, + aux_sym__whitespace_token1, + ACTIONS(5123), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(389), 37, + sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -115241,6 +115272,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, @@ -115248,7 +115280,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, @@ -115260,28 +115291,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [49059] = 9, - ACTIONS(4884), 1, - anon_sym_RBRACK, - ACTIONS(4886), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(4888), 1, + anon_sym_QMARK_GT, sym__whitespace_ge_2, - ACTIONS(4890), 1, - aux_sym__whitespace_token1, - ACTIONS(4894), 1, - aux_sym__newline_token1, - ACTIONS(5233), 1, - sym__block_close, - ACTIONS(4892), 2, sym__word_no_digit, sym__digits, - STATE(1204), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_5_repeat1, - ACTIONS(4882), 31, + aux_sym__newline_token1, + [49039] = 4, + STATE(1251), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(391), 2, + anon_sym_QMARK, + aux_sym__whitespace_token1, + ACTIONS(5128), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(389), 37, + sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -115302,10 +115328,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, @@ -115313,28 +115339,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [49121] = 9, - ACTIONS(5238), 1, - anon_sym_LT, - ACTIONS(5241), 1, - aux_sym__html_block_1_token2, - ACTIONS(5244), 1, + anon_sym_QMARK_GT, sym__whitespace_ge_2, - ACTIONS(5247), 1, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [49091] = 7, + ACTIONS(5133), 1, + sym__whitespace_ge_2, + ACTIONS(5136), 1, aux_sym__whitespace_token1, - ACTIONS(5253), 1, + ACTIONS(5142), 1, aux_sym__newline_token1, - ACTIONS(5256), 1, + ACTIONS(5145), 1, sym__block_close, - ACTIONS(5250), 2, + ACTIONS(5139), 2, sym__word_no_digit, sym__digits, - STATE(1253), 4, + STATE(1255), 5, + sym__text, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_1_repeat1, - ACTIONS(5235), 31, + aux_sym__indented_chunk_repeat1, + ACTIONS(5130), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -115352,6 +115380,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, @@ -115366,25 +115395,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [49183] = 7, - ACTIONS(4132), 1, + [49149] = 9, + ACTIONS(4884), 1, + anon_sym_QMARK, + ACTIONS(4886), 1, + anon_sym_QMARK_GT, + ACTIONS(4888), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4890), 1, aux_sym__whitespace_token1, - ACTIONS(5180), 1, + ACTIONS(4894), 1, aux_sym__newline_token1, - ACTIONS(5260), 1, + ACTIONS(5149), 1, sym__block_close, - ACTIONS(5258), 2, + ACTIONS(5147), 2, sym__word_no_digit, sym__digits, - STATE(1247), 5, - sym__text, + STATE(1205), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__indented_chunk_repeat1, - ACTIONS(5176), 32, + aux_sym__html_block_3_repeat1, + ACTIONS(4882), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -115405,7 +115437,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, @@ -115417,28 +115448,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [49241] = 9, - ACTIONS(4936), 1, - anon_sym_LT, - ACTIONS(4938), 1, - aux_sym__html_block_1_token2, - ACTIONS(4940), 1, - sym__whitespace_ge_2, - ACTIONS(4942), 1, + [49211] = 7, + ACTIONS(4345), 1, + anon_sym_LPAREN, + ACTIONS(4866), 1, aux_sym__whitespace_token1, - ACTIONS(4946), 1, + ACTIONS(4579), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(4862), 3, + anon_sym_RPAREN, + sym__whitespace_ge_2, aux_sym__newline_token1, - ACTIONS(5264), 1, - sym__block_close, - ACTIONS(5262), 2, + STATE(1282), 3, + sym__link_destination_parenthesis, + sym__word, + aux_sym_link_destination_repeat2, + ACTIONS(5151), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(1261), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_1_repeat1, - ACTIONS(4934), 31, + ACTIONS(4577), 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, + [49269] = 4, + STATE(1258), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(405), 2, + anon_sym_DASH, + aux_sym__whitespace_token1, + ACTIONS(5153), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(403), 37, + sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -115451,11 +115523,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, @@ -115470,28 +115542,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [49303] = 9, - ACTIONS(4920), 1, - anon_sym_DASH, - ACTIONS(4922), 1, anon_sym_DASH_DASH_GT, - ACTIONS(4924), 1, sym__whitespace_ge_2, - ACTIONS(4926), 1, - aux_sym__whitespace_token1, - ACTIONS(4930), 1, - aux_sym__newline_token1, - ACTIONS(5268), 1, - sym__block_close, - ACTIONS(5266), 2, sym__word_no_digit, sym__digits, - STATE(1262), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_2_repeat1, - ACTIONS(4918), 31, + aux_sym__newline_token1, + [49321] = 4, + STATE(1258), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(391), 2, + anon_sym_DASH, + aux_sym__whitespace_token1, + ACTIONS(4860), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(389), 37, + sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -115523,28 +115590,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [49365] = 9, - ACTIONS(4864), 1, - anon_sym_QMARK, - ACTIONS(4866), 1, - anon_sym_QMARK_GT, - ACTIONS(4868), 1, + anon_sym_DASH_DASH_GT, sym__whitespace_ge_2, - ACTIONS(4870), 1, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [49373] = 9, + ACTIONS(4921), 1, + anon_sym_DASH, + ACTIONS(4923), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4925), 1, + sym__whitespace_ge_2, + ACTIONS(4927), 1, aux_sym__whitespace_token1, - ACTIONS(4874), 1, + ACTIONS(4931), 1, aux_sym__newline_token1, - ACTIONS(5272), 1, + ACTIONS(5156), 1, sym__block_close, - ACTIONS(5270), 2, + ACTIONS(4929), 2, sym__word_no_digit, sym__digits, - STATE(1263), 4, + STATE(1314), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_3_repeat1, - ACTIONS(4862), 31, + aux_sym__html_block_2_repeat1, + ACTIONS(4919), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -115557,7 +115629,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, @@ -115565,6 +115636,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, @@ -115576,18 +115648,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [49427] = 4, - ACTIONS(409), 1, - aux_sym__whitespace_token1, - STATE(1194), 1, + [49435] = 4, + STATE(1187), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5274), 3, + ACTIONS(391), 2, + anon_sym_DASH, + aux_sym__whitespace_token1, + ACTIONS(5158), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(407), 38, + ACTIONS(389), 37, sym__block_close, - sym__fenced_code_block_end_backtick, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -115600,7 +115672,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, @@ -115620,32 +115691,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, - [49479] = 9, - ACTIONS(4884), 1, - anon_sym_RBRACK, - ACTIONS(4886), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(4888), 1, + [49487] = 9, + ACTIONS(4846), 1, + anon_sym_LT, + ACTIONS(4848), 1, + aux_sym__html_block_1_token2, + ACTIONS(4850), 1, sym__whitespace_ge_2, - ACTIONS(4890), 1, + ACTIONS(4852), 1, aux_sym__whitespace_token1, - ACTIONS(4894), 1, + ACTIONS(4856), 1, aux_sym__newline_token1, - ACTIONS(5278), 1, + ACTIONS(5162), 1, sym__block_close, - ACTIONS(5276), 2, + ACTIONS(5160), 2, sym__word_no_digit, sym__digits, - STATE(1265), 4, + STATE(1293), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_5_repeat1, - ACTIONS(4882), 31, + aux_sym__html_block_1_repeat1, + ACTIONS(4844), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -115663,13 +115735,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, @@ -115677,28 +115749,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [49541] = 9, - ACTIONS(4864), 1, - anon_sym_QMARK, - ACTIONS(4866), 1, - anon_sym_QMARK_GT, - ACTIONS(4868), 1, - sym__whitespace_ge_2, - ACTIONS(4870), 1, + [49549] = 4, + STATE(1264), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(399), 2, + anon_sym_LT, aux_sym__whitespace_token1, - ACTIONS(4874), 1, - aux_sym__newline_token1, - ACTIONS(5282), 1, + ACTIONS(5164), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(397), 37, sym__block_close, - ACTIONS(5280), 2, - sym__word_no_digit, - sym__digits, - STATE(1308), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_3_repeat1, - ACTIONS(4862), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -115716,9 +115778,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, @@ -115730,28 +115792,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [49603] = 9, - ACTIONS(4936), 1, - anon_sym_LT, - ACTIONS(4938), 1, aux_sym__html_block_1_token2, - ACTIONS(4940), 1, sym__whitespace_ge_2, - ACTIONS(4942), 1, - aux_sym__whitespace_token1, - ACTIONS(4946), 1, - aux_sym__newline_token1, - ACTIONS(5284), 1, - sym__block_close, - ACTIONS(4944), 2, sym__word_no_digit, sym__digits, - STATE(1253), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_1_repeat1, - ACTIONS(4934), 31, + aux_sym__newline_token1, + [49601] = 4, + STATE(1264), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(405), 2, + anon_sym_LT, + aux_sym__whitespace_token1, + ACTIONS(5166), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(403), 37, + sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -115783,28 +115840,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [49665] = 9, - ACTIONS(4920), 1, - anon_sym_DASH, - ACTIONS(4922), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4924), 1, + aux_sym__html_block_1_token2, sym__whitespace_ge_2, - ACTIONS(4926), 1, - aux_sym__whitespace_token1, - ACTIONS(4930), 1, - aux_sym__newline_token1, - ACTIONS(5286), 1, - sym__block_close, - ACTIONS(4928), 2, sym__word_no_digit, sym__digits, - STATE(1243), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_2_repeat1, - ACTIONS(4918), 31, + aux_sym__newline_token1, + [49653] = 4, + STATE(1264), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(391), 2, + anon_sym_LT, + aux_sym__whitespace_token1, + ACTIONS(5164), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(389), 37, + sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -115817,11 +115869,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, @@ -115836,28 +115888,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [49727] = 9, - ACTIONS(4864), 1, - anon_sym_QMARK, - ACTIONS(4866), 1, - anon_sym_QMARK_GT, - ACTIONS(4868), 1, + aux_sym__html_block_1_token2, sym__whitespace_ge_2, - ACTIONS(4870), 1, - aux_sym__whitespace_token1, - ACTIONS(4874), 1, - aux_sym__newline_token1, - ACTIONS(5288), 1, - sym__block_close, - ACTIONS(4898), 2, sym__word_no_digit, sym__digits, - STATE(1231), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_3_repeat1, - ACTIONS(4862), 31, + aux_sym__newline_token1, + [49705] = 4, + STATE(1263), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(391), 2, + anon_sym_LT, + aux_sym__whitespace_token1, + ACTIONS(5169), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(389), 37, + sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -115875,9 +115922,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, @@ -115889,28 +115936,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [49789] = 9, - ACTIONS(4884), 1, - anon_sym_RBRACK, - ACTIONS(4886), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(4888), 1, + aux_sym__html_block_1_token2, sym__whitespace_ge_2, - ACTIONS(4890), 1, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [49757] = 9, + ACTIONS(4921), 1, + anon_sym_DASH, + ACTIONS(4923), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4925), 1, + sym__whitespace_ge_2, + ACTIONS(4927), 1, aux_sym__whitespace_token1, - ACTIONS(4894), 1, + ACTIONS(4931), 1, aux_sym__newline_token1, - ACTIONS(5292), 1, + ACTIONS(5173), 1, sym__block_close, - ACTIONS(5290), 2, + ACTIONS(5171), 2, sym__word_no_digit, sym__digits, - STATE(1298), 4, + STATE(1296), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_5_repeat1, - ACTIONS(4882), 31, + aux_sym__html_block_2_repeat1, + ACTIONS(4919), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -115923,7 +115975,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, @@ -115935,6 +115986,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, @@ -115942,27 +115994,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [49851] = 9, + [49819] = 9, ACTIONS(4884), 1, - anon_sym_RBRACK, + anon_sym_QMARK, ACTIONS(4886), 1, - anon_sym_RBRACK_RBRACK_GT, + anon_sym_QMARK_GT, ACTIONS(4888), 1, sym__whitespace_ge_2, ACTIONS(4890), 1, aux_sym__whitespace_token1, ACTIONS(4894), 1, aux_sym__newline_token1, - ACTIONS(5294), 1, + ACTIONS(5177), 1, sym__block_close, - ACTIONS(4892), 2, + ACTIONS(5175), 2, sym__word_no_digit, sym__digits, - STATE(1204), 4, + STATE(1297), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_5_repeat1, + aux_sym__html_block_3_repeat1, ACTIONS(4882), 31, anon_sym_BANG, anon_sym_DQUOTE, @@ -115984,51 +116036,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, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - [49913] = 5, - ACTIONS(379), 1, - aux_sym__whitespace_token1, - ACTIONS(5296), 1, - sym__line_ending, - STATE(1562), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5298), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(377), 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, - anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, @@ -116040,83 +116047,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, - [49967] = 7, - ACTIONS(4367), 1, - anon_sym_LPAREN, - ACTIONS(4600), 1, - aux_sym__whitespace_token1, - ACTIONS(4594), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(4596), 3, - anon_sym_RPAREN, - sym__whitespace_ge_2, - aux_sym__newline_token1, - STATE(1214), 3, - sym__link_destination_parenthesis, - sym__word, - aux_sym_link_destination_repeat2, - ACTIONS(4598), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4592), 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, + [49881] = 9, + ACTIONS(4921), 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_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - [50025] = 9, - ACTIONS(4936), 1, - anon_sym_LT, - ACTIONS(4938), 1, - aux_sym__html_block_1_token2, - ACTIONS(4940), 1, + ACTIONS(4923), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4925), 1, sym__whitespace_ge_2, - ACTIONS(4942), 1, + ACTIONS(4927), 1, aux_sym__whitespace_token1, - ACTIONS(4946), 1, + ACTIONS(4931), 1, aux_sym__newline_token1, - ACTIONS(5302), 1, + ACTIONS(5179), 1, sym__block_close, - ACTIONS(5300), 2, + ACTIONS(4929), 2, sym__word_no_digit, sym__digits, - STATE(1272), 4, + STATE(1314), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_1_repeat1, - ACTIONS(4934), 31, + aux_sym__html_block_2_repeat1, + ACTIONS(4919), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -116129,11 +116081,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, @@ -116148,28 +116100,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [50087] = 9, - ACTIONS(4920), 1, - anon_sym_DASH, - ACTIONS(4922), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4924), 1, - sym__whitespace_ge_2, - ACTIONS(4926), 1, + [49943] = 4, + ACTIONS(391), 1, aux_sym__whitespace_token1, - ACTIONS(4930), 1, - aux_sym__newline_token1, - ACTIONS(5306), 1, + STATE(1316), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5025), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(389), 38, sym__block_close, - ACTIONS(5304), 2, - sym__word_no_digit, - sym__digits, - STATE(1273), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_2_repeat1, - ACTIONS(4918), 31, + sym__fenced_code_block_end_backtick, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -116182,6 +116124,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, @@ -116201,28 +116144,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [50149] = 9, - ACTIONS(4864), 1, - anon_sym_QMARK, - ACTIONS(4866), 1, - anon_sym_QMARK_GT, - ACTIONS(4868), 1, sym__whitespace_ge_2, - ACTIONS(4870), 1, - aux_sym__whitespace_token1, - ACTIONS(4874), 1, - aux_sym__newline_token1, - ACTIONS(5310), 1, - sym__block_close, - ACTIONS(5308), 2, sym__word_no_digit, sym__digits, - STATE(1274), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_3_repeat1, - ACTIONS(4862), 31, + aux_sym__newline_token1, + [49995] = 4, + ACTIONS(391), 1, + aux_sym__whitespace_token1, + STATE(1220), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5181), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(389), 38, + sym__block_close, + sym__fenced_code_block_end_backtick, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -116243,6 +116180,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, @@ -116254,28 +116192,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [50211] = 9, - ACTIONS(4884), 1, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [50047] = 9, + ACTIONS(4903), 1, anon_sym_RBRACK, - ACTIONS(4886), 1, + ACTIONS(4905), 1, anon_sym_RBRACK_RBRACK_GT, - ACTIONS(4888), 1, + ACTIONS(4907), 1, sym__whitespace_ge_2, - ACTIONS(4890), 1, + ACTIONS(4909), 1, aux_sym__whitespace_token1, - ACTIONS(4894), 1, + ACTIONS(4913), 1, aux_sym__newline_token1, - ACTIONS(5314), 1, + ACTIONS(5185), 1, sym__block_close, - ACTIONS(5312), 2, + ACTIONS(5183), 2, sym__word_no_digit, sym__digits, - STATE(1275), 4, + STATE(1230), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_5_repeat1, - ACTIONS(4882), 31, + ACTIONS(4901), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -116307,28 +116249,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [50273] = 9, - ACTIONS(4936), 1, - anon_sym_LT, - ACTIONS(4938), 1, - aux_sym__html_block_1_token2, - ACTIONS(4940), 1, + [50109] = 9, + ACTIONS(4884), 1, + anon_sym_QMARK, + ACTIONS(4886), 1, + anon_sym_QMARK_GT, + ACTIONS(4888), 1, sym__whitespace_ge_2, - ACTIONS(4942), 1, + ACTIONS(4890), 1, aux_sym__whitespace_token1, - ACTIONS(4946), 1, + ACTIONS(4894), 1, aux_sym__newline_token1, - ACTIONS(5316), 1, + ACTIONS(5189), 1, sym__block_close, - ACTIONS(4944), 2, + ACTIONS(5187), 2, sym__word_no_digit, sym__digits, - STATE(1253), 4, + STATE(1236), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_1_repeat1, - ACTIONS(4934), 31, + aux_sym__html_block_3_repeat1, + ACTIONS(4882), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -116346,9 +116288,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, @@ -116360,28 +116302,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [50335] = 9, - ACTIONS(4920), 1, + [50171] = 9, + ACTIONS(4921), 1, anon_sym_DASH, - ACTIONS(4922), 1, + ACTIONS(4923), 1, anon_sym_DASH_DASH_GT, - ACTIONS(4924), 1, + ACTIONS(4925), 1, sym__whitespace_ge_2, - ACTIONS(4926), 1, + ACTIONS(4927), 1, aux_sym__whitespace_token1, - ACTIONS(4930), 1, + ACTIONS(4931), 1, aux_sym__newline_token1, - ACTIONS(5318), 1, + ACTIONS(5193), 1, sym__block_close, - ACTIONS(4928), 2, + ACTIONS(5191), 2, sym__word_no_digit, sym__digits, - STATE(1243), 4, + STATE(1238), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_2_repeat1, - ACTIONS(4918), 31, + ACTIONS(4919), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -116413,28 +116355,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [50397] = 9, - ACTIONS(4864), 1, - anon_sym_QMARK, - ACTIONS(4866), 1, - anon_sym_QMARK_GT, - ACTIONS(4868), 1, + [50233] = 9, + ACTIONS(4846), 1, + anon_sym_LT, + ACTIONS(4848), 1, + aux_sym__html_block_1_token2, + ACTIONS(4850), 1, sym__whitespace_ge_2, - ACTIONS(4870), 1, + ACTIONS(4852), 1, aux_sym__whitespace_token1, - ACTIONS(4874), 1, + ACTIONS(4856), 1, aux_sym__newline_token1, - ACTIONS(5320), 1, + ACTIONS(5197), 1, sym__block_close, - ACTIONS(4898), 2, + ACTIONS(5195), 2, sym__word_no_digit, sym__digits, - STATE(1231), 4, + STATE(1239), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_3_repeat1, - ACTIONS(4862), 31, + aux_sym__html_block_1_repeat1, + ACTIONS(4844), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -116452,9 +116394,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, @@ -116466,28 +116408,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [50459] = 9, - ACTIONS(4884), 1, - anon_sym_RBRACK, - ACTIONS(4886), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(4888), 1, + [50295] = 9, + ACTIONS(4846), 1, + anon_sym_LT, + ACTIONS(4848), 1, + aux_sym__html_block_1_token2, + ACTIONS(4850), 1, sym__whitespace_ge_2, - ACTIONS(4890), 1, + ACTIONS(4852), 1, aux_sym__whitespace_token1, - ACTIONS(4894), 1, + ACTIONS(4856), 1, aux_sym__newline_token1, - ACTIONS(5322), 1, + ACTIONS(5201), 1, sym__block_close, - ACTIONS(4892), 2, + ACTIONS(5199), 2, sym__word_no_digit, sym__digits, - STATE(1204), 4, + STATE(1321), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_5_repeat1, - ACTIONS(4882), 31, + aux_sym__html_block_1_repeat1, + ACTIONS(4844), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -116505,13 +116447,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, @@ -116519,18 +116461,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [50521] = 4, - ACTIONS(409), 1, + [50357] = 9, + ACTIONS(4903), 1, + anon_sym_RBRACK, + ACTIONS(4905), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(4907), 1, + sym__whitespace_ge_2, + ACTIONS(4909), 1, aux_sym__whitespace_token1, - STATE(1277), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(4154), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(407), 38, + ACTIONS(4913), 1, + aux_sym__newline_token1, + ACTIONS(5205), 1, sym__block_close, - sym__blank_line_start, + ACTIONS(5203), 2, + sym__word_no_digit, + sym__digits, + STATE(1202), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_5_repeat1, + ACTIONS(4901), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -116555,7 +116507,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, @@ -116563,22 +116514,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + [50419] = 9, + ACTIONS(4846), 1, + anon_sym_LT, + ACTIONS(4848), 1, + aux_sym__html_block_1_token2, + ACTIONS(4850), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [50573] = 4, - ACTIONS(399), 1, + ACTIONS(4852), 1, aux_sym__whitespace_token1, - STATE(1277), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5324), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(397), 38, + ACTIONS(4856), 1, + aux_sym__newline_token1, + ACTIONS(5209), 1, sym__block_close, - sym__blank_line_start, + ACTIONS(5207), 2, + sym__word_no_digit, + sym__digits, + STATE(1206), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_1_repeat1, + ACTIONS(4844), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -116596,7 +116553,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, @@ -116611,22 +116567,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + [50481] = 9, + ACTIONS(4921), 1, + anon_sym_DASH, + ACTIONS(4923), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4925), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [50625] = 4, - ACTIONS(391), 1, + ACTIONS(4927), 1, aux_sym__whitespace_token1, - STATE(1277), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(4154), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(389), 38, + ACTIONS(4931), 1, + aux_sym__newline_token1, + ACTIONS(5213), 1, sym__block_close, - sym__blank_line_start, + ACTIONS(5211), 2, + sym__word_no_digit, + sym__digits, + STATE(1260), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_2_repeat1, + ACTIONS(4919), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -116639,7 +116601,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, @@ -116659,29 +116620,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + [50543] = 9, + ACTIONS(4921), 1, + anon_sym_DASH, + ACTIONS(4923), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4925), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [50677] = 7, - ACTIONS(5330), 1, - sym__whitespace_ge_2, - ACTIONS(5333), 1, + ACTIONS(4927), 1, aux_sym__whitespace_token1, - ACTIONS(5339), 1, + ACTIONS(4931), 1, aux_sym__newline_token1, - ACTIONS(5342), 1, + ACTIONS(5217), 1, sym__block_close, - ACTIONS(5336), 2, + ACTIONS(5215), 2, sym__word_no_digit, sym__digits, - STATE(1279), 5, - sym__text, + STATE(1232), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__indented_chunk_repeat1, - ACTIONS(5327), 32, + aux_sym__html_block_2_repeat1, + ACTIONS(4919), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -116694,7 +116654,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, @@ -116714,18 +116673,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [50735] = 4, - ACTIONS(391), 1, + [50605] = 9, + ACTIONS(4884), 1, + anon_sym_QMARK, + ACTIONS(4886), 1, + anon_sym_QMARK_GT, + ACTIONS(4888), 1, + sym__whitespace_ge_2, + ACTIONS(4890), 1, aux_sym__whitespace_token1, - STATE(1276), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5344), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(389), 38, + ACTIONS(4894), 1, + aux_sym__newline_token1, + ACTIONS(5221), 1, sym__block_close, - sym__blank_line_start, + ACTIONS(5219), 2, + sym__word_no_digit, + sym__digits, + STATE(1324), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_3_repeat1, + ACTIONS(4882), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -116746,7 +116715,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, @@ -116758,31 +116726,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + [50667] = 7, + ACTIONS(4345), 1, + anon_sym_LPAREN, + ACTIONS(5225), 1, + aux_sym__whitespace_token1, + ACTIONS(4579), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(5223), 3, + anon_sym_RPAREN, sym__whitespace_ge_2, + aux_sym__newline_token1, + STATE(1283), 3, + sym__link_destination_parenthesis, + sym__word, + aux_sym_link_destination_repeat2, + ACTIONS(4864), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [50787] = 4, - STATE(1282), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(409), 2, - anon_sym_RBRACK, - aux_sym__whitespace_token1, - ACTIONS(5346), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(407), 37, - sym__block_close, + ACTIONS(4577), 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, @@ -116797,7 +116769,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, @@ -116805,32 +116777,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_RBRACK_RBRACK_GT, + [50725] = 7, + ACTIONS(5233), 1, + anon_sym_LPAREN, + ACTIONS(5241), 1, + aux_sym__whitespace_token1, + ACTIONS(5230), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(5236), 3, + anon_sym_RPAREN, sym__whitespace_ge_2, + aux_sym__newline_token1, + STATE(1283), 3, + sym__link_destination_parenthesis, + sym__word, + aux_sym_link_destination_repeat2, + ACTIONS(5238), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [50839] = 4, - STATE(1282), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(399), 2, - anon_sym_RBRACK, - aux_sym__whitespace_token1, - ACTIONS(5348), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(397), 37, - sym__block_close, + ACTIONS(5227), 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, @@ -116845,7 +116820,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, @@ -116853,23 +116828,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + [50783] = 9, + ACTIONS(4903), 1, + anon_sym_RBRACK, + ACTIONS(4905), 1, anon_sym_RBRACK_RBRACK_GT, + ACTIONS(4907), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [50891] = 4, - STATE(1282), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(391), 2, - anon_sym_RBRACK, + ACTIONS(4909), 1, aux_sym__whitespace_token1, - ACTIONS(5346), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(389), 37, + ACTIONS(4913), 1, + aux_sym__newline_token1, + ACTIONS(5243), 1, sym__block_close, + ACTIONS(4955), 2, + sym__word_no_digit, + sym__digits, + STATE(1294), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_5_repeat1, + ACTIONS(4901), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -116901,23 +116881,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_RBRACK_RBRACK_GT, + [50845] = 9, + ACTIONS(4884), 1, + anon_sym_QMARK, + ACTIONS(4886), 1, + anon_sym_QMARK_GT, + ACTIONS(4888), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [50943] = 4, - STATE(1281), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(391), 2, - anon_sym_RBRACK, + ACTIONS(4890), 1, aux_sym__whitespace_token1, - ACTIONS(5351), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(389), 37, + ACTIONS(4894), 1, + aux_sym__newline_token1, + ACTIONS(5245), 1, sym__block_close, + ACTIONS(4892), 2, + sym__word_no_digit, + sym__digits, + STATE(1299), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_3_repeat1, + ACTIONS(4882), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -116938,10 +116923,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, @@ -116949,23 +116934,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_RBRACK_RBRACK_GT, + [50907] = 9, + ACTIONS(4921), 1, + anon_sym_DASH, + ACTIONS(4923), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4925), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [50995] = 4, - STATE(1286), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(409), 2, - anon_sym_QMARK, + ACTIONS(4927), 1, aux_sym__whitespace_token1, - ACTIONS(5353), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(407), 37, + ACTIONS(4931), 1, + aux_sym__newline_token1, + ACTIONS(5247), 1, sym__block_close, + ACTIONS(4929), 2, + sym__word_no_digit, + sym__digits, + STATE(1314), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_2_repeat1, + ACTIONS(4919), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -116978,7 +116968,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, @@ -116986,6 +116975,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, @@ -116997,23 +116987,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_QMARK_GT, + [50969] = 9, + ACTIONS(4846), 1, + anon_sym_LT, + ACTIONS(4848), 1, + aux_sym__html_block_1_token2, + ACTIONS(4850), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [51047] = 4, - STATE(1286), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(399), 2, - anon_sym_QMARK, + ACTIONS(4852), 1, aux_sym__whitespace_token1, - ACTIONS(5355), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(397), 37, + ACTIONS(4856), 1, + aux_sym__newline_token1, + ACTIONS(5249), 1, sym__block_close, + ACTIONS(4935), 2, + sym__word_no_digit, + sym__digits, + STATE(1315), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_1_repeat1, + ACTIONS(4844), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -117031,9 +117026,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, @@ -117045,23 +117040,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_QMARK_GT, + [51031] = 9, + ACTIONS(1628), 1, + aux_sym__newline_token1, + ACTIONS(4870), 1, + anon_sym_DASH, + ACTIONS(4874), 1, sym__whitespace_ge_2, + ACTIONS(4876), 1, + aux_sym__whitespace_token1, + ACTIONS(5251), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5255), 1, + sym__last_token_punctuation, + ACTIONS(5253), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [51099] = 4, - STATE(1286), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(391), 2, - anon_sym_QMARK, - aux_sym__whitespace_token1, - ACTIONS(5353), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(389), 37, - sym__block_close, + STATE(1410), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_comment_repeat1, + ACTIONS(4868), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -117074,7 +117074,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, @@ -117082,6 +117081,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, @@ -117093,23 +117093,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, - [51151] = 4, - STATE(1285), 1, + [51093] = 5, + ACTIONS(5257), 1, + sym__line_ending, + STATE(1418), 1, aux_sym__ignore_matching_tokens, - ACTIONS(391), 2, - anon_sym_QMARK, + ACTIONS(379), 2, + anon_sym_RBRACK, aux_sym__whitespace_token1, - ACTIONS(5358), 3, + ACTIONS(5259), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(389), 37, - sym__block_close, + ACTIONS(377), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -117130,10 +117126,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, @@ -117141,23 +117137,33 @@ 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, - [51203] = 4, - STATE(1290), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(409), 2, - anon_sym_DASH, + [51147] = 9, + ACTIONS(4884), 1, + anon_sym_QMARK, + ACTIONS(4886), 1, + anon_sym_QMARK_GT, + ACTIONS(4888), 1, + sym__whitespace_ge_2, + ACTIONS(4890), 1, aux_sym__whitespace_token1, - ACTIONS(5360), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(407), 37, + ACTIONS(4894), 1, + aux_sym__newline_token1, + ACTIONS(5263), 1, sym__block_close, + ACTIONS(5261), 2, + sym__word_no_digit, + sym__digits, + STATE(1190), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_3_repeat1, + ACTIONS(4882), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -117170,6 +117176,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, @@ -117177,7 +117184,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, @@ -117189,23 +117195,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_DASH_DASH_GT, + [51209] = 9, + ACTIONS(4903), 1, + anon_sym_RBRACK, + ACTIONS(4905), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(4907), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [51255] = 4, - STATE(1290), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(399), 2, - anon_sym_DASH, + ACTIONS(4909), 1, aux_sym__whitespace_token1, - ACTIONS(5362), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(397), 37, + ACTIONS(4913), 1, + aux_sym__newline_token1, + ACTIONS(5267), 1, sym__block_close, + ACTIONS(5265), 2, + sym__word_no_digit, + sym__digits, + STATE(1298), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_5_repeat1, + ACTIONS(4901), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -117218,6 +117229,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, @@ -117229,7 +117241,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, @@ -117237,23 +117248,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_DASH_DASH_GT, + [51271] = 9, + ACTIONS(4903), 1, + anon_sym_RBRACK, + ACTIONS(4905), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(4907), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [51307] = 4, - STATE(1290), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(391), 2, - anon_sym_DASH, + ACTIONS(4909), 1, aux_sym__whitespace_token1, - ACTIONS(5360), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(389), 37, + ACTIONS(4913), 1, + aux_sym__newline_token1, + ACTIONS(5271), 1, sym__block_close, + ACTIONS(5269), 2, + sym__word_no_digit, + sym__digits, + STATE(1213), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_5_repeat1, + ACTIONS(4901), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -117266,6 +117282,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, @@ -117277,7 +117294,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, @@ -117285,23 +117301,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_DASH_DASH_GT, + [51333] = 9, + ACTIONS(4846), 1, + anon_sym_LT, + ACTIONS(4848), 1, + aux_sym__html_block_1_token2, + ACTIONS(4850), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [51359] = 4, - STATE(1289), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(391), 2, - anon_sym_DASH, + ACTIONS(4852), 1, aux_sym__whitespace_token1, - ACTIONS(5365), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(389), 37, + ACTIONS(4856), 1, + aux_sym__newline_token1, + ACTIONS(5273), 1, sym__block_close, + ACTIONS(4935), 2, + sym__word_no_digit, + sym__digits, + STATE(1315), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_1_repeat1, + ACTIONS(4844), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -117314,11 +117335,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, @@ -117333,24 +117354,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_DASH_DASH_GT, + [51395] = 9, + ACTIONS(5278), 1, + anon_sym_RBRACK, + ACTIONS(5281), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(5284), 1, sym__whitespace_ge_2, + ACTIONS(5287), 1, + aux_sym__whitespace_token1, + ACTIONS(5293), 1, + aux_sym__newline_token1, + ACTIONS(5296), 1, + sym__block_close, + ACTIONS(5290), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [51411] = 5, - ACTIONS(5367), 1, - sym__line_ending, - STATE(1488), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(379), 2, - anon_sym_QMARK, - aux_sym__whitespace_token1, - ACTIONS(5369), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(377), 36, + STATE(1294), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_5_repeat1, + ACTIONS(5275), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -117371,10 +117396,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, @@ -117382,23 +117407,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, - [51465] = 4, - STATE(1295), 1, + [51457] = 5, + ACTIONS(5298), 1, + sym__line_ending, + STATE(1341), 1, aux_sym__ignore_matching_tokens, - ACTIONS(409), 2, - anon_sym_LT, + ACTIONS(379), 2, + anon_sym_QMARK, aux_sym__whitespace_token1, - ACTIONS(5371), 3, + ACTIONS(5300), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(407), 37, - sym__block_close, + ACTIONS(377), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -117416,9 +117437,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, @@ -117430,23 +117451,33 @@ 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, - [51517] = 4, - STATE(1295), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(399), 2, - anon_sym_LT, + [51511] = 9, + ACTIONS(4921), 1, + anon_sym_DASH, + ACTIONS(4923), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4925), 1, + sym__whitespace_ge_2, + ACTIONS(4927), 1, aux_sym__whitespace_token1, - ACTIONS(5373), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(397), 37, + ACTIONS(4931), 1, + aux_sym__newline_token1, + ACTIONS(5302), 1, sym__block_close, + ACTIONS(4929), 2, + sym__word_no_digit, + sym__digits, + STATE(1314), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_2_repeat1, + ACTIONS(4919), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -117459,11 +117490,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, @@ -117478,23 +117509,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - aux_sym__html_block_1_token2, + [51573] = 9, + ACTIONS(4884), 1, + anon_sym_QMARK, + ACTIONS(4886), 1, + anon_sym_QMARK_GT, + ACTIONS(4888), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [51569] = 4, - STATE(1295), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(391), 2, - anon_sym_LT, + ACTIONS(4890), 1, aux_sym__whitespace_token1, - ACTIONS(5371), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(389), 37, + ACTIONS(4894), 1, + aux_sym__newline_token1, + ACTIONS(5304), 1, sym__block_close, + ACTIONS(4892), 2, + sym__word_no_digit, + sym__digits, + STATE(1299), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_3_repeat1, + ACTIONS(4882), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -117512,9 +117548,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, @@ -117526,23 +117562,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - aux_sym__html_block_1_token2, + [51635] = 9, + ACTIONS(4903), 1, + anon_sym_RBRACK, + ACTIONS(4905), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(4907), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [51621] = 4, - STATE(1294), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(391), 2, - anon_sym_LT, + ACTIONS(4909), 1, aux_sym__whitespace_token1, - ACTIONS(5376), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(389), 37, + ACTIONS(4913), 1, + aux_sym__newline_token1, + ACTIONS(5306), 1, sym__block_close, + ACTIONS(4955), 2, + sym__word_no_digit, + sym__digits, + STATE(1294), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_5_repeat1, + ACTIONS(4901), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -117560,13 +117601,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, @@ -117574,33 +117615,28 @@ 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, - [51673] = 9, - ACTIONS(4884), 1, - anon_sym_RBRACK, - ACTIONS(4886), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(4888), 1, + [51697] = 9, + ACTIONS(5311), 1, + anon_sym_QMARK, + ACTIONS(5314), 1, + anon_sym_QMARK_GT, + ACTIONS(5317), 1, sym__whitespace_ge_2, - ACTIONS(4890), 1, + ACTIONS(5320), 1, aux_sym__whitespace_token1, - ACTIONS(4894), 1, + ACTIONS(5326), 1, aux_sym__newline_token1, - ACTIONS(5378), 1, + ACTIONS(5329), 1, sym__block_close, - ACTIONS(4892), 2, + ACTIONS(5323), 2, sym__word_no_digit, sym__digits, - STATE(1204), 4, + STATE(1299), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_5_repeat1, - ACTIONS(4882), 31, + aux_sym__html_block_3_repeat1, + ACTIONS(5308), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -117621,10 +117657,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, @@ -117632,28 +117668,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [51735] = 9, - ACTIONS(4936), 1, - anon_sym_LT, - ACTIONS(4938), 1, - aux_sym__html_block_1_token2, - ACTIONS(4940), 1, + [51759] = 9, + ACTIONS(4903), 1, + anon_sym_RBRACK, + ACTIONS(4905), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(4907), 1, sym__whitespace_ge_2, - ACTIONS(4942), 1, + ACTIONS(4909), 1, aux_sym__whitespace_token1, - ACTIONS(4946), 1, + ACTIONS(4913), 1, aux_sym__newline_token1, - ACTIONS(5382), 1, + ACTIONS(5331), 1, sym__block_close, - ACTIONS(5380), 2, + ACTIONS(4955), 2, sym__word_no_digit, sym__digits, - STATE(1303), 4, + STATE(1294), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_1_repeat1, - ACTIONS(4934), 31, + aux_sym__html_block_5_repeat1, + ACTIONS(4901), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -117671,13 +117707,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, @@ -117685,28 +117721,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [51797] = 9, - ACTIONS(4920), 1, - anon_sym_DASH, - ACTIONS(4922), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4924), 1, + [51821] = 9, + ACTIONS(4846), 1, + anon_sym_LT, + ACTIONS(4848), 1, + aux_sym__html_block_1_token2, + ACTIONS(4850), 1, sym__whitespace_ge_2, - ACTIONS(4926), 1, + ACTIONS(4852), 1, aux_sym__whitespace_token1, - ACTIONS(4930), 1, + ACTIONS(4856), 1, aux_sym__newline_token1, - ACTIONS(5386), 1, + ACTIONS(5333), 1, sym__block_close, - ACTIONS(5384), 2, + ACTIONS(4935), 2, sym__word_no_digit, sym__digits, - STATE(1304), 4, + STATE(1315), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_2_repeat1, - ACTIONS(4918), 31, + aux_sym__html_block_1_repeat1, + ACTIONS(4844), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -117719,11 +117755,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, @@ -117738,28 +117774,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [51859] = 9, - ACTIONS(4864), 1, + [51883] = 9, + ACTIONS(4884), 1, anon_sym_QMARK, - ACTIONS(4866), 1, + ACTIONS(4886), 1, anon_sym_QMARK_GT, - ACTIONS(4868), 1, + ACTIONS(4888), 1, sym__whitespace_ge_2, - ACTIONS(4870), 1, + ACTIONS(4890), 1, aux_sym__whitespace_token1, - ACTIONS(4874), 1, + ACTIONS(4894), 1, aux_sym__newline_token1, - ACTIONS(5390), 1, + ACTIONS(5335), 1, sym__block_close, - ACTIONS(5388), 2, + ACTIONS(4892), 2, sym__word_no_digit, sym__digits, - STATE(1305), 4, + STATE(1299), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_3_repeat1, - ACTIONS(4862), 31, + ACTIONS(4882), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -117791,28 +117827,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [51921] = 9, - ACTIONS(4884), 1, - anon_sym_RBRACK, - ACTIONS(4886), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(4888), 1, + [51945] = 9, + ACTIONS(4921), 1, + anon_sym_DASH, + ACTIONS(4923), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4925), 1, sym__whitespace_ge_2, - ACTIONS(4890), 1, + ACTIONS(4927), 1, aux_sym__whitespace_token1, - ACTIONS(4894), 1, + ACTIONS(4931), 1, aux_sym__newline_token1, - ACTIONS(5394), 1, + ACTIONS(5337), 1, sym__block_close, - ACTIONS(5392), 2, + ACTIONS(4929), 2, sym__word_no_digit, sym__digits, - STATE(1306), 4, + STATE(1314), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_5_repeat1, - ACTIONS(4882), 31, + aux_sym__html_block_2_repeat1, + ACTIONS(4919), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -117825,7 +117861,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, @@ -117837,6 +117872,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, @@ -117844,28 +117880,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [51983] = 9, - ACTIONS(4936), 1, - anon_sym_LT, - ACTIONS(4938), 1, - aux_sym__html_block_1_token2, - ACTIONS(4940), 1, + [52007] = 9, + ACTIONS(4921), 1, + anon_sym_DASH, + ACTIONS(4923), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4925), 1, sym__whitespace_ge_2, - ACTIONS(4942), 1, + ACTIONS(4927), 1, aux_sym__whitespace_token1, - ACTIONS(4946), 1, + ACTIONS(4931), 1, aux_sym__newline_token1, - ACTIONS(5396), 1, + ACTIONS(5339), 1, sym__block_close, - ACTIONS(4944), 2, + ACTIONS(4929), 2, sym__word_no_digit, sym__digits, - STATE(1253), 4, + STATE(1314), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_1_repeat1, - ACTIONS(4934), 31, + aux_sym__html_block_2_repeat1, + ACTIONS(4919), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -117878,11 +117914,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, @@ -117897,28 +117933,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [52045] = 9, - ACTIONS(4920), 1, - anon_sym_DASH, - ACTIONS(4922), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4924), 1, - sym__whitespace_ge_2, - ACTIONS(4926), 1, + [52069] = 4, + ACTIONS(399), 1, aux_sym__whitespace_token1, - ACTIONS(4930), 1, - aux_sym__newline_token1, - ACTIONS(5398), 1, + STATE(1191), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5341), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(397), 38, sym__block_close, - ACTIONS(4928), 2, - sym__word_no_digit, - sym__digits, - STATE(1243), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_2_repeat1, - ACTIONS(4918), 31, + sym__fenced_code_block_end_tilde, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -117931,6 +117957,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, @@ -117950,28 +117977,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [52107] = 9, - ACTIONS(4864), 1, - anon_sym_QMARK, - ACTIONS(4866), 1, - anon_sym_QMARK_GT, - ACTIONS(4868), 1, sym__whitespace_ge_2, - ACTIONS(4870), 1, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [52121] = 9, + ACTIONS(4846), 1, + anon_sym_LT, + ACTIONS(4848), 1, + aux_sym__html_block_1_token2, + ACTIONS(4850), 1, + sym__whitespace_ge_2, + ACTIONS(4852), 1, aux_sym__whitespace_token1, - ACTIONS(4874), 1, + ACTIONS(4856), 1, aux_sym__newline_token1, - ACTIONS(5400), 1, + ACTIONS(5343), 1, sym__block_close, - ACTIONS(4898), 2, + ACTIONS(4935), 2, sym__word_no_digit, sym__digits, - STATE(1231), 4, + STATE(1315), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_3_repeat1, - ACTIONS(4862), 31, + aux_sym__html_block_1_repeat1, + ACTIONS(4844), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -117989,9 +118020,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, @@ -118003,28 +118034,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [52169] = 9, - ACTIONS(4884), 1, + [52183] = 9, + ACTIONS(4903), 1, anon_sym_RBRACK, - ACTIONS(4886), 1, + ACTIONS(4905), 1, anon_sym_RBRACK_RBRACK_GT, - ACTIONS(4888), 1, + ACTIONS(4907), 1, sym__whitespace_ge_2, - ACTIONS(4890), 1, + ACTIONS(4909), 1, aux_sym__whitespace_token1, - ACTIONS(4894), 1, + ACTIONS(4913), 1, aux_sym__newline_token1, - ACTIONS(5402), 1, + ACTIONS(5347), 1, sym__block_close, - ACTIONS(4892), 2, + ACTIONS(5345), 2, sym__word_no_digit, sym__digits, - STATE(1204), 4, + STATE(1300), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_5_repeat1, - ACTIONS(4882), 31, + ACTIONS(4901), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -118056,77 +118087,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [52231] = 5, - ACTIONS(5404), 1, - sym__line_ending, - STATE(1416), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(379), 2, - anon_sym_RBRACK, - aux_sym__whitespace_token1, - ACTIONS(5406), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(377), 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, - [52285] = 9, - ACTIONS(4864), 1, + [52245] = 9, + ACTIONS(4884), 1, anon_sym_QMARK, - ACTIONS(4866), 1, + ACTIONS(4886), 1, anon_sym_QMARK_GT, - ACTIONS(4868), 1, + ACTIONS(4888), 1, sym__whitespace_ge_2, - ACTIONS(4870), 1, + ACTIONS(4890), 1, aux_sym__whitespace_token1, - ACTIONS(4874), 1, + ACTIONS(4894), 1, aux_sym__newline_token1, - ACTIONS(5408), 1, + ACTIONS(5351), 1, sym__block_close, - ACTIONS(4898), 2, + ACTIONS(5349), 2, sym__word_no_digit, sym__digits, - STATE(1231), 4, + STATE(1302), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_3_repeat1, - ACTIONS(4862), 31, + ACTIONS(4882), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -118158,28 +118140,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [52347] = 9, - ACTIONS(1614), 1, + [52307] = 9, + ACTIONS(1628), 1, aux_sym__newline_token1, - ACTIONS(4904), 1, + ACTIONS(4870), 1, anon_sym_DASH, - ACTIONS(4908), 1, + ACTIONS(4874), 1, sym__whitespace_ge_2, - ACTIONS(4910), 1, + ACTIONS(4876), 1, aux_sym__whitespace_token1, - ACTIONS(5410), 1, + ACTIONS(5353), 1, anon_sym_DASH_DASH_GT, - ACTIONS(5414), 1, + ACTIONS(5357), 1, sym__last_token_punctuation, - ACTIONS(5412), 2, + ACTIONS(5355), 2, sym__word_no_digit, sym__digits, - STATE(1503), 4, + STATE(1433), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_comment_repeat1, - ACTIONS(4902), 31, + ACTIONS(4868), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -118211,28 +118193,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [52409] = 9, - ACTIONS(4936), 1, - anon_sym_LT, - ACTIONS(4938), 1, - aux_sym__html_block_1_token2, - ACTIONS(4940), 1, + [52369] = 9, + ACTIONS(4921), 1, + anon_sym_DASH, + ACTIONS(4923), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4925), 1, sym__whitespace_ge_2, - ACTIONS(4942), 1, + ACTIONS(4927), 1, aux_sym__whitespace_token1, - ACTIONS(4946), 1, + ACTIONS(4931), 1, aux_sym__newline_token1, - ACTIONS(5418), 1, + ACTIONS(5361), 1, sym__block_close, - ACTIONS(5416), 2, + ACTIONS(5359), 2, sym__word_no_digit, sym__digits, - STATE(1315), 4, + STATE(1303), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_1_repeat1, - ACTIONS(4934), 31, + aux_sym__html_block_2_repeat1, + ACTIONS(4919), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -118245,11 +118227,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, @@ -118264,28 +118246,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [52471] = 9, - ACTIONS(4920), 1, - anon_sym_DASH, - ACTIONS(4922), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4924), 1, + [52431] = 9, + ACTIONS(4846), 1, + anon_sym_LT, + ACTIONS(4848), 1, + aux_sym__html_block_1_token2, + ACTIONS(4850), 1, sym__whitespace_ge_2, - ACTIONS(4926), 1, + ACTIONS(4852), 1, aux_sym__whitespace_token1, - ACTIONS(4930), 1, + ACTIONS(4856), 1, aux_sym__newline_token1, - ACTIONS(5422), 1, + ACTIONS(5365), 1, sym__block_close, - ACTIONS(5420), 2, + ACTIONS(5363), 2, sym__word_no_digit, sym__digits, - STATE(1316), 4, + STATE(1306), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_2_repeat1, - ACTIONS(4918), 31, + aux_sym__html_block_1_repeat1, + ACTIONS(4844), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -118298,11 +118280,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, @@ -118317,28 +118299,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [52533] = 9, - ACTIONS(4864), 1, + [52493] = 9, + ACTIONS(4884), 1, anon_sym_QMARK, - ACTIONS(4866), 1, + ACTIONS(4886), 1, anon_sym_QMARK_GT, - ACTIONS(4868), 1, + ACTIONS(4888), 1, sym__whitespace_ge_2, - ACTIONS(4870), 1, + ACTIONS(4890), 1, aux_sym__whitespace_token1, - ACTIONS(4874), 1, + ACTIONS(4894), 1, aux_sym__newline_token1, - ACTIONS(5426), 1, + ACTIONS(5367), 1, sym__block_close, - ACTIONS(5424), 2, + ACTIONS(4892), 2, sym__word_no_digit, sym__digits, - STATE(1318), 4, + STATE(1299), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_3_repeat1, - ACTIONS(4862), 31, + ACTIONS(4882), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -118370,28 +118352,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [52595] = 9, - ACTIONS(4884), 1, + [52555] = 9, + ACTIONS(4903), 1, anon_sym_RBRACK, - ACTIONS(4886), 1, + ACTIONS(4905), 1, anon_sym_RBRACK_RBRACK_GT, - ACTIONS(4888), 1, + ACTIONS(4907), 1, sym__whitespace_ge_2, - ACTIONS(4890), 1, + ACTIONS(4909), 1, aux_sym__whitespace_token1, - ACTIONS(4894), 1, + ACTIONS(4913), 1, aux_sym__newline_token1, - ACTIONS(5430), 1, + ACTIONS(5369), 1, sym__block_close, - ACTIONS(5428), 2, + ACTIONS(4955), 2, sym__word_no_digit, sym__digits, - STATE(1320), 4, + STATE(1294), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_5_repeat1, - ACTIONS(4882), 31, + ACTIONS(4901), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -118423,28 +118405,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [52657] = 9, - ACTIONS(4920), 1, + [52617] = 9, + ACTIONS(5374), 1, anon_sym_DASH, - ACTIONS(4922), 1, + ACTIONS(5377), 1, anon_sym_DASH_DASH_GT, - ACTIONS(4924), 1, + ACTIONS(5380), 1, sym__whitespace_ge_2, - ACTIONS(4926), 1, + ACTIONS(5383), 1, aux_sym__whitespace_token1, - ACTIONS(4930), 1, + ACTIONS(5389), 1, aux_sym__newline_token1, - ACTIONS(5432), 1, + ACTIONS(5392), 1, sym__block_close, - ACTIONS(4928), 2, + ACTIONS(5386), 2, sym__word_no_digit, sym__digits, - STATE(1243), 4, + STATE(1314), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_2_repeat1, - ACTIONS(4918), 31, + ACTIONS(5371), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -118476,28 +118458,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [52719] = 9, - ACTIONS(4936), 1, + [52679] = 9, + ACTIONS(5397), 1, anon_sym_LT, - ACTIONS(4938), 1, + ACTIONS(5400), 1, aux_sym__html_block_1_token2, - ACTIONS(4940), 1, + ACTIONS(5403), 1, sym__whitespace_ge_2, - ACTIONS(4942), 1, + ACTIONS(5406), 1, aux_sym__whitespace_token1, - ACTIONS(4946), 1, + ACTIONS(5412), 1, aux_sym__newline_token1, - ACTIONS(5434), 1, + ACTIONS(5415), 1, sym__block_close, - ACTIONS(4944), 2, + ACTIONS(5409), 2, sym__word_no_digit, sym__digits, - STATE(1253), 4, + STATE(1315), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_1_repeat1, - ACTIONS(4934), 31, + ACTIONS(5394), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -118529,28 +118511,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [52781] = 9, - ACTIONS(4920), 1, - anon_sym_DASH, - ACTIONS(4922), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4924), 1, - sym__whitespace_ge_2, - ACTIONS(4926), 1, + [52741] = 4, + ACTIONS(405), 1, aux_sym__whitespace_token1, - ACTIONS(4930), 1, - aux_sym__newline_token1, - ACTIONS(5436), 1, + STATE(1316), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5417), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(403), 38, sym__block_close, - ACTIONS(4928), 2, - sym__word_no_digit, - sym__digits, - STATE(1243), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_2_repeat1, - ACTIONS(4918), 31, + sym__fenced_code_block_end_backtick, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -118563,6 +118535,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, @@ -118582,18 +118555,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [52843] = 4, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [52793] = 4, ACTIONS(391), 1, aux_sym__whitespace_token1, - STATE(1194), 1, + STATE(1191), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5274), 3, + ACTIONS(5341), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, ACTIONS(389), 38, sym__block_close, - sym__fenced_code_block_end_backtick, + sym__fenced_code_block_end_tilde, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -118630,28 +118607,18 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [52895] = 9, - ACTIONS(4864), 1, - anon_sym_QMARK, - ACTIONS(4866), 1, - anon_sym_QMARK_GT, - ACTIONS(4868), 1, - sym__whitespace_ge_2, - ACTIONS(4870), 1, + [52845] = 4, + ACTIONS(391), 1, aux_sym__whitespace_token1, - ACTIONS(4874), 1, - aux_sym__newline_token1, - ACTIONS(5438), 1, + STATE(1305), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5420), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(389), 38, sym__block_close, - ACTIONS(4898), 2, - sym__word_no_digit, - sym__digits, - STATE(1231), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_3_repeat1, - ACTIONS(4862), 31, + sym__fenced_code_block_end_tilde, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -118672,6 +118639,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, @@ -118683,18 +118651,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [52957] = 4, - ACTIONS(391), 1, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [52897] = 9, + ACTIONS(4903), 1, + anon_sym_RBRACK, + ACTIONS(4905), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(4907), 1, + sym__whitespace_ge_2, + ACTIONS(4909), 1, aux_sym__whitespace_token1, - STATE(1258), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5440), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(389), 38, + ACTIONS(4913), 1, + aux_sym__newline_token1, + ACTIONS(5422), 1, sym__block_close, - sym__fenced_code_block_end_backtick, + ACTIONS(4955), 2, + sym__word_no_digit, + sym__digits, + STATE(1294), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_5_repeat1, + ACTIONS(4901), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -118719,7 +118701,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, @@ -118727,32 +118708,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, - [53009] = 9, - ACTIONS(4884), 1, + [52959] = 9, + ACTIONS(4903), 1, anon_sym_RBRACK, - ACTIONS(4886), 1, + ACTIONS(4905), 1, anon_sym_RBRACK_RBRACK_GT, - ACTIONS(4888), 1, + ACTIONS(4907), 1, sym__whitespace_ge_2, - ACTIONS(4890), 1, + ACTIONS(4909), 1, aux_sym__whitespace_token1, - ACTIONS(4894), 1, + ACTIONS(4913), 1, aux_sym__newline_token1, - ACTIONS(5442), 1, + ACTIONS(5424), 1, sym__block_close, - ACTIONS(4892), 2, + ACTIONS(4955), 2, sym__word_no_digit, sym__digits, - STATE(1204), 4, + STATE(1294), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_5_repeat1, - ACTIONS(4882), 31, + ACTIONS(4901), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -118784,28 +118761,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [53071] = 9, - ACTIONS(4936), 1, + [53021] = 9, + ACTIONS(4846), 1, anon_sym_LT, - ACTIONS(4938), 1, + ACTIONS(4848), 1, aux_sym__html_block_1_token2, - ACTIONS(4940), 1, + ACTIONS(4850), 1, sym__whitespace_ge_2, - ACTIONS(4942), 1, + ACTIONS(4852), 1, aux_sym__whitespace_token1, - ACTIONS(4946), 1, + ACTIONS(4856), 1, aux_sym__newline_token1, - ACTIONS(5444), 1, + ACTIONS(5426), 1, sym__block_close, - ACTIONS(4944), 2, + ACTIONS(4935), 2, sym__word_no_digit, sym__digits, - STATE(1253), 4, + STATE(1315), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_1_repeat1, - ACTIONS(4934), 31, + ACTIONS(4844), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -118837,28 +118814,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [53133] = 9, - ACTIONS(4936), 1, - anon_sym_LT, - ACTIONS(4938), 1, - aux_sym__html_block_1_token2, - ACTIONS(4940), 1, + [53083] = 9, + ACTIONS(4884), 1, + anon_sym_QMARK, + ACTIONS(4886), 1, + anon_sym_QMARK_GT, + ACTIONS(4888), 1, sym__whitespace_ge_2, - ACTIONS(4942), 1, + ACTIONS(4890), 1, aux_sym__whitespace_token1, - ACTIONS(4946), 1, + ACTIONS(4894), 1, aux_sym__newline_token1, - ACTIONS(5448), 1, + ACTIONS(5428), 1, sym__block_close, - ACTIONS(5446), 2, + ACTIONS(4892), 2, sym__word_no_digit, sym__digits, - STATE(1326), 4, + STATE(1299), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_1_repeat1, - ACTIONS(4934), 31, + aux_sym__html_block_3_repeat1, + ACTIONS(4882), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -118876,9 +118853,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, @@ -118890,28 +118867,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [53195] = 9, - ACTIONS(4920), 1, + [53145] = 9, + ACTIONS(4921), 1, anon_sym_DASH, - ACTIONS(4922), 1, + ACTIONS(4923), 1, anon_sym_DASH_DASH_GT, - ACTIONS(4924), 1, + ACTIONS(4925), 1, sym__whitespace_ge_2, - ACTIONS(4926), 1, + ACTIONS(4927), 1, aux_sym__whitespace_token1, - ACTIONS(4930), 1, + ACTIONS(4931), 1, aux_sym__newline_token1, - ACTIONS(5452), 1, + ACTIONS(5430), 1, sym__block_close, - ACTIONS(5450), 2, + ACTIONS(4929), 2, sym__word_no_digit, sym__digits, - STATE(1327), 4, + STATE(1314), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_2_repeat1, - ACTIONS(4918), 31, + ACTIONS(4919), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -118943,28 +118920,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [53257] = 9, - ACTIONS(4864), 1, + [53207] = 9, + ACTIONS(4884), 1, anon_sym_QMARK, - ACTIONS(4866), 1, + ACTIONS(4886), 1, anon_sym_QMARK_GT, - ACTIONS(4868), 1, + ACTIONS(4888), 1, sym__whitespace_ge_2, - ACTIONS(4870), 1, + ACTIONS(4890), 1, aux_sym__whitespace_token1, - ACTIONS(4874), 1, + ACTIONS(4894), 1, aux_sym__newline_token1, - ACTIONS(5456), 1, + ACTIONS(5432), 1, sym__block_close, - ACTIONS(5454), 2, + ACTIONS(4892), 2, sym__word_no_digit, sym__digits, - STATE(1328), 4, + STATE(1299), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_3_repeat1, - ACTIONS(4862), 31, + ACTIONS(4882), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -118996,28 +118973,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [53319] = 9, - ACTIONS(4884), 1, - anon_sym_RBRACK, - ACTIONS(4886), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(4888), 1, + [53269] = 9, + ACTIONS(4846), 1, + anon_sym_LT, + ACTIONS(4848), 1, + aux_sym__html_block_1_token2, + ACTIONS(4850), 1, sym__whitespace_ge_2, - ACTIONS(4890), 1, + ACTIONS(4852), 1, aux_sym__whitespace_token1, - ACTIONS(4894), 1, + ACTIONS(4856), 1, aux_sym__newline_token1, - ACTIONS(5460), 1, + ACTIONS(5434), 1, sym__block_close, - ACTIONS(5458), 2, + ACTIONS(4935), 2, sym__word_no_digit, sym__digits, - STATE(1329), 4, + STATE(1315), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_5_repeat1, - ACTIONS(4882), 31, + aux_sym__html_block_1_repeat1, + ACTIONS(4844), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -119035,13 +119012,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, @@ -119049,28 +119026,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [53381] = 9, - ACTIONS(4936), 1, - anon_sym_LT, - ACTIONS(4938), 1, - aux_sym__html_block_1_token2, - ACTIONS(4940), 1, + [53331] = 9, + ACTIONS(4903), 1, + anon_sym_RBRACK, + ACTIONS(4905), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(4907), 1, sym__whitespace_ge_2, - ACTIONS(4942), 1, + ACTIONS(4909), 1, aux_sym__whitespace_token1, - ACTIONS(4946), 1, + ACTIONS(4913), 1, aux_sym__newline_token1, - ACTIONS(5462), 1, + ACTIONS(5438), 1, sym__block_close, - ACTIONS(4944), 2, + ACTIONS(5436), 2, sym__word_no_digit, sym__digits, - STATE(1253), 4, + STATE(1320), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_1_repeat1, - ACTIONS(4934), 31, + aux_sym__html_block_5_repeat1, + ACTIONS(4901), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -119088,13 +119065,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, @@ -119102,28 +119079,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [53443] = 9, - ACTIONS(4920), 1, - anon_sym_DASH, - ACTIONS(4922), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4924), 1, + [53393] = 9, + ACTIONS(4884), 1, + anon_sym_QMARK, + ACTIONS(4886), 1, + anon_sym_QMARK_GT, + ACTIONS(4888), 1, sym__whitespace_ge_2, - ACTIONS(4926), 1, + ACTIONS(4890), 1, aux_sym__whitespace_token1, - ACTIONS(4930), 1, + ACTIONS(4894), 1, aux_sym__newline_token1, - ACTIONS(5464), 1, + ACTIONS(5442), 1, sym__block_close, - ACTIONS(4928), 2, + ACTIONS(5440), 2, sym__word_no_digit, sym__digits, - STATE(1243), 4, + STATE(1322), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_2_repeat1, - ACTIONS(4918), 31, + aux_sym__html_block_3_repeat1, + ACTIONS(4882), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -119136,6 +119113,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, @@ -119143,7 +119121,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, @@ -119155,28 +119132,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [53505] = 9, - ACTIONS(4864), 1, - anon_sym_QMARK, - ACTIONS(4866), 1, - anon_sym_QMARK_GT, - ACTIONS(4868), 1, + [53455] = 9, + ACTIONS(4921), 1, + anon_sym_DASH, + ACTIONS(4923), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4925), 1, sym__whitespace_ge_2, - ACTIONS(4870), 1, + ACTIONS(4927), 1, aux_sym__whitespace_token1, - ACTIONS(4874), 1, + ACTIONS(4931), 1, aux_sym__newline_token1, - ACTIONS(5466), 1, + ACTIONS(5446), 1, sym__block_close, - ACTIONS(4898), 2, + ACTIONS(5444), 2, sym__word_no_digit, sym__digits, - STATE(1231), 4, + STATE(1323), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_3_repeat1, - ACTIONS(4862), 31, + aux_sym__html_block_2_repeat1, + ACTIONS(4919), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -119189,7 +119166,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, @@ -119197,6 +119173,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, @@ -119208,28 +119185,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [53567] = 9, - ACTIONS(4884), 1, - anon_sym_RBRACK, - ACTIONS(4886), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(4888), 1, + [53517] = 9, + ACTIONS(4846), 1, + anon_sym_LT, + ACTIONS(4848), 1, + aux_sym__html_block_1_token2, + ACTIONS(4850), 1, sym__whitespace_ge_2, - ACTIONS(4890), 1, + ACTIONS(4852), 1, aux_sym__whitespace_token1, - ACTIONS(4894), 1, + ACTIONS(4856), 1, aux_sym__newline_token1, - ACTIONS(5468), 1, + ACTIONS(5450), 1, sym__block_close, - ACTIONS(4892), 2, + ACTIONS(5448), 2, sym__word_no_digit, sym__digits, - STATE(1204), 4, + STATE(1325), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_5_repeat1, - ACTIONS(4882), 31, + aux_sym__html_block_1_repeat1, + ACTIONS(4844), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -119247,13 +119224,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, @@ -119261,32 +119238,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [53629] = 8, - ACTIONS(4132), 1, + [53579] = 8, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(5454), 1, + anon_sym_SQUOTE, + ACTIONS(5456), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(5458), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, - aux_sym__newline_token1, - ACTIONS(5472), 1, - sym__block_close, - STATE(1671), 1, + STATE(2122), 1, sym__newline, - ACTIONS(5470), 2, + ACTIONS(5460), 2, sym__word_no_digit, sym__digits, - STATE(1358), 3, + STATE(1501), 4, + sym__soft_line_break, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + aux_sym__attribute_value_repeat1, + ACTIONS(5452), 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, @@ -119312,25 +119289,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [53688] = 8, - ACTIONS(4132), 1, + [53638] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(4278), 1, + ACTIONS(4198), 1, sym__block_close, - STATE(1671), 1, + STATE(1656), 1, sym__newline, - ACTIONS(5470), 2, + ACTIONS(5462), 2, sym__word_no_digit, sym__digits, - STATE(1358), 3, + STATE(1531), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -119363,26 +119340,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [53747] = 8, - ACTIONS(4132), 1, + [53697] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(5180), 1, + ACTIONS(4967), 1, aux_sym__newline_token1, - ACTIONS(5476), 1, + ACTIONS(5466), 1, anon_sym_GT, - ACTIONS(5480), 1, + ACTIONS(5470), 1, sym__block_close, - ACTIONS(5478), 2, + ACTIONS(5468), 2, sym__word_no_digit, sym__digits, - STATE(1475), 4, + STATE(1503), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_4_repeat1, - ACTIONS(5474), 31, + ACTIONS(5464), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -119414,26 +119391,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [53806] = 8, - ACTIONS(1614), 1, + [53756] = 6, + ACTIONS(5480), 1, + aux_sym__whitespace_token1, + ACTIONS(5474), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(5478), 2, + sym__whitespace_ge_2, aux_sym__newline_token1, - ACTIONS(4904), 1, + STATE(1367), 2, + sym__word, + aux_sym_language_repeat1, + ACTIONS(5476), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(5472), 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, - ACTIONS(4906), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4908), 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, + [53811] = 8, + ACTIONS(1628), 1, + aux_sym__newline_token1, + ACTIONS(4870), 1, + anon_sym_DASH, + ACTIONS(4874), 1, sym__whitespace_ge_2, - ACTIONS(4910), 1, + ACTIONS(4876), 1, aux_sym__whitespace_token1, - ACTIONS(5482), 2, + ACTIONS(4975), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4977), 2, sym__word_no_digit, sym__digits, - STATE(1398), 4, + STATE(1381), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_comment_repeat1, - ACTIONS(4902), 31, + ACTIONS(4868), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -119465,25 +119491,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [53865] = 8, - ACTIONS(4132), 1, + [53870] = 8, + ACTIONS(3019), 1, + aux_sym__newline_token1, + ACTIONS(5482), 1, + anon_sym_QMARK, + ACTIONS(5484), 1, + anon_sym_QMARK_GT, + ACTIONS(5486), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(5488), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, - aux_sym__newline_token1, - ACTIONS(4172), 1, - sym__block_close, - STATE(1658), 1, + ACTIONS(5490), 2, + sym__word_no_digit, + sym__digits, + STATE(1411), 4, + sym__whitespace, + sym__word, sym__newline, - ACTIONS(5486), 2, + aux_sym__processing_instruction_repeat1, + ACTIONS(3027), 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, + [53929] = 8, + ACTIONS(1628), 1, + aux_sym__newline_token1, + ACTIONS(4870), 1, + anon_sym_DASH, + ACTIONS(4874), 1, + sym__whitespace_ge_2, + ACTIONS(4876), 1, + aux_sym__whitespace_token1, + ACTIONS(5492), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5494), 2, sym__word_no_digit, sym__digits, - STATE(1462), 3, + STATE(1447), 4, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5484), 32, + sym__newline, + aux_sym__html_comment_repeat1, + ACTIONS(4868), 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, + [53988] = 4, + ACTIONS(391), 1, + aux_sym__whitespace_token1, + STATE(1352), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5496), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(389), 37, + sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -119516,26 +119636,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [53924] = 8, - ACTIONS(1614), 1, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, aux_sym__newline_token1, - ACTIONS(4904), 1, - anon_sym_DASH, - ACTIONS(4906), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4908), 1, + [54039] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4910), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4912), 2, + ACTIONS(4967), 1, + aux_sym__newline_token1, + ACTIONS(5466), 1, + anon_sym_GT, + ACTIONS(5500), 1, + sym__block_close, + ACTIONS(5498), 2, sym__word_no_digit, sym__digits, - STATE(1356), 4, + STATE(1385), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(4902), 31, + aux_sym__html_block_4_repeat1, + ACTIONS(5464), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -119548,13 +119672,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, @@ -119567,38 +119691,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [53983] = 10, - ACTIONS(4035), 1, + [54098] = 8, + ACTIONS(3019), 1, + aux_sym__newline_token1, + ACTIONS(5482), 1, + anon_sym_QMARK, + ACTIONS(5486), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(5488), 1, aux_sym__whitespace_token1, - ACTIONS(4086), 1, - anon_sym_LT, - ACTIONS(4367), 1, - anon_sym_LPAREN, - STATE(1702), 1, - sym__whitespace, - STATE(2094), 1, - sym_link_destination, - ACTIONS(4078), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1267), 2, - sym__link_destination_parenthesis, - sym__word, - ACTIONS(4088), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(5502), 1, + anon_sym_QMARK_GT, + ACTIONS(5490), 2, sym__word_no_digit, sym__digits, - ACTIONS(4074), 27, + STATE(1411), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__processing_instruction_repeat1, + ACTIONS(3027), 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, @@ -119607,11 +119728,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__, @@ -119620,38 +119742,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [54046] = 10, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(4086), 1, - anon_sym_LT, - ACTIONS(4367), 1, - anon_sym_LPAREN, - STATE(1505), 1, - sym__soft_line_break, - STATE(2094), 1, - sym_link_destination, - STATE(2144), 1, - sym__newline, - ACTIONS(4078), 2, + [54157] = 4, + STATE(1345), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(391), 2, + anon_sym_QMARK, + aux_sym__whitespace_token1, + ACTIONS(5504), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(389), 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_AT, + anon_sym_LBRACK, anon_sym_BSLASH, - STATE(1267), 2, - sym__link_destination_parenthesis, - sym__word, - ACTIONS(4088), 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, + anon_sym_QMARK_GT, + sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - ACTIONS(4074), 27, + aux_sym__newline_token1, + [54208] = 4, + STATE(1363), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(391), 2, + anon_sym_QMARK, + aux_sym__whitespace_token1, + ACTIONS(5506), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(389), 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, @@ -119660,11 +119817,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__, @@ -119673,17 +119831,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [54109] = 4, - ACTIONS(409), 1, - aux_sym__whitespace_token1, - STATE(1351), 1, + anon_sym_QMARK_GT, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [54259] = 4, + STATE(1342), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5488), 3, + ACTIONS(405), 2, + anon_sym_DASH, + aux_sym__whitespace_token1, + ACTIONS(5508), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(407), 37, - sym__block_close, + ACTIONS(403), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -119696,7 +119859,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, @@ -119716,30 +119878,31 @@ 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, - [54160] = 8, - ACTIONS(5493), 1, - anon_sym_QMARK, - ACTIONS(5496), 1, - anon_sym_QMARK_GT, - ACTIONS(5498), 1, + [54310] = 8, + ACTIONS(1628), 1, + aux_sym__newline_token1, + ACTIONS(4870), 1, + anon_sym_DASH, + ACTIONS(4874), 1, sym__whitespace_ge_2, - ACTIONS(5501), 1, + ACTIONS(4876), 1, aux_sym__whitespace_token1, - ACTIONS(5507), 1, - aux_sym__newline_token1, - ACTIONS(5504), 2, + ACTIONS(4989), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5494), 2, sym__word_no_digit, sym__digits, - STATE(1339), 4, + STATE(1447), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_comment_repeat1, - ACTIONS(5490), 31, + ACTIONS(4868), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -119752,7 +119915,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, @@ -119760,6 +119922,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, @@ -119771,25 +119934,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [54219] = 8, - ACTIONS(4132), 1, + [54369] = 8, + ACTIONS(1628), 1, + aux_sym__newline_token1, + ACTIONS(4870), 1, + anon_sym_DASH, + ACTIONS(4874), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4876), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, - aux_sym__newline_token1, - ACTIONS(5512), 1, - sym__block_close, - STATE(1658), 1, - sym__newline, - ACTIONS(5510), 2, + ACTIONS(4989), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4991), 2, sym__word_no_digit, sym__digits, - STATE(1516), 3, + STATE(1336), 4, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5484), 32, + sym__newline, + aux_sym__html_comment_repeat1, + ACTIONS(4868), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -119802,7 +119966,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, @@ -119822,26 +119985,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [54278] = 8, - ACTIONS(3030), 1, - aux_sym__newline_token1, - ACTIONS(3231), 1, - anon_sym_RBRACK, - ACTIONS(5514), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(5516), 1, - sym__whitespace_ge_2, - ACTIONS(5518), 1, + [54428] = 4, + STATE(1363), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(399), 2, + anon_sym_QMARK, aux_sym__whitespace_token1, - ACTIONS(5520), 2, - sym__word_no_digit, - sym__digits, - STATE(1362), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(3229), 31, + ACTIONS(5506), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(397), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -119862,10 +120016,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, @@ -119873,26 +120027,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [54337] = 8, - ACTIONS(4132), 1, + anon_sym_QMARK_GT, sym__whitespace_ge_2, - ACTIONS(4134), 1, - aux_sym__whitespace_token1, - ACTIONS(5180), 1, + sym__word_no_digit, + sym__digits, aux_sym__newline_token1, - ACTIONS(5476), 1, - anon_sym_GT, - ACTIONS(5524), 1, - sym__block_close, - ACTIONS(5522), 2, + [54479] = 8, + ACTIONS(3000), 1, + aux_sym__newline_token1, + ACTIONS(3143), 1, + anon_sym_RBRACK, + ACTIONS(5511), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(5513), 1, + sym__whitespace_ge_2, + ACTIONS(5515), 1, + aux_sym__whitespace_token1, + ACTIONS(5517), 2, sym__word_no_digit, sym__digits, - STATE(1332), 4, + STATE(1351), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_4_repeat1, - ACTIONS(5474), 31, + aux_sym__processing_instruction_repeat1, + ACTIONS(3141), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -119912,11 +120071,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, @@ -119924,12 +120083,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [54396] = 4, + [54538] = 4, ACTIONS(391), 1, aux_sym__whitespace_token1, - STATE(1351), 1, + STATE(1479), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5488), 3, + ACTIONS(5519), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, @@ -119971,26 +120130,25 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [54447] = 8, - ACTIONS(2981), 1, - aux_sym__newline_token1, - ACTIONS(5526), 1, - anon_sym_QMARK, - ACTIONS(5528), 1, - anon_sym_QMARK_GT, - ACTIONS(5530), 1, + [54589] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(5532), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(5534), 2, + ACTIONS(4025), 1, + aux_sym__newline_token1, + ACTIONS(5525), 1, + sym__block_close, + STATE(1662), 1, + sym__newline, + ACTIONS(5523), 2, sym__word_no_digit, sym__digits, - STATE(1339), 4, + STATE(1397), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(3153), 31, + aux_sym__html_block_6_repeat1, + ACTIONS(5521), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -120011,6 +120169,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, @@ -120022,17 +120181,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [54506] = 4, - ACTIONS(391), 1, + [54648] = 8, + ACTIONS(4019), 1, + sym__whitespace_ge_2, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - STATE(1338), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5536), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(389), 37, + ACTIONS(4025), 1, + aux_sym__newline_token1, + ACTIONS(4190), 1, sym__block_close, + STATE(1656), 1, + sym__newline, + ACTIONS(5462), 2, + sym__word_no_digit, + sym__digits, + STATE(1531), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -120065,30 +120232,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + [54707] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [54557] = 8, - ACTIONS(1614), 1, - aux_sym__newline_token1, - ACTIONS(4904), 1, - anon_sym_DASH, - ACTIONS(4908), 1, - sym__whitespace_ge_2, - ACTIONS(4910), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4963), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5482), 2, + ACTIONS(4025), 1, + aux_sym__newline_token1, + ACTIONS(4172), 1, + sym__block_close, + STATE(1662), 1, + sym__newline, + ACTIONS(5527), 2, sym__word_no_digit, sym__digits, - STATE(1398), 4, + STATE(1520), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(4902), 31, + aux_sym__html_block_6_repeat1, + ACTIONS(5521), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -120101,6 +120263,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, @@ -120120,26 +120283,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [54616] = 8, - ACTIONS(1614), 1, - aux_sym__newline_token1, - ACTIONS(4904), 1, - anon_sym_DASH, - ACTIONS(4908), 1, + [54766] = 8, + ACTIONS(5532), 1, + anon_sym_RBRACK, + ACTIONS(5535), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(5537), 1, sym__whitespace_ge_2, - ACTIONS(4910), 1, + ACTIONS(5540), 1, aux_sym__whitespace_token1, - ACTIONS(4963), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4965), 2, + ACTIONS(5546), 1, + aux_sym__newline_token1, + ACTIONS(5543), 2, sym__word_no_digit, sym__digits, - STATE(1333), 4, + STATE(1351), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(4902), 31, + aux_sym__processing_instruction_repeat1, + ACTIONS(5529), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -120152,6 +120315,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, @@ -120163,7 +120327,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, @@ -120171,17 +120334,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [54675] = 4, - ACTIONS(697), 1, + [54825] = 4, + ACTIONS(399), 1, aux_sym__whitespace_token1, - STATE(1563), 1, + STATE(1479), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5538), 3, + ACTIONS(5519), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(695), 37, - sym__code_span_close, + ACTIONS(397), 37, + sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -120218,26 +120381,25 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [54726] = 8, - ACTIONS(1614), 1, - aux_sym__newline_token1, - ACTIONS(4904), 1, - anon_sym_DASH, - ACTIONS(4908), 1, + [54876] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4910), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(5540), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5482), 2, + ACTIONS(4025), 1, + aux_sym__newline_token1, + ACTIONS(4194), 1, + sym__block_close, + STATE(1656), 1, + sym__newline, + ACTIONS(5462), 2, sym__word_no_digit, sym__digits, - STATE(1398), 4, + STATE(1531), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(4902), 31, + aux_sym__html_block_6_repeat2, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -120250,6 +120412,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, @@ -120269,25 +120432,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [54785] = 8, - ACTIONS(4132), 1, + [54935] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(5544), 1, + ACTIONS(5551), 1, sym__block_close, - STATE(1671), 1, + STATE(1662), 1, sym__newline, - ACTIONS(5542), 2, + ACTIONS(5549), 2, sym__word_no_digit, sym__digits, - STATE(1520), 3, + STATE(1398), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + aux_sym__html_block_6_repeat1, + ACTIONS(5521), 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, + [54994] = 5, + ACTIONS(379), 1, + aux_sym__whitespace_token1, + ACTIONS(5553), 1, + sym__line_ending, + STATE(1595), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5555), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(377), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -120320,26 +120527,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [54844] = 4, - ACTIONS(399), 1, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [55047] = 10, + ACTIONS(4011), 1, + sym__whitespace_ge_2, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - STATE(1351), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5546), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(397), 37, - sym__block_close, + ACTIONS(4090), 1, + anon_sym_LT, + ACTIONS(4345), 1, + anon_sym_LPAREN, + STATE(1703), 1, + sym__whitespace, + STATE(2066), 1, + sym_link_destination, + ACTIONS(4082), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1229), 2, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(4092), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4078), 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, @@ -120348,13 +120571,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__, @@ -120363,30 +120584,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym__whitespace_ge_2, + [55110] = 10, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(4090), 1, + anon_sym_LT, + ACTIONS(4345), 1, + anon_sym_LPAREN, + STATE(1356), 1, + sym__soft_line_break, + STATE(2080), 1, + sym_link_destination, + STATE(2137), 1, + sym__newline, + ACTIONS(4082), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1229), 2, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(4092), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [54895] = 4, - ACTIONS(765), 1, - aux_sym__whitespace_token1, - STATE(1348), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5549), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(763), 37, - sym__code_span_close, + ACTIONS(4078), 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, @@ -120395,13 +120624,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__, @@ -120410,31 +120637,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + [55173] = 10, + ACTIONS(4011), 1, sym__whitespace_ge_2, + ACTIONS(4013), 1, + aux_sym__whitespace_token1, + ACTIONS(4090), 1, + anon_sym_LT, + ACTIONS(4345), 1, + anon_sym_LPAREN, + STATE(1704), 1, + sym__whitespace, + STATE(2080), 1, + sym_link_destination, + ACTIONS(4082), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1229), 2, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(4092), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [54946] = 5, - ACTIONS(379), 1, - aux_sym__whitespace_token1, - ACTIONS(5551), 1, - sym__line_ending, - STATE(1574), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5553), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(377), 36, + ACTIONS(4078), 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, @@ -120443,13 +120677,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__, @@ -120458,37 +120690,38 @@ 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, + [55236] = 10, + ACTIONS(41), 1, aux_sym__newline_token1, - [54999] = 6, - ACTIONS(5566), 1, - aux_sym__whitespace_token1, - ACTIONS(5558), 2, + ACTIONS(4090), 1, + anon_sym_LT, + ACTIONS(4345), 1, + anon_sym_LPAREN, + STATE(1358), 1, + sym__soft_line_break, + STATE(2071), 1, + sym_link_destination, + STATE(2137), 1, + sym__newline, + ACTIONS(4082), 2, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(5564), 2, - sym__whitespace_ge_2, - aux_sym__newline_token1, - STATE(1354), 2, + STATE(1229), 2, + sym__link_destination_parenthesis, sym__word, - aux_sym_language_repeat1, - ACTIONS(5561), 5, + ACTIONS(4092), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(5555), 30, + ACTIONS(4078), 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, @@ -120497,7 +120730,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, @@ -120511,26 +120743,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [55054] = 8, - ACTIONS(4132), 1, + [55299] = 10, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(5180), 1, - aux_sym__newline_token1, - ACTIONS(5476), 1, - anon_sym_GT, - ACTIONS(5568), 1, - sym__block_close, - ACTIONS(5478), 2, - sym__word_no_digit, - sym__digits, - STATE(1475), 4, + ACTIONS(4090), 1, + anon_sym_LT, + ACTIONS(4345), 1, + anon_sym_LPAREN, + STATE(1706), 1, sym__whitespace, + STATE(2071), 1, + sym_link_destination, + ACTIONS(4082), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1229), 2, + sym__link_destination_parenthesis, sym__word, - sym__newline, - aux_sym__html_block_4_repeat1, - ACTIONS(5474), 31, + ACTIONS(4092), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4078), 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, + [55362] = 4, + ACTIONS(856), 1, + aux_sym__whitespace_token1, + STATE(1562), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5557), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(854), 37, + sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -120550,6 +120826,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, @@ -120562,26 +120839,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [55113] = 8, - ACTIONS(1614), 1, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, aux_sym__newline_token1, - ACTIONS(4904), 1, + [55413] = 8, + ACTIONS(1628), 1, + aux_sym__newline_token1, + ACTIONS(4870), 1, anon_sym_DASH, - ACTIONS(4908), 1, + ACTIONS(4874), 1, sym__whitespace_ge_2, - ACTIONS(4910), 1, + ACTIONS(4876), 1, aux_sym__whitespace_token1, - ACTIONS(5570), 1, + ACTIONS(5096), 1, anon_sym_DASH_DASH_GT, - ACTIONS(5482), 2, + ACTIONS(5098), 2, sym__word_no_digit, sym__digits, - STATE(1398), 4, + STATE(1343), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_comment_repeat1, - ACTIONS(4902), 31, + ACTIONS(4868), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -120613,25 +120894,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [55172] = 8, - ACTIONS(4132), 1, - sym__whitespace_ge_2, - ACTIONS(4134), 1, + [55472] = 4, + STATE(1363), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(405), 2, + anon_sym_QMARK, aux_sym__whitespace_token1, - ACTIONS(4138), 1, - aux_sym__newline_token1, - ACTIONS(5544), 1, - sym__block_close, - STATE(1671), 1, - sym__newline, - ACTIONS(5470), 2, - sym__word_no_digit, - sym__digits, - STATE(1358), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(5559), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(403), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -120652,7 +120925,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, @@ -120664,25 +120936,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [55231] = 8, - ACTIONS(5575), 1, + anon_sym_QMARK_GT, sym__whitespace_ge_2, - ACTIONS(5578), 1, - aux_sym__whitespace_token1, - ACTIONS(5584), 1, - aux_sym__newline_token1, - ACTIONS(5587), 1, - sym__block_close, - STATE(1671), 1, - sym__newline, - ACTIONS(5581), 2, sym__word_no_digit, sym__digits, - STATE(1358), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(5572), 32, + aux_sym__newline_token1, + [55523] = 4, + ACTIONS(856), 1, + aux_sym__whitespace_token1, + STATE(1425), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5562), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(854), 37, + sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -120715,25 +120984,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [55290] = 8, - ACTIONS(4132), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [55574] = 8, + ACTIONS(4019), 1, + sym__whitespace_ge_2, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(5591), 1, + ACTIONS(4126), 1, sym__block_close, - STATE(1671), 1, + STATE(1662), 1, sym__newline, - ACTIONS(5589), 2, + ACTIONS(5527), 2, sym__word_no_digit, sym__digits, - STATE(1526), 3, + STATE(1520), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + aux_sym__html_block_6_repeat1, + ACTIONS(5521), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -120766,26 +121039,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [55349] = 8, - ACTIONS(1614), 1, - aux_sym__newline_token1, - ACTIONS(4904), 1, - anon_sym_DASH, - ACTIONS(4908), 1, + [55633] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4910), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(5570), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5593), 2, + ACTIONS(4025), 1, + aux_sym__newline_token1, + ACTIONS(5564), 1, + sym__block_close, + STATE(1656), 1, + sym__newline, + ACTIONS(5462), 2, sym__word_no_digit, sym__digits, - STATE(1370), 4, + STATE(1531), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(4902), 31, + aux_sym__html_block_6_repeat2, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -120798,6 +121070,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, @@ -120817,23 +121090,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [55408] = 4, - STATE(1361), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(399), 2, - anon_sym_QMARK, + [55692] = 6, + ACTIONS(5577), 1, aux_sym__whitespace_token1, - ACTIONS(5595), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(397), 36, + ACTIONS(5569), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(5575), 2, + sym__whitespace_ge_2, + aux_sym__newline_token1, + STATE(1367), 2, + sym__word, + aux_sym_language_repeat1, + ACTIONS(5572), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(5566), 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, @@ -120848,9 +121128,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__, @@ -120859,31 +121139,25 @@ 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, - [55459] = 8, - ACTIONS(5496), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(5601), 1, - anon_sym_RBRACK, - ACTIONS(5604), 1, + [55747] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(5607), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(5613), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(5610), 2, + ACTIONS(5579), 1, + sym__block_close, + STATE(1656), 1, + sym__newline, + ACTIONS(5462), 2, sym__word_no_digit, sym__digits, - STATE(1362), 4, + STATE(1531), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(5598), 31, + aux_sym__html_block_6_repeat2, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -120908,6 +121182,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, @@ -120915,25 +121190,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [55518] = 8, - ACTIONS(4132), 1, + [55806] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(5618), 1, + ACTIONS(5583), 1, sym__block_close, - STATE(1658), 1, + STATE(1656), 1, sym__newline, - ACTIONS(5616), 2, + ACTIONS(5581), 2, sym__word_no_digit, sym__digits, - STATE(1334), 3, + STATE(1368), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5484), 32, + aux_sym__html_block_6_repeat2, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -120966,25 +121241,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [55577] = 8, - ACTIONS(4132), 1, + [55865] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(4152), 1, + ACTIONS(5583), 1, sym__block_close, - STATE(1671), 1, + STATE(1656), 1, sym__newline, - ACTIONS(5470), 2, + ACTIONS(5462), 2, sym__word_no_digit, sym__digits, - STATE(1358), 3, + STATE(1531), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -121017,26 +121292,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [55636] = 8, - ACTIONS(4132), 1, + [55924] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(5180), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(5476), 1, - anon_sym_GT, - ACTIONS(5622), 1, + ACTIONS(5585), 1, sym__block_close, - ACTIONS(5620), 2, + STATE(1656), 1, + sym__newline, + ACTIONS(5462), 2, sym__word_no_digit, sym__digits, - STATE(1355), 4, + STATE(1531), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_block_4_repeat1, - ACTIONS(5474), 31, + aux_sym__html_block_6_repeat2, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -121056,6 +121330,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, @@ -121068,25 +121343,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [55695] = 8, - ACTIONS(4132), 1, + [55983] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(5591), 1, + ACTIONS(5585), 1, sym__block_close, - STATE(1671), 1, + STATE(1656), 1, sym__newline, - ACTIONS(5470), 2, + ACTIONS(5587), 2, sym__word_no_digit, sym__digits, - STATE(1358), 3, + STATE(1370), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -121119,17 +121394,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [55754] = 4, - ACTIONS(976), 1, + [56042] = 8, + ACTIONS(4019), 1, + sym__whitespace_ge_2, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - STATE(1387), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5624), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(974), 37, - sym__code_span_close, + ACTIONS(4025), 1, + aux_sym__newline_token1, + ACTIONS(4230), 1, + sym__block_close, + STATE(1656), 1, + sym__newline, + ACTIONS(5462), 2, + sym__word_no_digit, + sym__digits, + STATE(1531), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -121162,29 +121445,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + [56101] = 8, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(5454), 1, + anon_sym_DQUOTE, + ACTIONS(5456), 1, sym__whitespace_ge_2, + ACTIONS(5458), 1, + aux_sym__whitespace_token1, + STATE(2122), 1, + sym__newline, + ACTIONS(5591), 2, sym__word_no_digit, sym__digits, + STATE(1504), 4, + sym__soft_line_break, + sym__whitespace, + sym__word, + aux_sym__attribute_value_repeat2, + ACTIONS(5589), 31, + anon_sym_BANG, + 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, + [56160] = 8, + ACTIONS(1628), 1, aux_sym__newline_token1, - [55805] = 8, - ACTIONS(4132), 1, + ACTIONS(4870), 1, + anon_sym_DASH, + ACTIONS(4874), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4876), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(5492), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5593), 2, + sym__word_no_digit, + sym__digits, + STATE(1383), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_comment_repeat1, + ACTIONS(4868), 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, + [56219] = 8, + ACTIONS(4019), 1, + sym__whitespace_ge_2, + ACTIONS(4021), 1, + aux_sym__whitespace_token1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(4242), 1, + ACTIONS(4234), 1, sym__block_close, - STATE(1671), 1, + STATE(1662), 1, sym__newline, - ACTIONS(5470), 2, + ACTIONS(5527), 2, sym__word_no_digit, sym__digits, - STATE(1358), 3, + STATE(1520), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + aux_sym__html_block_6_repeat1, + ACTIONS(5521), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -121217,26 +121598,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [55864] = 8, - ACTIONS(2981), 1, + [56278] = 8, + ACTIONS(1628), 1, aux_sym__newline_token1, - ACTIONS(5526), 1, - anon_sym_QMARK, - ACTIONS(5530), 1, + ACTIONS(4870), 1, + anon_sym_DASH, + ACTIONS(4872), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4874), 1, sym__whitespace_ge_2, - ACTIONS(5532), 1, + ACTIONS(4876), 1, aux_sym__whitespace_token1, - ACTIONS(5626), 1, - anon_sym_QMARK_GT, - ACTIONS(5534), 2, + ACTIONS(4878), 2, sym__word_no_digit, sym__digits, - STATE(1339), 4, + STATE(1436), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_comment_repeat1, - ACTIONS(3153), 31, + ACTIONS(4868), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -121249,7 +121630,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, @@ -121257,6 +121637,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, @@ -121268,26 +121649,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [55923] = 8, - ACTIONS(1614), 1, + [56337] = 8, + ACTIONS(4019), 1, + sym__whitespace_ge_2, + ACTIONS(4021), 1, + aux_sym__whitespace_token1, + ACTIONS(4967), 1, aux_sym__newline_token1, - ACTIONS(4904), 1, + ACTIONS(5466), 1, + anon_sym_GT, + ACTIONS(5597), 1, + sym__block_close, + ACTIONS(5595), 2, + sym__word_no_digit, + sym__digits, + STATE(1469), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_4_repeat1, + ACTIONS(5464), 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, + [56396] = 8, + ACTIONS(1628), 1, + aux_sym__newline_token1, + ACTIONS(4870), 1, anon_sym_DASH, - ACTIONS(4908), 1, + ACTIONS(4874), 1, sym__whitespace_ge_2, - ACTIONS(4910), 1, + ACTIONS(4876), 1, aux_sym__whitespace_token1, - ACTIONS(5628), 1, + ACTIONS(5353), 1, anon_sym_DASH_DASH_GT, - ACTIONS(5482), 2, + ACTIONS(5355), 2, sym__word_no_digit, sym__digits, - STATE(1398), 4, + STATE(1433), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_comment_repeat1, - ACTIONS(4902), 31, + ACTIONS(4868), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -121319,25 +121751,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [55982] = 8, - ACTIONS(4132), 1, + [56455] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(5630), 1, + ACTIONS(5601), 1, sym__block_close, - STATE(1671), 1, + STATE(1662), 1, sym__newline, - ACTIONS(5470), 2, + ACTIONS(5599), 2, sym__word_no_digit, sym__digits, - STATE(1358), 3, + STATE(1376), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + aux_sym__html_block_6_repeat1, + ACTIONS(5521), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -121370,25 +121802,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [56041] = 8, - ACTIONS(4132), 1, + [56514] = 8, + ACTIONS(1628), 1, + aux_sym__newline_token1, + ACTIONS(4870), 1, + anon_sym_DASH, + ACTIONS(4874), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4876), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, - aux_sym__newline_token1, - ACTIONS(5634), 1, - sym__block_close, - STATE(1671), 1, - sym__newline, - ACTIONS(5632), 2, + ACTIONS(5353), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5494), 2, sym__word_no_digit, sym__digits, - STATE(1381), 3, + STATE(1447), 4, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + sym__newline, + aux_sym__html_comment_repeat1, + ACTIONS(4868), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -121401,7 +121834,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, @@ -121421,25 +121853,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [56100] = 8, - ACTIONS(4132), 1, + [56573] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4967), 1, aux_sym__newline_token1, - ACTIONS(5638), 1, + ACTIONS(5466), 1, + anon_sym_GT, + ACTIONS(5605), 1, sym__block_close, - STATE(1671), 1, - sym__newline, - ACTIONS(5636), 2, + ACTIONS(5603), 2, sym__word_no_digit, sym__digits, - STATE(1371), 3, + STATE(1378), 4, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + sym__newline, + aux_sym__html_block_4_repeat1, + ACTIONS(5464), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -121459,7 +121892,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, @@ -121472,25 +121904,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [56159] = 8, - ACTIONS(4132), 1, + [56632] = 8, + ACTIONS(1628), 1, + aux_sym__newline_token1, + ACTIONS(4870), 1, + anon_sym_DASH, + ACTIONS(4874), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4876), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, - aux_sym__newline_token1, - ACTIONS(5638), 1, - sym__block_close, - STATE(1671), 1, - sym__newline, - ACTIONS(5470), 2, + ACTIONS(5607), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5494), 2, sym__word_no_digit, sym__digits, - STATE(1358), 3, + STATE(1447), 4, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + sym__newline, + aux_sym__html_comment_repeat1, + ACTIONS(4868), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -121503,7 +121936,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, @@ -121523,25 +121955,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [56218] = 8, - ACTIONS(4132), 1, + [56691] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(5640), 1, + ACTIONS(5611), 1, sym__block_close, - STATE(1671), 1, + STATE(1656), 1, sym__newline, - ACTIONS(5470), 2, + ACTIONS(5609), 2, sym__word_no_digit, sym__digits, - STATE(1358), 3, + STATE(1415), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -121574,25 +122006,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [56277] = 8, - ACTIONS(4132), 1, + [56750] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4967), 1, aux_sym__newline_token1, - ACTIONS(5640), 1, + ACTIONS(5466), 1, + anon_sym_GT, + ACTIONS(5613), 1, sym__block_close, - STATE(1671), 1, - sym__newline, - ACTIONS(5642), 2, + ACTIONS(5595), 2, sym__word_no_digit, sym__digits, - STATE(1374), 3, + STATE(1469), 4, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + sym__newline, + aux_sym__html_block_4_repeat1, + ACTIONS(5464), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -121612,7 +122045,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, @@ -121625,25 +122057,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [56336] = 8, - ACTIONS(4132), 1, + [56809] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(4294), 1, + ACTIONS(5615), 1, sym__block_close, - STATE(1671), 1, + STATE(1656), 1, sym__newline, - ACTIONS(5470), 2, + ACTIONS(5462), 2, sym__word_no_digit, sym__digits, - STATE(1358), 3, + STATE(1531), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -121676,25 +122108,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [56395] = 8, - ACTIONS(4132), 1, + [56868] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(5634), 1, + ACTIONS(5619), 1, sym__block_close, - STATE(1671), 1, + STATE(1656), 1, sym__newline, - ACTIONS(5470), 2, + ACTIONS(5617), 2, sym__word_no_digit, sym__digits, - STATE(1358), 3, + STATE(1386), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -121727,72 +122159,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [56454] = 4, - ACTIONS(765), 1, - aux_sym__whitespace_token1, - STATE(1563), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5538), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(763), 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, - 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, - [56505] = 8, - ACTIONS(4132), 1, + [56927] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(4206), 1, + ACTIONS(5619), 1, sym__block_close, - STATE(1658), 1, + STATE(1656), 1, sym__newline, - ACTIONS(5486), 2, + ACTIONS(5462), 2, sym__word_no_digit, sym__digits, - STATE(1462), 3, + STATE(1531), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5484), 32, + aux_sym__html_block_6_repeat2, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -121825,25 +122210,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [56564] = 8, - ACTIONS(4132), 1, + [56986] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(5644), 1, + ACTIONS(5621), 1, sym__block_close, - STATE(1671), 1, + STATE(1656), 1, sym__newline, - ACTIONS(5470), 2, + ACTIONS(5462), 2, sym__word_no_digit, sym__digits, - STATE(1358), 3, + STATE(1531), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -121876,76 +122261,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [56623] = 8, - ACTIONS(4132), 1, - sym__whitespace_ge_2, - ACTIONS(4134), 1, - aux_sym__whitespace_token1, - ACTIONS(5180), 1, - aux_sym__newline_token1, - ACTIONS(5476), 1, - anon_sym_GT, - ACTIONS(5646), 1, - sym__block_close, - ACTIONS(5478), 2, - sym__word_no_digit, - sym__digits, - STATE(1475), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_4_repeat1, - ACTIONS(5474), 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, - [56682] = 8, - ACTIONS(4132), 1, + [57045] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(5644), 1, + ACTIONS(5621), 1, sym__block_close, - STATE(1671), 1, + STATE(1656), 1, sym__newline, - ACTIONS(5648), 2, + ACTIONS(5623), 2, sym__word_no_digit, sym__digits, - STATE(1384), 3, + STATE(1388), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -121978,25 +122312,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [56741] = 8, - ACTIONS(4132), 1, + [57104] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(5650), 1, + ACTIONS(4246), 1, sym__block_close, - STATE(1671), 1, + STATE(1656), 1, sym__newline, - ACTIONS(5470), 2, + ACTIONS(5462), 2, sym__word_no_digit, sym__digits, - STATE(1358), 3, + STATE(1531), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -122029,16 +122363,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [56800] = 4, - ACTIONS(1101), 1, + [57163] = 4, + ACTIONS(822), 1, aux_sym__whitespace_token1, - STATE(1467), 1, + STATE(1428), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5652), 3, + ACTIONS(5625), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1099), 37, + ACTIONS(820), 37, sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -122076,64 +122410,25 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [56851] = 4, - ACTIONS(789), 1, - aux_sym__whitespace_token1, - STATE(1379), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5654), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(787), 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, - 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, + [57214] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, + ACTIONS(4021), 1, + aux_sym__whitespace_token1, + ACTIONS(4025), 1, + aux_sym__newline_token1, + ACTIONS(5611), 1, + sym__block_close, + STATE(1656), 1, + sym__newline, + ACTIONS(5462), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [56902] = 4, - ACTIONS(986), 1, - aux_sym__whitespace_token1, - STATE(1563), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5538), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(984), 37, - sym__code_span_close, + STATE(1531), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -122166,29 +122461,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + [57273] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [56953] = 8, - ACTIONS(4132), 1, - sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(5658), 1, + ACTIONS(4252), 1, sym__block_close, - STATE(1658), 1, + STATE(1662), 1, sym__newline, - ACTIONS(5656), 2, + ACTIONS(5527), 2, sym__word_no_digit, sym__digits, - STATE(1380), 3, + STATE(1520), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat1, - ACTIONS(5484), 32, + ACTIONS(5521), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -122221,25 +122512,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [57012] = 8, - ACTIONS(4132), 1, + [57332] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(5660), 1, + ACTIONS(5629), 1, sym__block_close, - STATE(1671), 1, + STATE(1656), 1, sym__newline, - ACTIONS(5470), 2, + ACTIONS(5627), 2, sym__word_no_digit, sym__digits, - STATE(1358), 3, + STATE(1474), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -122272,26 +122563,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [57071] = 8, - ACTIONS(4132), 1, + [57391] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(5180), 1, + ACTIONS(4967), 1, aux_sym__newline_token1, - ACTIONS(5476), 1, + ACTIONS(5466), 1, anon_sym_GT, - ACTIONS(5664), 1, + ACTIONS(5631), 1, sym__block_close, - ACTIONS(5662), 2, + ACTIONS(5595), 2, sym__word_no_digit, sym__digits, - STATE(1382), 4, + STATE(1469), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_4_repeat1, - ACTIONS(5474), 31, + ACTIONS(5464), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -122323,64 +122614,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [57130] = 4, - STATE(1361), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(409), 2, - anon_sym_QMARK, - aux_sym__whitespace_token1, - ACTIONS(5666), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(407), 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_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_QMARK_GT, + [57450] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, + ACTIONS(4021), 1, + aux_sym__whitespace_token1, + ACTIONS(4025), 1, + aux_sym__newline_token1, + ACTIONS(4258), 1, + sym__block_close, + STATE(1662), 1, + sym__newline, + ACTIONS(5527), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [57181] = 4, - ACTIONS(986), 1, - aux_sym__whitespace_token1, - STATE(1422), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5668), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(984), 37, - sym__code_span_close, + STATE(1520), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat1, + ACTIONS(5521), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -122413,29 +122665,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + [57509] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [57232] = 8, - ACTIONS(4132), 1, - sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(5670), 1, + ACTIONS(4264), 1, sym__block_close, - STATE(1671), 1, + STATE(1662), 1, sym__newline, - ACTIONS(5470), 2, + ACTIONS(5527), 2, sym__word_no_digit, sym__digits, - STATE(1358), 3, + STATE(1520), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + aux_sym__html_block_6_repeat1, + ACTIONS(5521), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -122468,26 +122716,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [57291] = 8, - ACTIONS(1614), 1, - aux_sym__newline_token1, - ACTIONS(4904), 1, - anon_sym_DASH, - ACTIONS(4908), 1, + [57568] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4910), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(5410), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5412), 2, + ACTIONS(4025), 1, + aux_sym__newline_token1, + ACTIONS(5635), 1, + sym__block_close, + STATE(1662), 1, + sym__newline, + ACTIONS(5633), 2, sym__word_no_digit, sym__digits, - STATE(1503), 4, + STATE(1394), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(4902), 31, + aux_sym__html_block_6_repeat1, + ACTIONS(5521), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -122500,6 +122747,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, @@ -122519,68 +122767,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [57350] = 8, - ACTIONS(1614), 1, - aux_sym__newline_token1, - ACTIONS(4904), 1, - anon_sym_DASH, - ACTIONS(4908), 1, + [57627] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4910), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(5410), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5482), 2, + ACTIONS(4967), 1, + aux_sym__newline_token1, + ACTIONS(5466), 1, + anon_sym_GT, + ACTIONS(5639), 1, + sym__block_close, + ACTIONS(5637), 2, sym__word_no_digit, sym__digits, - STATE(1398), 4, + STATE(1396), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(4902), 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, - [57409] = 4, - ACTIONS(789), 1, - aux_sym__whitespace_token1, - STATE(1563), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5538), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(787), 37, - sym__code_span_close, + aux_sym__html_block_4_repeat1, + ACTIONS(5464), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -122600,7 +122806,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, @@ -122613,30 +122818,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + [57686] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [57460] = 8, - ACTIONS(4132), 1, - sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(5180), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(5476), 1, - anon_sym_GT, - ACTIONS(5674), 1, + ACTIONS(5629), 1, sym__block_close, - ACTIONS(5672), 2, + STATE(1656), 1, + sym__newline, + ACTIONS(5462), 2, sym__word_no_digit, sym__digits, - STATE(1414), 4, + STATE(1531), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_block_4_repeat1, - ACTIONS(5474), 31, + aux_sym__html_block_6_repeat2, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -122656,6 +122856,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, @@ -122668,49 +122869,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [57519] = 8, - ACTIONS(5496), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5679), 1, - anon_sym_DASH, - ACTIONS(5682), 1, + [57745] = 10, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(5685), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(5691), 1, - aux_sym__newline_token1, - ACTIONS(5688), 2, - sym__word_no_digit, - sym__digits, - STATE(1398), 4, + ACTIONS(4090), 1, + anon_sym_LT, + ACTIONS(4345), 1, + anon_sym_LPAREN, + STATE(1705), 1, sym__whitespace, + STATE(2081), 1, + sym_link_destination, + ACTIONS(4082), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1229), 2, + sym__link_destination_parenthesis, sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(5676), 31, + ACTIONS(4092), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4078), 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__, @@ -122719,26 +122922,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [57578] = 4, - ACTIONS(813), 1, - aux_sym__whitespace_token1, - STATE(1563), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5538), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(811), 37, - sym__code_span_close, + [57808] = 10, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(4090), 1, + anon_sym_LT, + ACTIONS(4345), 1, + anon_sym_LPAREN, + STATE(1509), 1, + sym__soft_line_break, + STATE(2081), 1, + sym_link_destination, + STATE(2137), 1, + sym__newline, + ACTIONS(4082), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1229), 2, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(4092), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4078), 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, @@ -122747,13 +122962,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__, @@ -122762,29 +122975,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + [57871] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [57629] = 8, - ACTIONS(4132), 1, - sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(5694), 1, + ACTIONS(5641), 1, sym__block_close, - STATE(1671), 1, + STATE(1656), 1, sym__newline, - ACTIONS(5470), 2, + ACTIONS(5462), 2, sym__word_no_digit, sym__digits, - STATE(1358), 3, + STATE(1531), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -122817,25 +123026,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [57688] = 8, - ACTIONS(4132), 1, + [57930] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(5698), 1, + ACTIONS(5645), 1, sym__block_close, - STATE(1671), 1, + STATE(1656), 1, sym__newline, - ACTIONS(5696), 2, + ACTIONS(5643), 2, sym__word_no_digit, sym__digits, - STATE(1400), 3, + STATE(1404), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -122868,25 +123077,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [57747] = 8, - ACTIONS(4132), 1, + [57989] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(5698), 1, + ACTIONS(5645), 1, sym__block_close, - STATE(1671), 1, + STATE(1656), 1, sym__newline, - ACTIONS(5470), 2, + ACTIONS(5462), 2, sym__word_no_digit, sym__digits, - STATE(1358), 3, + STATE(1531), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -122919,25 +123128,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [57806] = 8, - ACTIONS(4132), 1, + [58048] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(5700), 1, + ACTIONS(5647), 1, sym__block_close, - STATE(1671), 1, + STATE(1656), 1, sym__newline, - ACTIONS(5470), 2, + ACTIONS(5462), 2, sym__word_no_digit, sym__digits, - STATE(1358), 3, + STATE(1531), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -122970,25 +123179,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [57865] = 8, - ACTIONS(4132), 1, + [58107] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(5700), 1, + ACTIONS(5647), 1, sym__block_close, - STATE(1671), 1, + STATE(1656), 1, sym__newline, - ACTIONS(5702), 2, + ACTIONS(5649), 2, sym__word_no_digit, sym__digits, - STATE(1402), 3, + STATE(1406), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -123021,25 +123230,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [57924] = 8, - ACTIONS(4132), 1, + [58166] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(4212), 1, + ACTIONS(4290), 1, sym__block_close, - STATE(1671), 1, + STATE(1656), 1, sym__newline, - ACTIONS(5470), 2, + ACTIONS(5462), 2, sym__word_no_digit, sym__digits, - STATE(1358), 3, + STATE(1531), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -123072,25 +123281,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [57983] = 8, - ACTIONS(4132), 1, + [58225] = 8, + ACTIONS(1628), 1, + aux_sym__newline_token1, + ACTIONS(4870), 1, + anon_sym_DASH, + ACTIONS(4872), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4874), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4876), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, - aux_sym__newline_token1, - ACTIONS(5706), 1, - sym__block_close, - STATE(1658), 1, - sym__newline, - ACTIONS(5704), 2, + ACTIONS(5494), 2, sym__word_no_digit, sym__digits, - STATE(1423), 3, + STATE(1447), 4, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5484), 32, + sym__newline, + aux_sym__html_comment_repeat1, + ACTIONS(4868), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -123103,7 +123313,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, @@ -123123,25 +123332,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [58042] = 8, - ACTIONS(4132), 1, + [58284] = 8, + ACTIONS(5535), 1, + anon_sym_QMARK_GT, + ACTIONS(5654), 1, + anon_sym_QMARK, + ACTIONS(5657), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(5660), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(5666), 1, aux_sym__newline_token1, - ACTIONS(5710), 1, - sym__block_close, - STATE(1671), 1, - sym__newline, - ACTIONS(5708), 2, + ACTIONS(5663), 2, sym__word_no_digit, sym__digits, - STATE(1389), 3, + STATE(1411), 4, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + sym__newline, + aux_sym__processing_instruction_repeat1, + ACTIONS(5651), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -123162,7 +123372,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, @@ -123174,25 +123383,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [58101] = 8, - ACTIONS(4132), 1, - sym__whitespace_ge_2, - ACTIONS(4134), 1, + [58343] = 4, + ACTIONS(816), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, - aux_sym__newline_token1, - ACTIONS(5710), 1, - sym__block_close, - STATE(1671), 1, - sym__newline, - ACTIONS(5470), 2, - sym__word_no_digit, - sym__digits, - STATE(1358), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + STATE(1431), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5669), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(814), 37, + sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -123225,17 +123426,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [58160] = 4, - ACTIONS(1107), 1, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [58394] = 8, + ACTIONS(4019), 1, + sym__whitespace_ge_2, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - STATE(1479), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5712), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(1105), 37, - sym__code_span_close, + ACTIONS(4025), 1, + aux_sym__newline_token1, + ACTIONS(4280), 1, + sym__block_close, + STATE(1662), 1, + sym__newline, + ACTIONS(5527), 2, + sym__word_no_digit, + sym__digits, + STATE(1520), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat1, + ACTIONS(5521), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -123268,29 +123481,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + [58453] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [58211] = 8, - ACTIONS(4132), 1, - sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4967), 1, aux_sym__newline_token1, - ACTIONS(5716), 1, + ACTIONS(5466), 1, + anon_sym_GT, + ACTIONS(5671), 1, sym__block_close, - STATE(1671), 1, - sym__newline, - ACTIONS(5714), 2, + ACTIONS(5595), 2, sym__word_no_digit, sym__digits, - STATE(1393), 3, + STATE(1469), 4, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + sym__newline, + aux_sym__html_block_4_repeat1, + ACTIONS(5464), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -123310,7 +123520,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, @@ -123323,25 +123532,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [58270] = 8, - ACTIONS(4132), 1, + [58512] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(5716), 1, + ACTIONS(5673), 1, sym__block_close, - STATE(1671), 1, + STATE(1656), 1, sym__newline, - ACTIONS(5470), 2, + ACTIONS(5462), 2, sym__word_no_digit, sym__digits, - STATE(1358), 3, + STATE(1531), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -123374,21 +123583,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [58329] = 4, - ACTIONS(5718), 1, - sym__blank_line_start, - STATE(2332), 1, - sym__blank_line, - ACTIONS(4612), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [58571] = 8, + ACTIONS(4019), 1, + sym__whitespace_ge_2, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4610), 37, + ACTIONS(4025), 1, + aux_sym__newline_token1, + ACTIONS(5673), 1, + sym__block_close, + STATE(1656), 1, + sym__newline, + ACTIONS(5675), 2, + sym__word_no_digit, + sym__digits, + STATE(1498), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4017), 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, @@ -123406,6 +123625,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__, @@ -123414,24 +123634,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, - [58380] = 4, - ACTIONS(813), 1, - aux_sym__whitespace_token1, - STATE(1396), 1, + [58630] = 4, + STATE(1430), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5720), 3, + ACTIONS(391), 2, + anon_sym_RBRACK, + aux_sym__whitespace_token1, + ACTIONS(5677), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(811), 37, - sym__code_span_close, + ACTIONS(389), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -123456,7 +123669,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, @@ -123464,30 +123676,22 @@ 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, - [58431] = 8, - ACTIONS(4132), 1, - sym__whitespace_ge_2, - ACTIONS(4134), 1, + [58681] = 4, + STATE(1472), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(391), 2, + anon_sym_RBRACK, aux_sym__whitespace_token1, - ACTIONS(5180), 1, - aux_sym__newline_token1, - ACTIONS(5476), 1, - anon_sym_GT, - ACTIONS(5722), 1, - sym__block_close, - ACTIONS(5478), 2, - sym__word_no_digit, - sym__digits, - STATE(1475), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_4_repeat1, - ACTIONS(5474), 31, + ACTIONS(5679), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(389), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -123507,11 +123711,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, @@ -123519,17 +123723,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [58490] = 4, - STATE(1428), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(391), 2, - anon_sym_RBRACK, + anon_sym_RBRACK_RBRACK_GT, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [58732] = 4, + ACTIONS(810), 1, aux_sym__whitespace_token1, - ACTIONS(5724), 3, + STATE(1434), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5681), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(389), 36, + ACTIONS(808), 37, + sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -123554,6 +123763,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, @@ -123561,22 +123771,21 @@ 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, - [58541] = 4, - STATE(1470), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(391), 2, - anon_sym_RBRACK, + [58783] = 4, + ACTIONS(804), 1, aux_sym__whitespace_token1, - ACTIONS(5726), 3, + STATE(1440), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5683), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(389), 36, + ACTIONS(802), 37, + sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -123601,6 +123810,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, @@ -123608,30 +123818,21 @@ 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, - [58592] = 8, - ACTIONS(4132), 1, - sym__whitespace_ge_2, - ACTIONS(4134), 1, + [58834] = 4, + ACTIONS(798), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, - aux_sym__newline_token1, - ACTIONS(5728), 1, - sym__block_close, - STATE(1671), 1, - sym__newline, - ACTIONS(5470), 2, - sym__word_no_digit, - sym__digits, - STATE(1358), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + STATE(1448), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5685), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(796), 37, + sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -123664,25 +123865,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [58651] = 8, - ACTIONS(4132), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [58885] = 8, + ACTIONS(4019), 1, + sym__whitespace_ge_2, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(5728), 1, + ACTIONS(5689), 1, sym__block_close, - STATE(1671), 1, + STATE(1662), 1, sym__newline, - ACTIONS(5730), 2, + ACTIONS(5687), 2, sym__word_no_digit, sym__digits, - STATE(1408), 3, + STATE(1413), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + aux_sym__html_block_6_repeat1, + ACTIONS(5521), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -123715,25 +123920,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [58710] = 8, - ACTIONS(4132), 1, + [58944] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4967), 1, aux_sym__newline_token1, - ACTIONS(5732), 1, + ACTIONS(5466), 1, + anon_sym_GT, + ACTIONS(5693), 1, sym__block_close, - STATE(1671), 1, - sym__newline, - ACTIONS(5470), 2, + ACTIONS(5691), 2, sym__word_no_digit, sym__digits, - STATE(1358), 3, + STATE(1414), 4, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + sym__newline, + aux_sym__html_block_4_repeat1, + ACTIONS(5464), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -123753,7 +123959,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, @@ -123766,25 +123971,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [58769] = 8, - ACTIONS(4132), 1, - sym__whitespace_ge_2, - ACTIONS(4134), 1, + [59003] = 4, + ACTIONS(792), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, - aux_sym__newline_token1, - ACTIONS(5732), 1, - sym__block_close, - STATE(1671), 1, - sym__newline, - ACTIONS(5734), 2, - sym__word_no_digit, - sym__digits, - STATE(1411), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + STATE(1450), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5695), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(790), 37, + sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -123817,26 +124014,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [58828] = 8, - ACTIONS(1614), 1, - aux_sym__newline_token1, - ACTIONS(4904), 1, - anon_sym_DASH, - ACTIONS(4908), 1, sym__whitespace_ge_2, - ACTIONS(4910), 1, - aux_sym__whitespace_token1, - ACTIONS(5736), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5482), 2, sym__word_no_digit, sym__digits, - STATE(1398), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(4902), 31, + aux_sym__newline_token1, + [59054] = 4, + ACTIONS(633), 1, + aux_sym__whitespace_token1, + STATE(1562), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5557), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(631), 37, + sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -123849,6 +124041,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, @@ -123868,16 +124061,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [58887] = 4, - ACTIONS(1000), 1, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [59105] = 4, + ACTIONS(633), 1, aux_sym__whitespace_token1, - STATE(1563), 1, + STATE(1452), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5538), 3, + ACTIONS(5697), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(998), 37, + ACTIONS(631), 37, sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -123915,25 +124112,26 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [58938] = 8, - ACTIONS(4132), 1, + [59156] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4967), 1, aux_sym__newline_token1, - ACTIONS(4264), 1, + ACTIONS(5466), 1, + anon_sym_GT, + ACTIONS(5699), 1, sym__block_close, - STATE(1658), 1, - sym__newline, - ACTIONS(5486), 2, + ACTIONS(5595), 2, sym__word_no_digit, sym__digits, - STATE(1462), 3, + STATE(1469), 4, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5484), 32, + sym__newline, + aux_sym__html_block_4_repeat1, + ACTIONS(5464), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -123953,7 +124151,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, @@ -123966,21 +124163,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [58997] = 4, - ACTIONS(5718), 1, - sym__blank_line_start, - STATE(2353), 1, - sym__blank_line, - ACTIONS(4633), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [59215] = 4, + ACTIONS(828), 1, aux_sym__whitespace_token1, - ACTIONS(4631), 37, + STATE(1562), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5557), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(826), 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, @@ -123998,6 +124197,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__, @@ -124006,32 +124206,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, - [59048] = 8, - ACTIONS(4132), 1, - sym__whitespace_ge_2, - ACTIONS(4134), 1, + [59266] = 4, + ACTIONS(828), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, - aux_sym__newline_token1, - ACTIONS(4290), 1, - sym__block_close, - STATE(1671), 1, - sym__newline, - ACTIONS(5470), 2, - sym__word_no_digit, - sym__digits, - STATE(1358), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + STATE(1483), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5701), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(826), 37, + sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -124064,76 +124253,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [59107] = 8, - ACTIONS(4132), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, - aux_sym__whitespace_token1, - ACTIONS(4138), 1, - aux_sym__newline_token1, - ACTIONS(5740), 1, - sym__block_close, - STATE(1671), 1, - sym__newline, - ACTIONS(5738), 2, sym__word_no_digit, sym__digits, - STATE(1429), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4130), 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, + aux_sym__newline_token1, + [59317] = 4, + STATE(1472), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(399), 2, anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - [59166] = 8, - ACTIONS(4132), 1, - sym__whitespace_ge_2, - ACTIONS(4134), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, - aux_sym__newline_token1, - ACTIONS(5740), 1, - sym__block_close, - STATE(1671), 1, - sym__newline, - ACTIONS(5470), 2, - sym__word_no_digit, - sym__digits, - STATE(1358), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(5679), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(397), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -124158,7 +124292,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, @@ -124166,17 +124299,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [59225] = 4, - STATE(1470), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(409), 2, - anon_sym_RBRACK, + anon_sym_RBRACK_RBRACK_GT, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [59368] = 4, + ACTIONS(852), 1, aux_sym__whitespace_token1, - ACTIONS(5726), 3, + STATE(1562), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5557), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(407), 36, + ACTIONS(850), 37, + sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -124201,6 +124339,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, @@ -124208,30 +124347,21 @@ 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, - [59276] = 8, - ACTIONS(4132), 1, - sym__whitespace_ge_2, - ACTIONS(4134), 1, + [59419] = 4, + ACTIONS(852), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, - aux_sym__newline_token1, - ACTIONS(5742), 1, - sym__block_close, - STATE(1671), 1, - sym__newline, - ACTIONS(5470), 2, - sym__word_no_digit, - sym__digits, - STATE(1358), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + STATE(1484), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5703), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(850), 37, + sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -124264,76 +124394,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [59335] = 8, - ACTIONS(4132), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, - aux_sym__whitespace_token1, - ACTIONS(4138), 1, - aux_sym__newline_token1, - ACTIONS(5742), 1, - sym__block_close, - STATE(1671), 1, - sym__newline, - ACTIONS(5744), 2, sym__word_no_digit, sym__digits, - STATE(1436), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4130), 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, + [59470] = 8, + ACTIONS(1628), 1, + aux_sym__newline_token1, + ACTIONS(4870), 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, - [59394] = 8, - ACTIONS(4132), 1, + ACTIONS(4874), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4876), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, - aux_sym__newline_token1, - ACTIONS(4196), 1, - sym__block_close, - STATE(1671), 1, - sym__newline, - ACTIONS(5470), 2, + ACTIONS(5705), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5494), 2, sym__word_no_digit, sym__digits, - STATE(1358), 3, + STATE(1447), 4, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + sym__newline, + aux_sym__html_comment_repeat1, + ACTIONS(4868), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -124346,7 +124430,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, @@ -124366,16 +124449,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [59453] = 4, - ACTIONS(683), 1, + [59529] = 4, + ACTIONS(893), 1, aux_sym__whitespace_token1, - STATE(1563), 1, + STATE(1562), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5538), 3, + ACTIONS(5557), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(681), 37, + ACTIONS(891), 37, sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -124413,25 +124496,25 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [59504] = 8, - ACTIONS(4132), 1, + [59580] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(4192), 1, + ACTIONS(4296), 1, sym__block_close, - STATE(1671), 1, + STATE(1662), 1, sym__newline, - ACTIONS(5470), 2, + ACTIONS(5527), 2, sym__word_no_digit, sym__digits, - STATE(1358), 3, + STATE(1520), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + aux_sym__html_block_6_repeat1, + ACTIONS(5521), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -124464,26 +124547,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [59563] = 8, - ACTIONS(1614), 1, + [59639] = 8, + ACTIONS(1628), 1, aux_sym__newline_token1, - ACTIONS(4904), 1, + ACTIONS(4870), 1, anon_sym_DASH, - ACTIONS(4908), 1, + ACTIONS(4874), 1, sym__whitespace_ge_2, - ACTIONS(4910), 1, + ACTIONS(4876), 1, aux_sym__whitespace_token1, - ACTIONS(5746), 1, + ACTIONS(5707), 1, anon_sym_DASH_DASH_GT, - ACTIONS(5748), 2, + ACTIONS(5494), 2, sym__word_no_digit, sym__digits, - STATE(1421), 4, + STATE(1447), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_comment_repeat1, - ACTIONS(4902), 31, + ACTIONS(4868), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -124515,26 +124598,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [59622] = 8, - ACTIONS(1614), 1, + [59698] = 8, + ACTIONS(1628), 1, aux_sym__newline_token1, - ACTIONS(4904), 1, + ACTIONS(4870), 1, anon_sym_DASH, - ACTIONS(4908), 1, + ACTIONS(4874), 1, sym__whitespace_ge_2, - ACTIONS(4910), 1, + ACTIONS(4876), 1, aux_sym__whitespace_token1, - ACTIONS(5746), 1, + ACTIONS(5707), 1, anon_sym_DASH_DASH_GT, - ACTIONS(5482), 2, + ACTIONS(5709), 2, sym__word_no_digit, sym__digits, - STATE(1398), 4, + STATE(1442), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_comment_repeat1, - ACTIONS(4902), 31, + ACTIONS(4868), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -124566,25 +124649,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [59681] = 8, - ACTIONS(4132), 1, + [59757] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(5750), 1, + ACTIONS(4114), 1, sym__block_close, - STATE(1671), 1, + STATE(1656), 1, sym__newline, - ACTIONS(5470), 2, + ACTIONS(5462), 2, sym__word_no_digit, sym__digits, - STATE(1358), 3, + STATE(1531), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -124617,16 +124700,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [59740] = 4, - ACTIONS(679), 1, + [59816] = 4, + ACTIONS(893), 1, aux_sym__whitespace_token1, - STATE(1563), 1, + STATE(1493), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5538), 3, + ACTIONS(5711), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(677), 37, + ACTIONS(891), 37, sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -124664,16 +124747,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [59791] = 4, - ACTIONS(622), 1, + [59867] = 4, + ACTIONS(876), 1, aux_sym__whitespace_token1, - STATE(1563), 1, + STATE(1562), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5538), 3, + ACTIONS(5557), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(620), 37, + ACTIONS(874), 37, sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -124711,67 +124794,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [59842] = 8, - ACTIONS(4132), 1, - sym__whitespace_ge_2, - ACTIONS(4134), 1, - aux_sym__whitespace_token1, - ACTIONS(4138), 1, - aux_sym__newline_token1, - ACTIONS(4298), 1, - sym__block_close, - STATE(1671), 1, - sym__newline, - ACTIONS(5470), 2, - sym__word_no_digit, - sym__digits, - STATE(1358), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4130), 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, - [59901] = 4, - ACTIONS(618), 1, + [59918] = 4, + ACTIONS(876), 1, aux_sym__whitespace_token1, - STATE(1563), 1, + STATE(1494), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5538), 3, + ACTIONS(5713), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(616), 37, + ACTIONS(874), 37, sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -124809,120 +124841,26 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [59952] = 4, - ACTIONS(614), 1, - aux_sym__whitespace_token1, - STATE(1563), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5538), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(612), 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, - 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, + [59969] = 8, + ACTIONS(1628), 1, aux_sym__newline_token1, - [60003] = 4, - ACTIONS(576), 1, - aux_sym__whitespace_token1, - STATE(1563), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5538), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(574), 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, + ACTIONS(4870), 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, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [60054] = 8, - ACTIONS(4132), 1, + ACTIONS(4874), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4876), 1, aux_sym__whitespace_token1, - ACTIONS(5180), 1, - aux_sym__newline_token1, - ACTIONS(5476), 1, - anon_sym_GT, - ACTIONS(5754), 1, - sym__block_close, - ACTIONS(5752), 2, + ACTIONS(5715), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5494), 2, sym__word_no_digit, sym__digits, - STATE(1459), 4, + STATE(1447), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_4_repeat1, - ACTIONS(5474), 31, + aux_sym__html_comment_repeat1, + ACTIONS(4868), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -124935,13 +124873,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, @@ -124954,25 +124892,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [60113] = 8, - ACTIONS(4132), 1, + [60028] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(5758), 1, + ACTIONS(5719), 1, sym__block_close, - STATE(1658), 1, + STATE(1656), 1, sym__newline, - ACTIONS(5756), 2, + ACTIONS(5717), 2, sym__word_no_digit, sym__digits, - STATE(1461), 3, + STATE(1445), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5484), 32, + aux_sym__html_block_6_repeat2, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -125005,25 +124943,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [60172] = 8, - ACTIONS(4132), 1, + [60087] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(4306), 1, + ACTIONS(5719), 1, sym__block_close, - STATE(1671), 1, + STATE(1656), 1, sym__newline, - ACTIONS(5470), 2, + ACTIONS(5462), 2, sym__word_no_digit, sym__digits, - STATE(1358), 3, + STATE(1531), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -125056,17 +124994,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [60231] = 4, - ACTIONS(572), 1, + [60146] = 8, + ACTIONS(4019), 1, + sym__whitespace_ge_2, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - STATE(1563), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5538), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(570), 37, - sym__code_span_close, + ACTIONS(4025), 1, + aux_sym__newline_token1, + ACTIONS(5721), 1, + sym__block_close, + STATE(1656), 1, + sym__newline, + ACTIONS(5462), 2, + sym__word_no_digit, + sym__digits, + STATE(1531), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -125099,21 +125045,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + [60205] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, + ACTIONS(4021), 1, + aux_sym__whitespace_token1, + ACTIONS(4025), 1, + aux_sym__newline_token1, + ACTIONS(5721), 1, + sym__block_close, + STATE(1656), 1, + sym__newline, + ACTIONS(5723), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [60282] = 4, - ACTIONS(801), 1, - aux_sym__whitespace_token1, - STATE(1432), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5760), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(799), 37, - sym__code_span_close, + STATE(1453), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -125146,29 +125096,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + [60264] = 8, + ACTIONS(5728), 1, + anon_sym_DASH, + ACTIONS(5731), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5733), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [60333] = 8, - ACTIONS(4132), 1, - sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(5736), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(5742), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, - sym__block_close, - STATE(1658), 1, - sym__newline, - ACTIONS(5486), 2, + ACTIONS(5739), 2, sym__word_no_digit, sym__digits, - STATE(1462), 3, + STATE(1447), 4, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5484), 32, + sym__newline, + aux_sym__html_comment_repeat1, + ACTIONS(5725), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -125181,7 +125128,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, @@ -125201,16 +125147,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [60392] = 4, - ACTIONS(801), 1, + [60323] = 4, + ACTIONS(838), 1, aux_sym__whitespace_token1, - STATE(1563), 1, + STATE(1562), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5538), 3, + ACTIONS(5557), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(799), 37, + ACTIONS(836), 37, sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -125248,25 +125194,17 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [60443] = 8, - ACTIONS(4132), 1, - sym__whitespace_ge_2, - ACTIONS(4134), 1, + [60374] = 4, + ACTIONS(838), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, - aux_sym__newline_token1, - ACTIONS(4160), 1, - sym__block_close, - STATE(1658), 1, - sym__newline, - ACTIONS(5486), 2, - sym__word_no_digit, - sym__digits, - STATE(1462), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5484), 32, + STATE(1502), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5745), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(836), 37, + sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -125299,16 +125237,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [60502] = 4, - ACTIONS(823), 1, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [60425] = 4, + ACTIONS(832), 1, aux_sym__whitespace_token1, - STATE(1437), 1, + STATE(1562), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5762), 3, + ACTIONS(5557), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(821), 37, + ACTIONS(830), 37, sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -125346,26 +125288,17 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [60553] = 8, - ACTIONS(4132), 1, - sym__whitespace_ge_2, - ACTIONS(4134), 1, + [60476] = 4, + ACTIONS(832), 1, aux_sym__whitespace_token1, - ACTIONS(5180), 1, - aux_sym__newline_token1, - ACTIONS(5476), 1, - anon_sym_GT, - ACTIONS(5764), 1, - sym__block_close, - ACTIONS(5478), 2, - sym__word_no_digit, - sym__digits, - STATE(1475), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_4_repeat1, - ACTIONS(5474), 31, + STATE(1510), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5747), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(830), 37, + sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -125385,6 +125318,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, @@ -125397,16 +125331,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [60612] = 4, - ACTIONS(823), 1, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [60527] = 4, + ACTIONS(782), 1, aux_sym__whitespace_token1, - STATE(1563), 1, + STATE(1562), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5538), 3, + ACTIONS(5557), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(821), 37, + ACTIONS(780), 37, sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -125444,17 +125382,25 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [60663] = 4, - ACTIONS(864), 1, + [60578] = 8, + ACTIONS(4019), 1, + sym__whitespace_ge_2, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - STATE(1438), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5766), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(862), 37, - sym__code_span_close, + ACTIONS(4025), 1, + aux_sym__newline_token1, + ACTIONS(5749), 1, + sym__block_close, + STATE(1656), 1, + sym__newline, + ACTIONS(5462), 2, + sym__word_no_digit, + sym__digits, + STATE(1531), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -125487,30 +125433,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + [60637] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [60714] = 8, - ACTIONS(1614), 1, - aux_sym__newline_token1, - ACTIONS(4904), 1, - anon_sym_DASH, - ACTIONS(4908), 1, - sym__whitespace_ge_2, - ACTIONS(4910), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(5079), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5482), 2, + ACTIONS(4025), 1, + aux_sym__newline_token1, + ACTIONS(5753), 1, + sym__block_close, + STATE(1656), 1, + sym__newline, + ACTIONS(5751), 2, sym__word_no_digit, sym__digits, - STATE(1398), 4, + STATE(1544), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(4902), 31, + aux_sym__html_block_6_repeat2, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -125523,6 +125464,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, @@ -125542,26 +125484,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [60773] = 8, - ACTIONS(1614), 1, + [60696] = 8, + ACTIONS(1628), 1, aux_sym__newline_token1, - ACTIONS(4904), 1, + ACTIONS(4870), 1, anon_sym_DASH, - ACTIONS(4908), 1, + ACTIONS(4874), 1, sym__whitespace_ge_2, - ACTIONS(4910), 1, + ACTIONS(4876), 1, aux_sym__whitespace_token1, - ACTIONS(5079), 1, + ACTIONS(5705), 1, anon_sym_DASH_DASH_GT, - ACTIONS(5081), 2, + ACTIONS(5755), 2, sym__word_no_digit, sym__digits, - STATE(1435), 4, + STATE(1526), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_comment_repeat1, - ACTIONS(4902), 31, + ACTIONS(4868), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -125593,17 +125535,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [60832] = 4, - ACTIONS(864), 1, + [60755] = 8, + ACTIONS(4019), 1, + sym__whitespace_ge_2, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - STATE(1563), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5538), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(862), 37, - sym__code_span_close, + ACTIONS(4025), 1, + aux_sym__newline_token1, + ACTIONS(5753), 1, + sym__block_close, + STATE(1656), 1, + sym__newline, + ACTIONS(5462), 2, + sym__word_no_digit, + sym__digits, + STATE(1531), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -125636,21 +125586,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + [60814] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, + ACTIONS(4021), 1, + aux_sym__whitespace_token1, + ACTIONS(4025), 1, + aux_sym__newline_token1, + ACTIONS(5759), 1, + sym__block_close, + STATE(1656), 1, + sym__newline, + ACTIONS(5757), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [60883] = 4, - ACTIONS(872), 1, - aux_sym__whitespace_token1, - STATE(1440), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5768), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(870), 37, - sym__code_span_close, + STATE(1366), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -125683,30 +125637,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + [60873] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [60934] = 8, - ACTIONS(4132), 1, - sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(5180), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(5476), 1, - anon_sym_GT, - ACTIONS(5770), 1, + ACTIONS(5761), 1, sym__block_close, - ACTIONS(5478), 2, + STATE(1656), 1, + sym__newline, + ACTIONS(5462), 2, sym__word_no_digit, sym__digits, - STATE(1475), 4, + STATE(1531), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_block_4_repeat1, - ACTIONS(5474), 31, + aux_sym__html_block_6_repeat2, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -125726,6 +125675,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, @@ -125738,17 +125688,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [60993] = 4, - ACTIONS(872), 1, + [60932] = 8, + ACTIONS(4019), 1, + sym__whitespace_ge_2, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - STATE(1563), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5538), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(870), 37, - sym__code_span_close, + ACTIONS(4025), 1, + aux_sym__newline_token1, + ACTIONS(5759), 1, + sym__block_close, + STATE(1656), 1, + sym__newline, + ACTIONS(5462), 2, + sym__word_no_digit, + sym__digits, + STATE(1531), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -125781,29 +125739,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + [60991] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [61044] = 8, - ACTIONS(4132), 1, - sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4967), 1, aux_sym__newline_token1, - ACTIONS(4314), 1, + ACTIONS(5466), 1, + anon_sym_GT, + ACTIONS(5765), 1, sym__block_close, - STATE(1658), 1, - sym__newline, - ACTIONS(5486), 2, + ACTIONS(5763), 2, sym__word_no_digit, sym__digits, - STATE(1462), 3, + STATE(1476), 4, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5484), 32, + sym__newline, + aux_sym__html_block_4_repeat1, + ACTIONS(5464), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -125823,7 +125778,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, @@ -125836,25 +125790,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [61103] = 8, - ACTIONS(5775), 1, + [61050] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(5778), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(5784), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(5787), 1, + ACTIONS(5769), 1, sym__block_close, - STATE(1658), 1, + STATE(1656), 1, sym__newline, - ACTIONS(5781), 2, + ACTIONS(5767), 2, sym__word_no_digit, sym__digits, - STATE(1462), 3, + STATE(1458), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5772), 32, + aux_sym__html_block_6_repeat2, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -125887,24 +125841,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [61162] = 4, - ACTIONS(935), 1, + [61109] = 8, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(5456), 1, + sym__whitespace_ge_2, + ACTIONS(5458), 1, aux_sym__whitespace_token1, - STATE(1441), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5789), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(933), 37, - sym__code_span_close, + ACTIONS(5771), 1, + anon_sym_SQUOTE, + STATE(2122), 1, + sym__newline, + ACTIONS(5773), 2, + sym__word_no_digit, + sym__digits, + STATE(1330), 4, + sym__soft_line_break, + sym__whitespace, + sym__word, + aux_sym__attribute_value_repeat1, + ACTIONS(5452), 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, @@ -125930,29 +125892,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + [61168] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [61213] = 8, - ACTIONS(4132), 1, - sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(4270), 1, + ACTIONS(5777), 1, sym__block_close, - STATE(1671), 1, + STATE(1662), 1, sym__newline, - ACTIONS(5470), 2, + ACTIONS(5775), 2, sym__word_no_digit, sym__digits, - STATE(1358), 3, + STATE(1480), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + aux_sym__html_block_6_repeat1, + ACTIONS(5521), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -125985,25 +125943,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [61272] = 8, - ACTIONS(4132), 1, + [61227] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(5793), 1, + ACTIONS(5769), 1, sym__block_close, - STATE(1671), 1, + STATE(1656), 1, sym__newline, - ACTIONS(5791), 2, + ACTIONS(5462), 2, sym__word_no_digit, sym__digits, - STATE(1472), 3, + STATE(1531), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -126036,28 +125994,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [61331] = 8, - ACTIONS(4132), 1, + [61286] = 8, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(5456), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(5458), 1, aux_sym__whitespace_token1, - ACTIONS(5180), 1, - aux_sym__newline_token1, - ACTIONS(5476), 1, - anon_sym_GT, - ACTIONS(5795), 1, - sym__block_close, - ACTIONS(5478), 2, + ACTIONS(5771), 1, + anon_sym_DQUOTE, + STATE(2122), 1, + sym__newline, + ACTIONS(5779), 2, sym__word_no_digit, sym__digits, - STATE(1475), 4, + STATE(1374), 4, + sym__soft_line_break, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_block_4_repeat1, - ACTIONS(5474), 31, + aux_sym__attribute_value_repeat2, + ACTIONS(5589), 31, anon_sym_BANG, - anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, @@ -126075,6 +126032,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, @@ -126087,17 +126045,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [61390] = 4, - ACTIONS(935), 1, + [61345] = 8, + ACTIONS(4019), 1, + sym__whitespace_ge_2, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - STATE(1563), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5538), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(933), 37, - sym__code_span_close, + ACTIONS(4025), 1, + aux_sym__newline_token1, + ACTIONS(5781), 1, + sym__block_close, + STATE(1656), 1, + sym__newline, + ACTIONS(5462), 2, + sym__word_no_digit, + sym__digits, + STATE(1531), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -126130,29 +126096,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + [61404] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [61441] = 8, - ACTIONS(4132), 1, - sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(4230), 1, + ACTIONS(5781), 1, sym__block_close, - STATE(1658), 1, + STATE(1656), 1, sym__newline, - ACTIONS(5486), 2, + ACTIONS(5783), 2, sym__word_no_digit, sym__digits, - STATE(1462), 3, + STATE(1464), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5484), 32, + aux_sym__html_block_6_repeat2, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -126185,25 +126147,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [61500] = 8, - ACTIONS(4132), 1, + [61463] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(5793), 1, + ACTIONS(4242), 1, sym__block_close, - STATE(1671), 1, + STATE(1656), 1, sym__newline, - ACTIONS(5470), 2, + ACTIONS(5462), 2, sym__word_no_digit, sym__digits, - STATE(1358), 3, + STATE(1531), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -126236,73 +126198,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [61559] = 4, - STATE(1470), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(399), 2, - anon_sym_RBRACK, - aux_sym__whitespace_token1, - ACTIONS(5797), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(397), 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, + [61522] = 8, + ACTIONS(5788), 1, 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, - [61610] = 8, - ACTIONS(4132), 1, + ACTIONS(5791), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(5794), 1, aux_sym__whitespace_token1, - ACTIONS(5180), 1, - aux_sym__newline_token1, - ACTIONS(5476), 1, - anon_sym_GT, ACTIONS(5800), 1, + aux_sym__newline_token1, + ACTIONS(5803), 1, sym__block_close, - ACTIONS(5478), 2, + ACTIONS(5797), 2, sym__word_no_digit, sym__digits, - STATE(1475), 4, + STATE(1469), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_4_repeat1, - ACTIONS(5474), 31, + ACTIONS(5785), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -126334,25 +126249,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [61669] = 8, - ACTIONS(4132), 1, + [61581] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(5802), 1, + ACTIONS(4224), 1, sym__block_close, - STATE(1671), 1, + STATE(1662), 1, sym__newline, - ACTIONS(5470), 2, + ACTIONS(5527), 2, sym__word_no_digit, sym__digits, - STATE(1358), 3, + STATE(1520), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + aux_sym__html_block_6_repeat1, + ACTIONS(5521), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -126385,34 +126300,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [61728] = 8, - ACTIONS(4132), 1, + [61640] = 10, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, - aux_sym__newline_token1, - ACTIONS(5802), 1, - sym__block_close, - STATE(1671), 1, - sym__newline, - ACTIONS(5804), 2, - sym__word_no_digit, - sym__digits, - STATE(1474), 3, + ACTIONS(4090), 1, + anon_sym_LT, + ACTIONS(4345), 1, + anon_sym_LPAREN, + STATE(1697), 1, sym__whitespace, + STATE(2093), 1, + sym_link_destination, + ACTIONS(4082), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1229), 2, + sym__link_destination_parenthesis, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(4092), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4078), 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, @@ -126421,13 +126340,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__, @@ -126436,25 +126353,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [61787] = 8, - ACTIONS(4132), 1, - sym__whitespace_ge_2, - ACTIONS(4134), 1, + [61703] = 4, + STATE(1472), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(405), 2, + anon_sym_RBRACK, aux_sym__whitespace_token1, - ACTIONS(4138), 1, - aux_sym__newline_token1, - ACTIONS(5806), 1, - sym__block_close, - STATE(1671), 1, - sym__newline, - ACTIONS(5470), 2, - sym__word_no_digit, - sym__digits, - STATE(1358), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(5805), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(403), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -126479,7 +126388,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, @@ -126487,26 +126395,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [61846] = 8, - ACTIONS(5811), 1, - anon_sym_GT, - ACTIONS(5814), 1, + anon_sym_RBRACK_RBRACK_GT, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [61754] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(5817), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(5823), 1, + ACTIONS(4967), 1, aux_sym__newline_token1, - ACTIONS(5826), 1, + ACTIONS(5466), 1, + anon_sym_GT, + ACTIONS(5808), 1, sym__block_close, - ACTIONS(5820), 2, + ACTIONS(5595), 2, sym__word_no_digit, sym__digits, - STATE(1475), 4, + STATE(1469), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_4_repeat1, - ACTIONS(5808), 31, + ACTIONS(5464), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -126538,17 +126451,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [61905] = 4, - ACTIONS(953), 1, + [61813] = 8, + ACTIONS(4019), 1, + sym__whitespace_ge_2, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - STATE(1442), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5828), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(951), 37, - sym__code_span_close, + ACTIONS(4025), 1, + aux_sym__newline_token1, + ACTIONS(5810), 1, + sym__block_close, + STATE(1656), 1, + sym__newline, + ACTIONS(5462), 2, + sym__word_no_digit, + sym__digits, + STATE(1531), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -126581,21 +126502,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + [61872] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, + ACTIONS(4021), 1, + aux_sym__whitespace_token1, + ACTIONS(4025), 1, + aux_sym__newline_token1, + ACTIONS(5814), 1, + sym__block_close, + STATE(1662), 1, + sym__newline, + ACTIONS(5812), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [61956] = 4, - ACTIONS(1095), 1, - aux_sym__whitespace_token1, - STATE(1460), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5830), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(1093), 37, - sym__code_span_close, + STATE(1470), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat1, + ACTIONS(5521), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -126628,30 +126553,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + [61931] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [62007] = 8, - ACTIONS(4132), 1, - sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(5180), 1, + ACTIONS(4967), 1, aux_sym__newline_token1, - ACTIONS(5476), 1, + ACTIONS(5466), 1, anon_sym_GT, - ACTIONS(5834), 1, + ACTIONS(5816), 1, sym__block_close, - ACTIONS(5832), 2, + ACTIONS(5595), 2, sym__word_no_digit, sym__digits, - STATE(1515), 4, + STATE(1469), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_4_repeat1, - ACTIONS(5474), 31, + ACTIONS(5464), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -126683,17 +126604,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [62066] = 4, - ACTIONS(953), 1, + [61990] = 8, + ACTIONS(4019), 1, + sym__whitespace_ge_2, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - STATE(1563), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5538), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(951), 37, - sym__code_span_close, + ACTIONS(4967), 1, + aux_sym__newline_token1, + ACTIONS(5466), 1, + anon_sym_GT, + ACTIONS(5820), 1, + sym__block_close, + ACTIONS(5818), 2, + sym__word_no_digit, + sym__digits, + STATE(1473), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_4_repeat1, + ACTIONS(5464), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -126713,7 +126643,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, @@ -126726,29 +126655,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + [62049] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [62117] = 8, - ACTIONS(4132), 1, - sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(5838), 1, + ACTIONS(4202), 1, sym__block_close, - STATE(1658), 1, + STATE(1656), 1, sym__newline, - ACTIONS(5836), 2, + ACTIONS(5462), 2, sym__word_no_digit, sym__digits, - STATE(1517), 3, + STATE(1531), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5484), 32, + aux_sym__html_block_6_repeat2, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -126781,25 +126706,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [62176] = 8, - ACTIONS(4132), 1, + [62108] = 4, + ACTIONS(405), 1, + aux_sym__whitespace_token1, + STATE(1479), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5822), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(403), 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, + [62159] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(5842), 1, + ACTIONS(4216), 1, sym__block_close, - STATE(1658), 1, + STATE(1662), 1, sym__newline, - ACTIONS(5840), 2, + ACTIONS(5527), 2, sym__word_no_digit, sym__digits, - STATE(1448), 3, + STATE(1520), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat1, - ACTIONS(5484), 32, + ACTIONS(5521), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -126832,25 +126804,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [62235] = 8, - ACTIONS(4132), 1, + [62218] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(5846), 1, + ACTIONS(4027), 1, sym__block_close, - STATE(1658), 1, + STATE(1656), 1, sym__newline, - ACTIONS(5844), 2, + ACTIONS(5462), 2, sym__word_no_digit, sym__digits, - STATE(1450), 3, + STATE(1531), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5484), 32, + aux_sym__html_block_6_repeat2, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -126883,25 +126855,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [62294] = 8, - ACTIONS(4132), 1, + [62277] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(5850), 1, + ACTIONS(5827), 1, sym__block_close, - STATE(1658), 1, + STATE(1656), 1, sym__newline, - ACTIONS(5848), 2, + ACTIONS(5825), 2, sym__word_no_digit, sym__digits, - STATE(1468), 3, + STATE(1558), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5484), 32, + aux_sym__html_block_6_repeat2, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -126934,16 +126906,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [62353] = 4, - ACTIONS(1089), 1, + [62336] = 4, + ACTIONS(862), 1, aux_sym__whitespace_token1, - STATE(1457), 1, + STATE(1562), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5852), 3, + ACTIONS(5557), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1087), 37, + ACTIONS(860), 37, sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -126981,26 +126953,17 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [62404] = 8, - ACTIONS(4132), 1, - sym__whitespace_ge_2, - ACTIONS(4134), 1, + [62387] = 4, + ACTIONS(866), 1, aux_sym__whitespace_token1, - ACTIONS(5180), 1, - aux_sym__newline_token1, - ACTIONS(5476), 1, - anon_sym_GT, - ACTIONS(5856), 1, - sym__block_close, - ACTIONS(5854), 2, - sym__word_no_digit, - sym__digits, - STATE(1471), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_4_repeat1, - ACTIONS(5474), 31, + STATE(1562), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5557), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(864), 37, + sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -127020,6 +126983,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, @@ -127032,17 +126996,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [62463] = 4, - STATE(1486), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(399), 2, - anon_sym_DASH, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [62438] = 4, + ACTIONS(961), 1, aux_sym__whitespace_token1, - ACTIONS(5858), 3, + STATE(1361), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5829), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(397), 36, + ACTIONS(959), 37, + sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -127055,6 +127023,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, @@ -127074,28 +127043,25 @@ 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, - [62514] = 4, - ACTIONS(1083), 1, + [62489] = 4, + ACTIONS(5831), 1, + sym__blank_line_start, + STATE(2359), 1, + sym__blank_line, + ACTIONS(4801), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - STATE(1453), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5861), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(1081), 37, - sym__code_span_close, + ACTIONS(4799), 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, @@ -127113,7 +127079,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__, @@ -127122,21 +127087,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, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [62565] = 4, - STATE(1361), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(391), 2, - anon_sym_QMARK, + [62540] = 8, + ACTIONS(4019), 1, + sym__whitespace_ge_2, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(5666), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(389), 36, + ACTIONS(4025), 1, + aux_sym__newline_token1, + ACTIONS(5833), 1, + sym__block_close, + STATE(1656), 1, + sym__newline, + ACTIONS(5462), 2, + sym__word_no_digit, + sym__digits, + STATE(1531), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -127157,6 +127133,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, @@ -127168,22 +127145,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_QMARK_GT, + [62599] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, + ACTIONS(4021), 1, + aux_sym__whitespace_token1, + ACTIONS(4025), 1, + aux_sym__newline_token1, + ACTIONS(5837), 1, + sym__block_close, + STATE(1656), 1, + sym__newline, + ACTIONS(5835), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [62616] = 4, - STATE(1391), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(391), 2, - anon_sym_QMARK, - aux_sym__whitespace_token1, - ACTIONS(5863), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(389), 36, + STATE(1487), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -127204,6 +127184,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, @@ -127215,31 +127196,25 @@ 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, - [62667] = 8, - ACTIONS(3030), 1, - aux_sym__newline_token1, - ACTIONS(3231), 1, - anon_sym_RBRACK, - ACTIONS(5516), 1, + [62658] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(5518), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(5865), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(5520), 2, + ACTIONS(4025), 1, + aux_sym__newline_token1, + ACTIONS(5837), 1, + sym__block_close, + STATE(1656), 1, + sym__newline, + ACTIONS(5462), 2, sym__word_no_digit, sym__digits, - STATE(1362), 4, + STATE(1531), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(3229), 31, + aux_sym__html_block_6_repeat2, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -127264,6 +127239,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, @@ -127271,17 +127247,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [62726] = 4, - STATE(1508), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(391), 2, - anon_sym_DASH, + [62717] = 8, + ACTIONS(4019), 1, + sym__whitespace_ge_2, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(5867), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(389), 36, + ACTIONS(4025), 1, + aux_sym__newline_token1, + ACTIONS(5839), 1, + sym__block_close, + STATE(1656), 1, + sym__newline, + ACTIONS(5462), 2, + sym__word_no_digit, + sym__digits, + STATE(1531), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -127294,6 +127278,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, @@ -127313,37 +127298,32 @@ 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, - [62777] = 8, - ACTIONS(5872), 1, - anon_sym_SQUOTE, - ACTIONS(5874), 1, + [62776] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(5877), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(5883), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - STATE(2127), 1, + ACTIONS(5839), 1, + sym__block_close, + STATE(1656), 1, sym__newline, - ACTIONS(5880), 2, + ACTIONS(5841), 2, sym__word_no_digit, sym__digits, - STATE(1492), 4, - sym__soft_line_break, + STATE(1489), 3, sym__whitespace, sym__word, - aux_sym__attribute_value_repeat1, - ACTIONS(5869), 31, + aux_sym__html_block_6_repeat2, + ACTIONS(4017), 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, @@ -127369,26 +127349,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [62836] = 8, - ACTIONS(4132), 1, + [62835] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(5180), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(5476), 1, - anon_sym_GT, - ACTIONS(5888), 1, + ACTIONS(4180), 1, sym__block_close, - ACTIONS(5886), 2, + STATE(1656), 1, + sym__newline, + ACTIONS(5462), 2, sym__word_no_digit, sym__digits, - STATE(1452), 4, + STATE(1531), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_block_4_repeat1, - ACTIONS(5474), 31, + aux_sym__html_block_6_repeat2, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -127408,6 +127387,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, @@ -127420,27 +127400,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [62895] = 8, - ACTIONS(5893), 1, - anon_sym_DQUOTE, - ACTIONS(5895), 1, - sym__whitespace_ge_2, - ACTIONS(5898), 1, + [62894] = 4, + ACTIONS(872), 1, aux_sym__whitespace_token1, - ACTIONS(5904), 1, - aux_sym__newline_token1, - STATE(2127), 1, - sym__newline, - ACTIONS(5901), 2, - sym__word_no_digit, - sym__digits, - STATE(1494), 4, - sym__soft_line_break, - sym__whitespace, - sym__word, - aux_sym__attribute_value_repeat2, - ACTIONS(5890), 31, + STATE(1562), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5557), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(870), 37, + sym__code_span_close, anon_sym_BANG, + anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, @@ -127471,25 +127443,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [62954] = 8, - ACTIONS(4132), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, - aux_sym__whitespace_token1, - ACTIONS(4138), 1, - aux_sym__newline_token1, - ACTIONS(4236), 1, - sym__block_close, - STATE(1658), 1, - sym__newline, - ACTIONS(5486), 2, sym__word_no_digit, sym__digits, - STATE(1462), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5484), 32, + aux_sym__newline_token1, + [62945] = 4, + ACTIONS(882), 1, + aux_sym__whitespace_token1, + STATE(1562), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5557), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(880), 37, + sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -127522,26 +127490,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [63013] = 8, - ACTIONS(2981), 1, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, aux_sym__newline_token1, - ACTIONS(5526), 1, - anon_sym_QMARK, - ACTIONS(5530), 1, + [62996] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(5532), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(5907), 1, - anon_sym_QMARK_GT, - ACTIONS(5534), 2, + ACTIONS(4025), 1, + aux_sym__newline_token1, + ACTIONS(5810), 1, + sym__block_close, + STATE(1656), 1, + sym__newline, + ACTIONS(5843), 2, sym__word_no_digit, sym__digits, - STATE(1339), 4, + STATE(1500), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(3153), 31, + aux_sym__html_block_6_repeat2, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -127562,6 +127533,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, @@ -127573,29 +127545,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [63072] = 4, - STATE(1486), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(391), 2, - anon_sym_DASH, + [63055] = 4, + ACTIONS(5831), 1, + sym__blank_line_start, + STATE(2363), 1, + sym__blank_line, + ACTIONS(4564), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(5909), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(389), 36, + ACTIONS(4562), 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, @@ -127606,7 +127577,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__, @@ -127615,31 +127585,32 @@ 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, - [63123] = 8, - ACTIONS(1614), 1, - aux_sym__newline_token1, - ACTIONS(4904), 1, - anon_sym_DASH, - ACTIONS(4908), 1, + [63106] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4910), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(5162), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5482), 2, + ACTIONS(4025), 1, + aux_sym__newline_token1, + ACTIONS(4132), 1, + sym__block_close, + STATE(1662), 1, + sym__newline, + ACTIONS(5527), 2, sym__word_no_digit, sym__digits, - STATE(1398), 4, + STATE(1520), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(4902), 31, + aux_sym__html_block_6_repeat1, + ACTIONS(5521), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -127652,6 +127623,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, @@ -127671,26 +127643,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [63182] = 8, - ACTIONS(1614), 1, - aux_sym__newline_token1, - ACTIONS(4904), 1, - anon_sym_DASH, - ACTIONS(4908), 1, + [63165] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4910), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(5162), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5164), 2, + ACTIONS(4025), 1, + aux_sym__newline_token1, + ACTIONS(5845), 1, + sym__block_close, + STATE(1656), 1, + sym__newline, + ACTIONS(5462), 2, sym__word_no_digit, sym__digits, - STATE(1455), 4, + STATE(1531), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(4902), 31, + aux_sym__html_block_6_repeat2, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -127703,6 +127674,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, @@ -127722,17 +127694,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [63241] = 4, - ACTIONS(1000), 1, + [63224] = 8, + ACTIONS(4019), 1, + sym__whitespace_ge_2, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - STATE(1446), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5911), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(998), 37, - sym__code_span_close, + ACTIONS(4967), 1, + aux_sym__newline_token1, + ACTIONS(5466), 1, + anon_sym_GT, + ACTIONS(5847), 1, + sym__block_close, + ACTIONS(5595), 2, + sym__word_no_digit, + sym__digits, + STATE(1469), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_4_repeat1, + ACTIONS(5464), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -127752,7 +127733,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, @@ -127765,30 +127745,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + [63283] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [63292] = 8, - ACTIONS(1614), 1, - aux_sym__newline_token1, - ACTIONS(4904), 1, - anon_sym_DASH, - ACTIONS(4908), 1, - sym__whitespace_ge_2, - ACTIONS(4910), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(5913), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5915), 2, + ACTIONS(4025), 1, + aux_sym__newline_token1, + ACTIONS(5849), 1, + sym__block_close, + STATE(1656), 1, + sym__newline, + ACTIONS(5462), 2, sym__word_no_digit, sym__digits, - STATE(1349), 4, + STATE(1531), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(4902), 31, + aux_sym__html_block_6_repeat2, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -127801,6 +127776,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, @@ -127820,32 +127796,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [63351] = 8, - ACTIONS(4132), 1, + [63342] = 8, + ACTIONS(5854), 1, + anon_sym_SQUOTE, + ACTIONS(5856), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(5859), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(5865), 1, aux_sym__newline_token1, - ACTIONS(4246), 1, - sym__block_close, - STATE(1658), 1, + STATE(2122), 1, sym__newline, - ACTIONS(5486), 2, + ACTIONS(5862), 2, sym__word_no_digit, sym__digits, - STATE(1462), 3, + STATE(1501), 4, + sym__soft_line_break, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5484), 32, + aux_sym__attribute_value_repeat1, + ACTIONS(5851), 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, @@ -127871,26 +127847,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [63410] = 8, - ACTIONS(1614), 1, - aux_sym__newline_token1, - ACTIONS(4904), 1, - anon_sym_DASH, - ACTIONS(4908), 1, - sym__whitespace_ge_2, - ACTIONS(4910), 1, + [63401] = 4, + ACTIONS(889), 1, aux_sym__whitespace_token1, - ACTIONS(5913), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5482), 2, - sym__word_no_digit, - sym__digits, - STATE(1398), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(4902), 31, + STATE(1562), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5557), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(887), 37, + sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -127903,6 +127870,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, @@ -127922,17 +127890,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [63469] = 4, - ACTIONS(1077), 1, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [63452] = 8, + ACTIONS(4019), 1, + sym__whitespace_ge_2, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - STATE(1449), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5917), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(1075), 37, - sym__code_span_close, + ACTIONS(4967), 1, + aux_sym__newline_token1, + ACTIONS(5466), 1, + anon_sym_GT, + ACTIONS(5868), 1, + sym__block_close, + ACTIONS(5595), 2, + sym__word_no_digit, + sym__digits, + STATE(1469), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_4_repeat1, + ACTIONS(5464), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -127952,7 +127933,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, @@ -127965,42 +127945,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + [63511] = 8, + ACTIONS(5873), 1, + anon_sym_DQUOTE, + ACTIONS(5875), 1, sym__whitespace_ge_2, + ACTIONS(5878), 1, + aux_sym__whitespace_token1, + ACTIONS(5884), 1, + aux_sym__newline_token1, + STATE(2122), 1, + sym__newline, + ACTIONS(5881), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [63520] = 10, - ACTIONS(4035), 1, - sym__whitespace_ge_2, - ACTIONS(4037), 1, - aux_sym__whitespace_token1, - ACTIONS(4086), 1, - anon_sym_LT, - ACTIONS(4367), 1, - anon_sym_LPAREN, - STATE(1695), 1, + STATE(1504), 4, + sym__soft_line_break, sym__whitespace, - STATE(2090), 1, - sym_link_destination, - ACTIONS(4078), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1267), 2, - sym__link_destination_parenthesis, sym__word, - ACTIONS(4088), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4074), 27, + aux_sym__attribute_value_repeat2, + ACTIONS(5870), 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, @@ -128009,11 +127981,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__, @@ -128022,25 +127996,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [63583] = 8, - ACTIONS(4132), 1, + [63570] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(5921), 1, + ACTIONS(5889), 1, sym__block_close, - STATE(1671), 1, + STATE(1662), 1, sym__newline, - ACTIONS(5919), 2, + ACTIONS(5887), 2, sym__word_no_digit, sym__digits, - STATE(1512), 3, + STATE(1497), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + aux_sym__html_block_6_repeat1, + ACTIONS(5521), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -128073,30 +128047,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [63642] = 6, - ACTIONS(5931), 1, - aux_sym__whitespace_token1, - ACTIONS(5925), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(5929), 2, + [63629] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, + ACTIONS(4021), 1, + aux_sym__whitespace_token1, + ACTIONS(4967), 1, aux_sym__newline_token1, - STATE(1354), 2, - sym__word, - aux_sym_language_repeat1, - ACTIONS(5927), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(5466), 1, + anon_sym_GT, + ACTIONS(5893), 1, + sym__block_close, + ACTIONS(5891), 2, sym__word_no_digit, sym__digits, - ACTIONS(5923), 30, + STATE(1499), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_4_repeat1, + ACTIONS(5464), 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, @@ -128110,10 +128086,10 @@ 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__, @@ -128122,17 +128098,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [63697] = 4, - STATE(1486), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(409), 2, + [63688] = 8, + ACTIONS(1628), 1, + aux_sym__newline_token1, + ACTIONS(4870), 1, anon_sym_DASH, + ACTIONS(4874), 1, + sym__whitespace_ge_2, + ACTIONS(4876), 1, aux_sym__whitespace_token1, - ACTIONS(5909), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(407), 36, + ACTIONS(5251), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5253), 2, + sym__word_no_digit, + sym__digits, + STATE(1410), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_comment_repeat1, + ACTIONS(4868), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -128164,30 +128149,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, + [63747] = 8, + ACTIONS(3019), 1, aux_sym__newline_token1, - [63748] = 8, - ACTIONS(4132), 1, + ACTIONS(5482), 1, + anon_sym_QMARK, + ACTIONS(5486), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(5488), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, - aux_sym__newline_token1, - ACTIONS(5933), 1, - sym__block_close, - STATE(1671), 1, - sym__newline, - ACTIONS(5470), 2, + ACTIONS(5895), 1, + anon_sym_QMARK_GT, + ACTIONS(5490), 2, sym__word_no_digit, sym__digits, - STATE(1358), 3, + STATE(1411), 4, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + sym__newline, + aux_sym__processing_instruction_repeat1, + ACTIONS(3027), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -128208,7 +128189,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, @@ -128220,27 +128200,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [63807] = 8, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(5937), 1, - anon_sym_DQUOTE, - ACTIONS(5939), 1, + [63806] = 10, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(5941), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - STATE(2127), 1, - sym__newline, - ACTIONS(5943), 2, - sym__word_no_digit, - sym__digits, - STATE(1551), 4, - sym__soft_line_break, + ACTIONS(4090), 1, + anon_sym_LT, + ACTIONS(4345), 1, + anon_sym_LPAREN, + STATE(1678), 1, sym__whitespace, + STATE(2088), 1, + sym_link_destination, + ACTIONS(4082), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1229), 2, + sym__link_destination_parenthesis, sym__word, - aux_sym__attribute_value_repeat2, - ACTIONS(5935), 31, + ACTIONS(4092), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4078), 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, + [63869] = 4, + ACTIONS(899), 1, + aux_sym__whitespace_token1, + STATE(1562), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5557), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(897), 37, + sym__code_span_close, anon_sym_BANG, + anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, @@ -128271,25 +128296,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [63866] = 8, - ACTIONS(4132), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [63920] = 8, + ACTIONS(4019), 1, + sym__whitespace_ge_2, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(5921), 1, + ACTIONS(5897), 1, sym__block_close, - STATE(1671), 1, + STATE(1656), 1, sym__newline, - ACTIONS(5470), 2, + ACTIONS(5462), 2, sym__word_no_digit, sym__digits, - STATE(1358), 3, + STATE(1531), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -128322,25 +128351,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [63925] = 8, - ACTIONS(4132), 1, + [63979] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(5945), 1, + ACTIONS(5901), 1, sym__block_close, - STATE(1671), 1, + STATE(1656), 1, sym__newline, - ACTIONS(5470), 2, + ACTIONS(5899), 2, sym__word_no_digit, sym__digits, - STATE(1358), 3, + STATE(1511), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -128373,32 +128402,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [63984] = 8, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(5937), 1, - anon_sym_SQUOTE, - ACTIONS(5939), 1, + [64038] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(5941), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - STATE(2127), 1, + ACTIONS(4025), 1, + aux_sym__newline_token1, + ACTIONS(5901), 1, + sym__block_close, + STATE(1656), 1, sym__newline, - ACTIONS(5949), 2, + ACTIONS(5462), 2, sym__word_no_digit, sym__digits, - STATE(1549), 4, - sym__soft_line_break, + STATE(1531), 3, sym__whitespace, sym__word, - aux_sym__attribute_value_repeat1, - ACTIONS(5947), 31, + aux_sym__html_block_6_repeat2, + ACTIONS(4017), 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, @@ -128424,25 +128453,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [64043] = 8, - ACTIONS(4132), 1, + [64097] = 4, + STATE(1342), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(399), 2, + anon_sym_DASH, + aux_sym__whitespace_token1, + ACTIONS(5903), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(397), 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, + [64148] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(5945), 1, + ACTIONS(5905), 1, sym__block_close, - STATE(1671), 1, + STATE(1656), 1, sym__newline, - ACTIONS(5951), 2, + ACTIONS(5462), 2, sym__word_no_digit, sym__digits, - STATE(1518), 3, + STATE(1531), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -128475,26 +128551,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [64102] = 8, - ACTIONS(4132), 1, + [64207] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(5180), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(5476), 1, - anon_sym_GT, - ACTIONS(5953), 1, + ACTIONS(5905), 1, sym__block_close, - ACTIONS(5478), 2, + STATE(1656), 1, + sym__newline, + ACTIONS(5907), 2, sym__word_no_digit, sym__digits, - STATE(1475), 4, + STATE(1513), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_block_4_repeat1, - ACTIONS(5474), 31, + aux_sym__html_block_6_repeat2, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -128514,6 +128589,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, @@ -128526,25 +128602,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [64161] = 8, - ACTIONS(4132), 1, + [64266] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4967), 1, aux_sym__newline_token1, - ACTIONS(4220), 1, + ACTIONS(5466), 1, + anon_sym_GT, + ACTIONS(5911), 1, sym__block_close, - STATE(1658), 1, - sym__newline, - ACTIONS(5486), 2, + ACTIONS(5909), 2, sym__word_no_digit, sym__digits, - STATE(1462), 3, + STATE(1427), 4, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5484), 32, + sym__newline, + aux_sym__html_block_4_repeat1, + ACTIONS(5464), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -128564,7 +128641,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, @@ -128577,25 +128653,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [64220] = 8, - ACTIONS(4132), 1, + [64325] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(4140), 1, + ACTIONS(4102), 1, sym__block_close, - STATE(1658), 1, + STATE(1656), 1, sym__newline, - ACTIONS(5486), 2, + ACTIONS(5462), 2, sym__word_no_digit, sym__digits, - STATE(1462), 3, + STATE(1531), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5484), 32, + aux_sym__html_block_6_repeat2, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -128628,25 +128704,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [64279] = 8, - ACTIONS(4132), 1, + [64384] = 10, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(4090), 1, + anon_sym_LT, + ACTIONS(4345), 1, + anon_sym_LPAREN, + STATE(1471), 1, + sym__soft_line_break, + STATE(2088), 1, + sym_link_destination, + STATE(2137), 1, + sym__newline, + ACTIONS(4082), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1229), 2, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(4092), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4078), 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, + [64447] = 8, + ACTIONS(5916), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(5919), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(5925), 1, aux_sym__newline_token1, - ACTIONS(5955), 1, + ACTIONS(5928), 1, sym__block_close, - STATE(1671), 1, + STATE(1662), 1, sym__newline, - ACTIONS(5470), 2, + ACTIONS(5922), 2, sym__word_no_digit, sym__digits, - STATE(1358), 3, + STATE(1520), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + aux_sym__html_block_6_repeat1, + ACTIONS(5913), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -128679,17 +128808,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [64338] = 4, - ACTIONS(683), 1, + [64506] = 8, + ACTIONS(4019), 1, + sym__whitespace_ge_2, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - STATE(1399), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5957), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(681), 37, - sym__code_span_close, + ACTIONS(4025), 1, + aux_sym__newline_token1, + ACTIONS(4055), 1, + sym__block_close, + STATE(1662), 1, + sym__newline, + ACTIONS(5527), 2, + sym__word_no_digit, + sym__digits, + STATE(1520), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat1, + ACTIONS(5521), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -128722,29 +128859,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + [64565] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [64389] = 8, - ACTIONS(4132), 1, - sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4967), 1, aux_sym__newline_token1, - ACTIONS(5959), 1, + ACTIONS(5466), 1, + anon_sym_GT, + ACTIONS(5930), 1, sym__block_close, - STATE(1671), 1, - sym__newline, - ACTIONS(5470), 2, + ACTIONS(5595), 2, sym__word_no_digit, sym__digits, - STATE(1358), 3, + STATE(1469), 4, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + sym__newline, + aux_sym__html_block_4_repeat1, + ACTIONS(5464), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -128764,7 +128898,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, @@ -128777,25 +128910,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [64448] = 8, - ACTIONS(4132), 1, + [64624] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(4302), 1, + ACTIONS(5934), 1, sym__block_close, - STATE(1671), 1, + STATE(1662), 1, sym__newline, - ACTIONS(5470), 2, + ACTIONS(5932), 2, sym__word_no_digit, sym__digits, - STATE(1358), 3, + STATE(1521), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + aux_sym__html_block_6_repeat1, + ACTIONS(5521), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -128828,25 +128961,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [64507] = 8, - ACTIONS(4132), 1, - sym__whitespace_ge_2, - ACTIONS(4134), 1, + [64683] = 4, + ACTIONS(899), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, - aux_sym__newline_token1, - ACTIONS(5963), 1, - sym__block_close, - STATE(1671), 1, - sym__newline, - ACTIONS(5961), 2, - sym__word_no_digit, - sym__digits, - STATE(1528), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + STATE(1559), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5936), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(897), 37, + sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -128879,25 +129004,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [64566] = 8, - ACTIONS(4132), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [64734] = 8, + ACTIONS(4019), 1, + sym__whitespace_ge_2, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4967), 1, aux_sym__newline_token1, - ACTIONS(5967), 1, + ACTIONS(5466), 1, + anon_sym_GT, + ACTIONS(5940), 1, sym__block_close, - STATE(1671), 1, - sym__newline, - ACTIONS(5965), 2, + ACTIONS(5938), 2, sym__word_no_digit, sym__digits, - STATE(1330), 3, + STATE(1522), 4, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + sym__newline, + aux_sym__html_block_4_repeat1, + ACTIONS(5464), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -128917,7 +129047,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, @@ -128930,25 +129059,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [64625] = 8, - ACTIONS(4132), 1, + [64793] = 8, + ACTIONS(1628), 1, + aux_sym__newline_token1, + ACTIONS(4870), 1, + anon_sym_DASH, + ACTIONS(4874), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4876), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, - aux_sym__newline_token1, - ACTIONS(5963), 1, - sym__block_close, - STATE(1671), 1, - sym__newline, - ACTIONS(5470), 2, + ACTIONS(5942), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5494), 2, sym__word_no_digit, sym__digits, - STATE(1358), 3, + STATE(1447), 4, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + sym__newline, + aux_sym__html_comment_repeat1, + ACTIONS(4868), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -128961,7 +129091,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, @@ -128981,25 +129110,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [64684] = 8, - ACTIONS(4132), 1, + [64852] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(5959), 1, + ACTIONS(5946), 1, sym__block_close, - STATE(1671), 1, + STATE(1656), 1, sym__newline, - ACTIONS(5969), 2, + ACTIONS(5944), 2, sym__word_no_digit, sym__digits, - STATE(1509), 3, + STATE(1459), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -129032,25 +129161,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [64743] = 8, - ACTIONS(4132), 1, + [64911] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(5971), 1, + ACTIONS(5946), 1, sym__block_close, - STATE(1671), 1, + STATE(1656), 1, sym__newline, - ACTIONS(5470), 2, + ACTIONS(5462), 2, sym__word_no_digit, sym__digits, - STATE(1358), 3, + STATE(1531), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -129083,25 +129212,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [64802] = 8, - ACTIONS(4132), 1, - sym__whitespace_ge_2, - ACTIONS(4134), 1, + [64970] = 4, + STATE(1342), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(391), 2, + anon_sym_DASH, aux_sym__whitespace_token1, - ACTIONS(4138), 1, - aux_sym__newline_token1, - ACTIONS(5971), 1, - sym__block_close, - STATE(1671), 1, - sym__newline, - ACTIONS(5973), 2, - sym__word_no_digit, - sym__digits, - STATE(1544), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(5903), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(389), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -129114,7 +129235,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, @@ -129134,25 +129254,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [64861] = 8, - ACTIONS(4132), 1, + anon_sym_DASH_DASH_GT, sym__whitespace_ge_2, - ACTIONS(4134), 1, - aux_sym__whitespace_token1, - ACTIONS(4138), 1, - aux_sym__newline_token1, - ACTIONS(5975), 1, - sym__block_close, - STATE(1671), 1, - sym__newline, - ACTIONS(5470), 2, sym__word_no_digit, sym__digits, - STATE(1358), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + aux_sym__newline_token1, + [65021] = 4, + STATE(1514), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(391), 2, + anon_sym_DASH, + aux_sym__whitespace_token1, + ACTIONS(5948), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(389), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -129165,7 +129282,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, @@ -129185,25 +129301,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [64920] = 8, - ACTIONS(4132), 1, + anon_sym_DASH_DASH_GT, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [65072] = 8, + ACTIONS(5953), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(5956), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(5962), 1, aux_sym__newline_token1, - ACTIONS(5975), 1, + ACTIONS(5965), 1, sym__block_close, - STATE(1671), 1, + STATE(1656), 1, sym__newline, - ACTIONS(5977), 2, + ACTIONS(5959), 2, sym__word_no_digit, sym__digits, STATE(1531), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(5950), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -129236,25 +129357,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [64979] = 8, - ACTIONS(4132), 1, + [65131] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(5967), 1, + ACTIONS(5969), 1, sym__block_close, - STATE(1671), 1, + STATE(1656), 1, sym__newline, - ACTIONS(5470), 2, + ACTIONS(5967), 2, sym__word_no_digit, sym__digits, - STATE(1358), 3, + STATE(1456), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -129287,25 +129408,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [65038] = 8, - ACTIONS(4132), 1, + [65190] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(5979), 1, + ACTIONS(5971), 1, sym__block_close, - STATE(1671), 1, + STATE(1656), 1, sym__newline, - ACTIONS(5470), 2, + ACTIONS(5462), 2, sym__word_no_digit, sym__digits, - STATE(1358), 3, + STATE(1531), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -129338,25 +129459,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [65097] = 8, - ACTIONS(4132), 1, + [65249] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(5981), 1, + ACTIONS(5975), 1, sym__block_close, - STATE(1671), 1, + STATE(1656), 1, sym__newline, - ACTIONS(5470), 2, + ACTIONS(5973), 2, sym__word_no_digit, sym__digits, - STATE(1358), 3, + STATE(1533), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -129389,25 +129510,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [65156] = 8, - ACTIONS(4132), 1, + [65308] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(5981), 1, + ACTIONS(5975), 1, sym__block_close, - STATE(1671), 1, + STATE(1656), 1, sym__newline, - ACTIONS(5983), 2, + ACTIONS(5462), 2, sym__word_no_digit, sym__digits, - STATE(1530), 3, + STATE(1531), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -129440,25 +129561,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [65215] = 8, - ACTIONS(4132), 1, + [65367] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(4252), 1, + ACTIONS(5977), 1, sym__block_close, - STATE(1671), 1, + STATE(1656), 1, sym__newline, - ACTIONS(5470), 2, + ACTIONS(5462), 2, sym__word_no_digit, sym__digits, - STATE(1358), 3, + STATE(1531), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -129491,25 +129612,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [65274] = 8, - ACTIONS(4132), 1, + [65426] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(4256), 1, + ACTIONS(5977), 1, sym__block_close, - STATE(1658), 1, + STATE(1656), 1, sym__newline, - ACTIONS(5486), 2, + ACTIONS(5979), 2, sym__word_no_digit, sym__digits, - STATE(1462), 3, + STATE(1535), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5484), 32, + aux_sym__html_block_6_repeat2, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -129542,38 +129663,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [65333] = 10, - ACTIONS(4035), 1, + [65485] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4086), 1, - anon_sym_LT, - ACTIONS(4367), 1, - anon_sym_LPAREN, - STATE(1712), 1, - sym__whitespace, - STATE(2074), 1, - sym_link_destination, - ACTIONS(4078), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1267), 2, - sym__link_destination_parenthesis, - sym__word, - ACTIONS(4088), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(4025), 1, + aux_sym__newline_token1, + ACTIONS(4047), 1, + sym__block_close, + STATE(1656), 1, + sym__newline, + ACTIONS(5462), 2, sym__word_no_digit, sym__digits, - ACTIONS(4074), 27, + STATE(1531), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4017), 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, @@ -129582,11 +129699,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__, @@ -129595,26 +129714,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [65396] = 8, - ACTIONS(4132), 1, + [65544] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(5180), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(5476), 1, - anon_sym_GT, - ACTIONS(5985), 1, + ACTIONS(5969), 1, sym__block_close, - ACTIONS(5478), 2, + STATE(1656), 1, + sym__newline, + ACTIONS(5462), 2, sym__word_no_digit, sym__digits, - STATE(1475), 4, + STATE(1531), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_block_4_repeat1, - ACTIONS(5474), 31, + aux_sym__html_block_6_repeat2, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -129634,6 +129752,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, @@ -129646,78 +129765,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [65455] = 10, - ACTIONS(41), 1, + [65603] = 8, + ACTIONS(3000), 1, aux_sym__newline_token1, - ACTIONS(4086), 1, - anon_sym_LT, - ACTIONS(4367), 1, - anon_sym_LPAREN, - STATE(1543), 1, - sym__soft_line_break, - STATE(2074), 1, - sym_link_destination, - STATE(2144), 1, - sym__newline, - ACTIONS(4078), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1267), 2, - sym__link_destination_parenthesis, - sym__word, - ACTIONS(4088), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4074), 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, + ACTIONS(3143), 1, anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - [65518] = 8, - ACTIONS(4132), 1, + ACTIONS(5513), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(5515), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, - aux_sym__newline_token1, - ACTIONS(4284), 1, - sym__block_close, - STATE(1658), 1, - sym__newline, - ACTIONS(5486), 2, + ACTIONS(5981), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(5517), 2, sym__word_no_digit, sym__digits, - STATE(1462), 3, + STATE(1351), 4, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5484), 32, + sym__newline, + aux_sym__processing_instruction_repeat1, + ACTIONS(3141), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -129742,7 +129809,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, @@ -129750,25 +129816,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [65577] = 8, - ACTIONS(4132), 1, + [65662] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(5989), 1, + ACTIONS(5985), 1, sym__block_close, - STATE(1658), 1, + STATE(1662), 1, sym__newline, - ACTIONS(5987), 2, + ACTIONS(5983), 2, sym__word_no_digit, sym__digits, - STATE(1495), 3, + STATE(1435), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat1, - ACTIONS(5484), 32, + ACTIONS(5521), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -129801,26 +129867,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [65636] = 8, - ACTIONS(4132), 1, + [65721] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(5180), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(5476), 1, - anon_sym_GT, - ACTIONS(5991), 1, + ACTIONS(4035), 1, sym__block_close, - ACTIONS(5478), 2, + STATE(1662), 1, + sym__newline, + ACTIONS(5527), 2, sym__word_no_digit, sym__digits, - STATE(1475), 4, + STATE(1520), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_block_4_repeat1, - ACTIONS(5474), 31, + aux_sym__html_block_6_repeat1, + ACTIONS(5521), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -129840,6 +129905,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, @@ -129852,25 +129918,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [65695] = 8, - ACTIONS(4132), 1, + [65780] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(5995), 1, + ACTIONS(5827), 1, sym__block_close, - STATE(1658), 1, + STATE(1656), 1, sym__newline, - ACTIONS(5993), 2, + ACTIONS(5462), 2, sym__word_no_digit, sym__digits, - STATE(1535), 3, + STATE(1531), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5484), 32, + aux_sym__html_block_6_repeat2, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -129903,78 +129969,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [65754] = 10, - ACTIONS(4035), 1, - sym__whitespace_ge_2, - ACTIONS(4037), 1, - aux_sym__whitespace_token1, - ACTIONS(4086), 1, - anon_sym_LT, - ACTIONS(4367), 1, - anon_sym_LPAREN, - STATE(1710), 1, - sym__whitespace, - STATE(2086), 1, - sym_link_destination, - ACTIONS(4078), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1267), 2, - sym__link_destination_parenthesis, - sym__word, - ACTIONS(4088), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4074), 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, - [65817] = 8, - ACTIONS(4132), 1, + [65839] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(5997), 1, + ACTIONS(5987), 1, sym__block_close, - STATE(1671), 1, + STATE(1656), 1, sym__newline, - ACTIONS(5470), 2, + ACTIONS(5462), 2, sym__word_no_digit, sym__digits, - STATE(1358), 3, + STATE(1531), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -130007,26 +130020,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [65876] = 8, - ACTIONS(4132), 1, + [65898] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(5180), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(5476), 1, - anon_sym_GT, - ACTIONS(6001), 1, + ACTIONS(5991), 1, sym__block_close, - ACTIONS(5999), 2, + STATE(1662), 1, + sym__newline, + ACTIONS(5989), 2, sym__word_no_digit, sym__digits, - STATE(1537), 4, + STATE(1350), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_block_4_repeat1, - ACTIONS(5474), 31, + aux_sym__html_block_6_repeat1, + ACTIONS(5521), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -130046,6 +130058,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, @@ -130058,38 +130071,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [65935] = 10, - ACTIONS(41), 1, + [65957] = 8, + ACTIONS(4019), 1, + sym__whitespace_ge_2, + ACTIONS(4021), 1, + aux_sym__whitespace_token1, + ACTIONS(4967), 1, aux_sym__newline_token1, - ACTIONS(4086), 1, - anon_sym_LT, - ACTIONS(4367), 1, - anon_sym_LPAREN, - STATE(1552), 1, - sym__soft_line_break, - STATE(2086), 1, - sym_link_destination, - STATE(2144), 1, - sym__newline, - ACTIONS(4078), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1267), 2, - sym__link_destination_parenthesis, - sym__word, - ACTIONS(4088), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(5466), 1, + anon_sym_GT, + ACTIONS(5993), 1, + sym__block_close, + ACTIONS(5595), 2, sym__word_no_digit, sym__digits, - ACTIONS(4074), 27, + STATE(1469), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_4_repeat1, + ACTIONS(5464), 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, @@ -130098,11 +130108,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__, @@ -130111,26 +130122,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [65998] = 8, - ACTIONS(1614), 1, - aux_sym__newline_token1, - ACTIONS(4904), 1, - anon_sym_DASH, - ACTIONS(4908), 1, + [66016] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4910), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(5227), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5229), 2, + ACTIONS(4025), 1, + aux_sym__newline_token1, + ACTIONS(5997), 1, + sym__block_close, + STATE(1662), 1, + sym__newline, + ACTIONS(5995), 2, sym__word_no_digit, sym__digits, - STATE(1395), 4, + STATE(1365), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(4902), 31, + aux_sym__html_block_6_repeat1, + ACTIONS(5521), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -130143,6 +130153,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, @@ -130162,25 +130173,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [66057] = 8, - ACTIONS(4132), 1, + [66075] = 8, + ACTIONS(3000), 1, + aux_sym__newline_token1, + ACTIONS(3143), 1, + anon_sym_RBRACK, + ACTIONS(5513), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(5515), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, - aux_sym__newline_token1, - ACTIONS(6005), 1, - sym__block_close, - STATE(1658), 1, - sym__newline, - ACTIONS(6003), 2, + ACTIONS(5999), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(5517), 2, sym__word_no_digit, sym__digits, - STATE(1539), 3, + STATE(1351), 4, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5484), 32, + sym__newline, + aux_sym__processing_instruction_repeat1, + ACTIONS(3141), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -130205,7 +130217,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, @@ -130213,32 +130224,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [66116] = 8, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(5939), 1, + [66134] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(5941), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(6007), 1, - anon_sym_SQUOTE, - STATE(2127), 1, + ACTIONS(4025), 1, + aux_sym__newline_token1, + ACTIONS(6003), 1, + sym__block_close, + STATE(1662), 1, sym__newline, - ACTIONS(6009), 2, + ACTIONS(6001), 2, sym__word_no_digit, sym__digits, - STATE(1492), 4, - sym__soft_line_break, + STATE(1542), 3, sym__whitespace, sym__word, - aux_sym__attribute_value_repeat1, - ACTIONS(5947), 31, + aux_sym__html_block_6_repeat1, + ACTIONS(5521), 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, @@ -130264,26 +130275,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [66175] = 8, - ACTIONS(4132), 1, + [66193] = 8, + ACTIONS(4019), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(5180), 1, + ACTIONS(4967), 1, aux_sym__newline_token1, - ACTIONS(5476), 1, + ACTIONS(5466), 1, anon_sym_GT, - ACTIONS(6013), 1, + ACTIONS(6007), 1, sym__block_close, - ACTIONS(6011), 2, + ACTIONS(6005), 2, sym__word_no_digit, sym__digits, - STATE(1466), 4, + STATE(1546), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_4_repeat1, - ACTIONS(5474), 31, + ACTIONS(5464), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -130315,27 +130326,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [66234] = 8, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(5939), 1, - sym__whitespace_ge_2, - ACTIONS(5941), 1, + [66252] = 4, + ACTIONS(943), 1, aux_sym__whitespace_token1, - ACTIONS(6007), 1, - anon_sym_DQUOTE, - STATE(2127), 1, - sym__newline, - ACTIONS(6015), 2, - sym__word_no_digit, - sym__digits, - STATE(1494), 4, - sym__soft_line_break, - sym__whitespace, - sym__word, - aux_sym__attribute_value_repeat2, - ACTIONS(5935), 31, + STATE(1562), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5557), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(941), 37, + sym__code_span_close, anon_sym_BANG, + anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, @@ -130366,38 +130369,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [66293] = 10, - ACTIONS(4035), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [66303] = 8, + ACTIONS(4019), 1, + sym__whitespace_ge_2, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4086), 1, - anon_sym_LT, - ACTIONS(4367), 1, - anon_sym_LPAREN, - STATE(1714), 1, - sym__whitespace, - STATE(2097), 1, - sym_link_destination, - ACTIONS(4078), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1267), 2, - sym__link_destination_parenthesis, - sym__word, - ACTIONS(4088), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(4025), 1, + aux_sym__newline_token1, + ACTIONS(6009), 1, + sym__block_close, + STATE(1656), 1, + sym__newline, + ACTIONS(5462), 2, sym__word_no_digit, sym__digits, - ACTIONS(4074), 27, + STATE(1531), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4017), 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, @@ -130406,11 +130409,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__, @@ -130419,26 +130424,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [66356] = 8, - ACTIONS(3030), 1, - aux_sym__newline_token1, - ACTIONS(3231), 1, - anon_sym_RBRACK, - ACTIONS(5516), 1, - sym__whitespace_ge_2, - ACTIONS(5518), 1, + [66362] = 4, + ACTIONS(967), 1, aux_sym__whitespace_token1, - ACTIONS(6017), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(5520), 2, - sym__word_no_digit, - sym__digits, - STATE(1362), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(3229), 31, + STATE(1551), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6011), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(965), 37, + sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -130463,6 +130459,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, @@ -130470,26 +130467,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [66415] = 8, - ACTIONS(4132), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, - aux_sym__whitespace_token1, - ACTIONS(5180), 1, - aux_sym__newline_token1, - ACTIONS(5476), 1, - anon_sym_GT, - ACTIONS(6021), 1, - sym__block_close, - ACTIONS(6019), 2, sym__word_no_digit, sym__digits, - STATE(1541), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_4_repeat1, - ACTIONS(5474), 31, + aux_sym__newline_token1, + [66413] = 4, + ACTIONS(967), 1, + aux_sym__whitespace_token1, + STATE(1562), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5557), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(965), 37, + sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -130509,6 +130501,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, @@ -130521,38 +130514,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [66474] = 10, - ACTIONS(4035), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [66464] = 8, + ACTIONS(4019), 1, + sym__whitespace_ge_2, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4086), 1, - anon_sym_LT, - ACTIONS(4367), 1, - anon_sym_LPAREN, - STATE(1716), 1, - sym__whitespace, - STATE(2067), 1, - sym_link_destination, - ACTIONS(4078), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1267), 2, - sym__link_destination_parenthesis, - sym__word, - ACTIONS(4088), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(4025), 1, + aux_sym__newline_token1, + ACTIONS(6015), 1, + sym__block_close, + STATE(1656), 1, + sym__newline, + ACTIONS(6013), 2, sym__word_no_digit, sym__digits, - ACTIONS(4074), 27, + STATE(1552), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4017), 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, @@ -130561,11 +130554,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__, @@ -130574,26 +130569,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [66537] = 8, - ACTIONS(1614), 1, - aux_sym__newline_token1, - ACTIONS(4904), 1, - anon_sym_DASH, - ACTIONS(4908), 1, - sym__whitespace_ge_2, - ACTIONS(4910), 1, + [66523] = 4, + ACTIONS(1063), 1, aux_sym__whitespace_token1, - ACTIONS(5227), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5482), 2, - sym__word_no_digit, - sym__digits, - STATE(1398), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(4902), 31, + STATE(1554), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6017), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(1061), 37, + sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -130606,6 +130592,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, @@ -130625,38 +130612,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [66596] = 10, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(4086), 1, - anon_sym_LT, - ACTIONS(4367), 1, - anon_sym_LPAREN, - STATE(1336), 1, - sym__soft_line_break, - STATE(2067), 1, - sym_link_destination, - STATE(2144), 1, - sym__newline, - ACTIONS(4078), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1267), 2, - sym__link_destination_parenthesis, - sym__word, - ACTIONS(4088), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - ACTIONS(4074), 27, + aux_sym__newline_token1, + [66574] = 4, + ACTIONS(1063), 1, + aux_sym__whitespace_token1, + STATE(1562), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5557), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(1061), 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, @@ -130665,11 +130644,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__, @@ -130678,25 +130659,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [66659] = 8, - ACTIONS(4132), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [66625] = 8, + ACTIONS(4019), 1, + sym__whitespace_ge_2, + ACTIONS(4021), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, + ACTIONS(4025), 1, aux_sym__newline_token1, - ACTIONS(6023), 1, + ACTIONS(6015), 1, sym__block_close, - STATE(1671), 1, + STATE(1656), 1, sym__newline, - ACTIONS(5470), 2, + ACTIONS(5462), 2, sym__word_no_digit, sym__digits, - STATE(1358), 3, + STATE(1531), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + ACTIONS(4017), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -130729,25 +130714,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [66718] = 8, - ACTIONS(4132), 1, - sym__whitespace_ge_2, - ACTIONS(4134), 1, + [66684] = 4, + ACTIONS(557), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, - aux_sym__newline_token1, - ACTIONS(6027), 1, - sym__block_close, - STATE(1671), 1, - sym__newline, - ACTIONS(6025), 2, - sym__word_no_digit, - sym__digits, - STATE(1558), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + STATE(1562), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5557), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(555), 37, + sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -130780,25 +130757,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [66777] = 8, - ACTIONS(4132), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, - aux_sym__whitespace_token1, - ACTIONS(4138), 1, - aux_sym__newline_token1, - ACTIONS(6031), 1, - sym__block_close, - STATE(1658), 1, - sym__newline, - ACTIONS(6029), 2, sym__word_no_digit, sym__digits, - STATE(1502), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5484), 32, + aux_sym__newline_token1, + [66735] = 4, + ACTIONS(391), 1, + aux_sym__whitespace_token1, + STATE(1563), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6019), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(389), 37, + sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -130831,12 +130804,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [66836] = 4, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [66786] = 4, ACTIONS(391), 1, aux_sym__whitespace_token1, - STATE(1564), 1, + STATE(1562), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6033), 3, + ACTIONS(5557), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, @@ -130878,16 +130855,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [66887] = 4, - ACTIONS(391), 1, + [66837] = 4, + ACTIONS(405), 1, aux_sym__whitespace_token1, - STATE(1563), 1, + STATE(1562), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5538), 3, + ACTIONS(6021), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(389), 37, + ACTIONS(403), 37, sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -130925,12 +130902,12 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [66938] = 4, + [66888] = 4, ACTIONS(399), 1, aux_sym__whitespace_token1, - STATE(1563), 1, + STATE(1562), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6035), 3, + ACTIONS(5557), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, @@ -130972,16 +130949,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [66989] = 4, - ACTIONS(409), 1, + [66939] = 4, + ACTIONS(557), 1, aux_sym__whitespace_token1, - STATE(1563), 1, + STATE(1557), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5538), 3, + ACTIONS(6024), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(407), 37, + ACTIONS(555), 37, sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -131019,25 +130996,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [67040] = 8, - ACTIONS(4132), 1, - sym__whitespace_ge_2, - ACTIONS(4134), 1, + [66990] = 4, + ACTIONS(876), 1, aux_sym__whitespace_token1, - ACTIONS(4138), 1, - aux_sym__newline_token1, - ACTIONS(6027), 1, - sym__block_close, - STATE(1671), 1, - sym__newline, - ACTIONS(5470), 2, - sym__word_no_digit, - sym__digits, - STATE(1358), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + STATE(1588), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6026), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(874), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -131070,25 +131038,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [67099] = 8, - ACTIONS(4132), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, - aux_sym__whitespace_token1, - ACTIONS(4138), 1, - aux_sym__newline_token1, - ACTIONS(6038), 1, - sym__block_close, - STATE(1671), 1, - sym__newline, - ACTIONS(5470), 2, sym__word_no_digit, sym__digits, - STATE(1358), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + aux_sym__newline_token1, + [67040] = 4, + ACTIONS(862), 1, + aux_sym__whitespace_token1, + STATE(1616), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6028), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(860), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -131121,31 +131084,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [67158] = 8, - ACTIONS(4132), 1, sym__whitespace_ge_2, - ACTIONS(4134), 1, - aux_sym__whitespace_token1, - ACTIONS(4138), 1, - aux_sym__newline_token1, - ACTIONS(6038), 1, - sym__block_close, - STATE(1671), 1, - sym__newline, - ACTIONS(6040), 2, sym__word_no_digit, sym__digits, - STATE(1565), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4130), 32, + aux_sym__newline_token1, + [67090] = 3, + ACTIONS(6030), 1, + sym__last_token_whitespace, + ACTIONS(2842), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(2840), 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, @@ -131163,7 +131118,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__, @@ -131172,24 +131126,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [67217] = 4, - ACTIONS(765), 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, + [67138] = 4, + ACTIONS(5831), 1, + sym__blank_line_start, + STATE(2366), 1, + sym__blank_line, + ACTIONS(6034), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - STATE(1614), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6042), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(763), 36, + ACTIONS(6032), 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, @@ -131205,7 +131164,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__, @@ -131214,34 +131172,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, - [67267] = 7, - ACTIONS(1658), 1, - aux_sym__newline_token1, - ACTIONS(5939), 1, - sym__whitespace_ge_2, - ACTIONS(5941), 1, + [67188] = 3, + ACTIONS(4575), 1, + sym__last_token_punctuation, + ACTIONS(4564), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(6046), 1, - anon_sym_GT, - ACTIONS(6048), 2, - sym__word_no_digit, - sym__digits, - STATE(1607), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__declaration_repeat1, - ACTIONS(6044), 31, + ACTIONS(4562), 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, @@ -131255,10 +131205,10 @@ 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__, @@ -131267,30 +131217,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [67323] = 7, - ACTIONS(1658), 1, - aux_sym__newline_token1, - ACTIONS(5939), 1, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, - ACTIONS(5941), 1, - aux_sym__whitespace_token1, - ACTIONS(6050), 1, - anon_sym_GT, - ACTIONS(6052), 2, sym__word_no_digit, sym__digits, - STATE(1622), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__declaration_repeat1, - ACTIONS(6044), 31, + aux_sym__newline_token1, + [67236] = 3, + ACTIONS(6042), 1, + sym__last_token_punctuation, + ACTIONS(6039), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(6036), 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, @@ -131304,10 +131250,10 @@ 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__, @@ -131316,22 +131262,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [67379] = 6, - ACTIONS(4602), 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, + [67284] = 6, + ACTIONS(4756), 1, sym__whitespace_ge_2, - ACTIONS(4604), 1, + ACTIONS(4758), 1, aux_sym__whitespace_token1, - ACTIONS(6056), 1, + ACTIONS(6046), 1, sym__code_span_close, - ACTIONS(6054), 2, + ACTIONS(6044), 2, sym__word_no_digit, sym__digits, - STATE(1579), 4, + STATE(1618), 4, sym__text, sym__whitespace, sym__word, aux_sym__code_span_no_newline_repeat1, - ACTIONS(2874), 32, + ACTIONS(2855), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -131364,33 +131317,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [67433] = 7, - ACTIONS(1658), 1, - aux_sym__newline_token1, - ACTIONS(5939), 1, - sym__whitespace_ge_2, - ACTIONS(5941), 1, + [67338] = 5, + ACTIONS(6055), 1, aux_sym__whitespace_token1, ACTIONS(6058), 1, - anon_sym_GT, - ACTIONS(6060), 2, - sym__word_no_digit, - sym__digits, - STATE(1570), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__declaration_repeat1, - ACTIONS(6044), 31, + sym__last_token_punctuation, + ACTIONS(6050), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(6052), 3, + anon_sym_RPAREN, + sym__whitespace_ge_2, + aux_sym__newline_token1, + ACTIONS(6048), 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, @@ -131401,10 +131347,10 @@ 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__, @@ -131413,16 +131359,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [67489] = 4, - ACTIONS(391), 1, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + [67390] = 6, + ACTIONS(4756), 1, + sym__whitespace_ge_2, + ACTIONS(4758), 1, aux_sym__whitespace_token1, - STATE(1576), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6062), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(389), 36, + ACTIONS(6060), 1, + sym__code_span_close, + ACTIONS(6044), 2, + sym__word_no_digit, + sym__digits, + STATE(1618), 4, + sym__text, + sym__whitespace, + sym__word, + aux_sym__code_span_no_newline_repeat1, + ACTIONS(2855), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -131455,26 +131412,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, - [67539] = 4, - ACTIONS(391), 1, + [67444] = 3, + ACTIONS(6068), 1, + sym__last_token_punctuation, + ACTIONS(6065), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - STATE(1581), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6064), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(389), 36, + ACTIONS(6062), 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, @@ -131492,7 +131442,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__, @@ -131501,18 +131450,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, - [67589] = 3, - ACTIONS(6070), 1, + [67492] = 3, + ACTIONS(6058), 1, sym__last_token_punctuation, - ACTIONS(6068), 3, + ACTIONS(6050), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(6066), 37, + ACTIONS(6048), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -131550,22 +131502,19 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [67637] = 4, - ACTIONS(409), 1, + [67540] = 3, + ACTIONS(6074), 1, + sym__last_token_punctuation, + ACTIONS(6072), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - STATE(1581), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6064), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(407), 36, + ACTIONS(6070), 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, @@ -131583,7 +131532,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__, @@ -131592,26 +131540,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, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [67687] = 4, - ACTIONS(5718), 1, - sym__blank_line_start, - STATE(2388), 1, - sym__blank_line, - ACTIONS(6074), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [67588] = 7, + ACTIONS(6079), 1, + anon_sym_GT, + ACTIONS(6081), 1, + sym__whitespace_ge_2, + ACTIONS(6084), 1, aux_sym__whitespace_token1, - ACTIONS(6072), 36, + ACTIONS(6090), 1, + aux_sym__newline_token1, + ACTIONS(6087), 2, + sym__word_no_digit, + sym__digits, + STATE(1577), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__declaration_repeat1, + ACTIONS(6076), 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, @@ -131623,10 +131584,10 @@ 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__, @@ -131635,23 +131596,16 @@ 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, - [67737] = 4, - ACTIONS(976), 1, + [67644] = 4, + ACTIONS(943), 1, aux_sym__whitespace_token1, - STATE(1582), 1, + STATE(1616), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6076), 3, + ACTIONS(6028), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(974), 36, + ACTIONS(941), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -131688,22 +131642,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [67787] = 6, - ACTIONS(6081), 1, - sym__whitespace_ge_2, - ACTIONS(6084), 1, + [67694] = 4, + ACTIONS(967), 1, aux_sym__whitespace_token1, - ACTIONS(6090), 1, - sym__code_span_close, - ACTIONS(6087), 2, - sym__word_no_digit, - sym__digits, - STATE(1579), 4, - sym__text, - sym__whitespace, - sym__word, - aux_sym__code_span_no_newline_repeat1, - ACTIONS(6078), 32, + STATE(1578), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6093), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(965), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -131736,19 +131684,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [67841] = 3, - ACTIONS(4623), 1, - sym__last_token_punctuation, - ACTIONS(4612), 3, - anon_sym_AMP, - anon_sym_BSLASH, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [67744] = 4, + ACTIONS(967), 1, aux_sym__whitespace_token1, - ACTIONS(4610), 37, + STATE(1616), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6028), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(965), 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, @@ -131766,6 +131721,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__, @@ -131774,23 +131730,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, - [67889] = 4, - ACTIONS(399), 1, + [67794] = 4, + ACTIONS(1063), 1, aux_sym__whitespace_token1, - STATE(1581), 1, + STATE(1580), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6092), 3, + ACTIONS(6095), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(397), 36, + ACTIONS(1061), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -131827,16 +131780,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [67939] = 4, - ACTIONS(986), 1, + [67844] = 4, + ACTIONS(1063), 1, aux_sym__whitespace_token1, - STATE(1581), 1, + STATE(1616), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6064), 3, + ACTIONS(6028), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(984), 36, + ACTIONS(1061), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -131873,16 +131826,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [67989] = 4, - ACTIONS(986), 1, + [67894] = 4, + ACTIONS(557), 1, aux_sym__whitespace_token1, - STATE(1594), 1, + STATE(1616), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6095), 3, + ACTIONS(6028), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(984), 36, + ACTIONS(555), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -131919,24 +131872,62 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [68039] = 7, - ACTIONS(1658), 1, - aux_sym__newline_token1, - ACTIONS(5939), 1, - sym__whitespace_ge_2, - ACTIONS(5941), 1, + [67944] = 4, + ACTIONS(557), 1, aux_sym__whitespace_token1, - ACTIONS(6097), 1, + STATE(1582), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6097), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(555), 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, - ACTIONS(6099), 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, + sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - STATE(1613), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__declaration_repeat1, - ACTIONS(6044), 31, + aux_sym__newline_token1, + [67994] = 4, + ACTIONS(899), 1, + aux_sym__whitespace_token1, + STATE(1583), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6099), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(897), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -131956,6 +131947,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, @@ -131968,16 +131960,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [68095] = 4, - ACTIONS(1107), 1, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [68044] = 4, + ACTIONS(899), 1, aux_sym__whitespace_token1, - STATE(1596), 1, + STATE(1616), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6101), 3, + ACTIONS(6028), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1105), 36, + ACTIONS(897), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -132014,16 +132010,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [68145] = 4, - ACTIONS(1101), 1, + [68094] = 4, + ACTIONS(889), 1, aux_sym__whitespace_token1, - STATE(1598), 1, + STATE(1616), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6103), 3, + ACTIONS(6028), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1099), 36, + ACTIONS(887), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -132060,16 +132056,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [68195] = 4, - ACTIONS(1095), 1, + [68144] = 4, + ACTIONS(882), 1, aux_sym__whitespace_token1, - STATE(1600), 1, + STATE(1616), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6105), 3, + ACTIONS(6028), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1093), 36, + ACTIONS(880), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -132106,19 +132102,68 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [68245] = 3, - ACTIONS(6113), 1, - sym__last_token_punctuation, - ACTIONS(6110), 3, + [68194] = 4, + ACTIONS(872), 1, + aux_sym__whitespace_token1, + STATE(1616), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6028), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(870), 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_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, + [68244] = 4, + ACTIONS(866), 1, aux_sym__whitespace_token1, - ACTIONS(6107), 37, + STATE(1616), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6028), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(864), 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, @@ -132136,6 +132181,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__, @@ -132144,26 +132190,72 @@ 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, - [68293] = 3, - ACTIONS(4644), 1, - sym__last_token_punctuation, - ACTIONS(4633), 3, + [68294] = 4, + ACTIONS(838), 1, + aux_sym__whitespace_token1, + STATE(1616), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6028), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(836), 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_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, + [68344] = 4, + ACTIONS(782), 1, aux_sym__whitespace_token1, - ACTIONS(4631), 37, + STATE(1616), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6028), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(780), 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, @@ -132181,6 +132273,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__, @@ -132189,23 +132282,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, - [68341] = 4, - ACTIONS(1083), 1, + [68394] = 4, + ACTIONS(832), 1, aux_sym__whitespace_token1, - STATE(1619), 1, + STATE(1586), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6115), 3, + ACTIONS(6101), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1081), 36, + ACTIONS(830), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -132242,16 +132332,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [68391] = 4, - ACTIONS(765), 1, + [68444] = 4, + ACTIONS(832), 1, aux_sym__whitespace_token1, - STATE(1581), 1, + STATE(1616), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6064), 3, + ACTIONS(6028), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(763), 36, + ACTIONS(830), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -132288,16 +132378,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [68441] = 4, - ACTIONS(1077), 1, + [68494] = 4, + ACTIONS(391), 1, aux_sym__whitespace_token1, - STATE(1612), 1, + STATE(1616), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6117), 3, + ACTIONS(6028), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1075), 36, + ACTIONS(389), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -132334,22 +132424,24 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [68491] = 6, - ACTIONS(4602), 1, + [68544] = 7, + ACTIONS(1642), 1, + aux_sym__newline_token1, + ACTIONS(5456), 1, sym__whitespace_ge_2, - ACTIONS(4604), 1, + ACTIONS(5458), 1, aux_sym__whitespace_token1, - ACTIONS(6119), 1, - sym__code_span_close, - ACTIONS(6054), 2, + ACTIONS(6105), 1, + anon_sym_GT, + ACTIONS(6107), 2, sym__word_no_digit, sym__digits, - STATE(1579), 4, - sym__text, + STATE(1605), 4, sym__whitespace, sym__word, - aux_sym__code_span_no_newline_repeat1, - ACTIONS(2874), 32, + sym__newline, + aux_sym__declaration_repeat1, + ACTIONS(6103), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -132369,7 +132461,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, @@ -132382,16 +132473,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [68545] = 4, - ACTIONS(1000), 1, + [68600] = 3, + ACTIONS(4812), 1, + sym__last_token_punctuation, + ACTIONS(4801), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - STATE(1581), 1, + ACTIONS(4799), 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, + [68648] = 4, + ACTIONS(876), 1, + aux_sym__whitespace_token1, + STATE(1616), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6064), 3, + ACTIONS(6028), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(998), 36, + ACTIONS(874), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -132428,16 +132564,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [68595] = 4, - ACTIONS(1000), 1, + [68698] = 4, + ACTIONS(893), 1, aux_sym__whitespace_token1, - STATE(1623), 1, + STATE(1589), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6121), 3, + ACTIONS(6109), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(998), 36, + ACTIONS(891), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -132474,16 +132610,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [68645] = 4, - ACTIONS(953), 1, + [68748] = 4, + ACTIONS(893), 1, aux_sym__whitespace_token1, - STATE(1581), 1, + STATE(1616), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6064), 3, + ACTIONS(6028), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(951), 36, + ACTIONS(891), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -132520,16 +132656,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [68695] = 4, - ACTIONS(953), 1, + [68798] = 4, + ACTIONS(852), 1, aux_sym__whitespace_token1, - STATE(1618), 1, + STATE(1590), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6123), 3, + ACTIONS(6111), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(951), 36, + ACTIONS(850), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -132566,16 +132702,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [68745] = 4, - ACTIONS(935), 1, + [68848] = 4, + ACTIONS(852), 1, aux_sym__whitespace_token1, - STATE(1581), 1, + STATE(1616), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6064), 3, + ACTIONS(6028), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(933), 36, + ACTIONS(850), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -132612,16 +132748,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [68795] = 4, - ACTIONS(935), 1, + [68898] = 4, + ACTIONS(828), 1, aux_sym__whitespace_token1, - STATE(1616), 1, + STATE(1566), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6125), 3, + ACTIONS(6113), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(933), 36, + ACTIONS(826), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -132658,16 +132794,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [68845] = 4, - ACTIONS(872), 1, + [68948] = 4, + ACTIONS(828), 1, aux_sym__whitespace_token1, - STATE(1581), 1, + STATE(1616), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6064), 3, + ACTIONS(6028), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(870), 36, + ACTIONS(826), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -132704,19 +132840,30 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [68895] = 3, - ACTIONS(6131), 1, - sym__last_token_punctuation, - ACTIONS(6129), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [68998] = 7, + ACTIONS(1642), 1, + aux_sym__newline_token1, + ACTIONS(5456), 1, + sym__whitespace_ge_2, + ACTIONS(5458), 1, aux_sym__whitespace_token1, - ACTIONS(6127), 37, + ACTIONS(6115), 1, + anon_sym_GT, + ACTIONS(6117), 2, + sym__word_no_digit, + sym__digits, + STATE(1577), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__declaration_repeat1, + ACTIONS(6103), 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, @@ -132730,10 +132877,10 @@ 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__, @@ -132742,23 +132889,16 @@ 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, - [68943] = 4, - ACTIONS(872), 1, + [69054] = 4, + ACTIONS(633), 1, aux_sym__whitespace_token1, - STATE(1615), 1, + STATE(1592), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6133), 3, + ACTIONS(6119), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(870), 36, + ACTIONS(631), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -132795,26 +132935,25 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [68993] = 5, - ACTIONS(6142), 1, + [69104] = 4, + ACTIONS(633), 1, aux_sym__whitespace_token1, - ACTIONS(6145), 1, - sym__last_token_punctuation, - ACTIONS(6137), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(6139), 3, - anon_sym_RPAREN, - sym__whitespace_ge_2, - aux_sym__newline_token1, - ACTIONS(6135), 34, + STATE(1616), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6028), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(631), 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, @@ -132829,6 +132968,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__, @@ -132837,24 +132977,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, - [69045] = 3, - ACTIONS(6147), 1, - sym__last_token_whitespace, - ACTIONS(2842), 3, - anon_sym_AMP, - anon_sym_BSLASH, + aux_sym__newline_token1, + [69154] = 4, + ACTIONS(792), 1, aux_sym__whitespace_token1, - ACTIONS(2840), 37, + STATE(1594), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6121), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(790), 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, @@ -132872,6 +133014,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__, @@ -132880,26 +133023,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, - [69093] = 3, - ACTIONS(6155), 1, - sym__last_token_punctuation, - ACTIONS(6152), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [69204] = 4, + ACTIONS(798), 1, aux_sym__whitespace_token1, - ACTIONS(6149), 37, + STATE(1591), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6123), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(796), 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, @@ -132917,6 +133060,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__, @@ -132925,23 +133069,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, - [69141] = 4, - ACTIONS(864), 1, + [69254] = 4, + ACTIONS(804), 1, aux_sym__whitespace_token1, - STATE(1581), 1, + STATE(1598), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6064), 3, + ACTIONS(6125), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(862), 36, + ACTIONS(802), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -132978,24 +133119,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [69191] = 7, - ACTIONS(1658), 1, - aux_sym__newline_token1, - ACTIONS(5939), 1, - sym__whitespace_ge_2, - ACTIONS(5941), 1, + [69304] = 4, + ACTIONS(810), 1, aux_sym__whitespace_token1, - ACTIONS(6157), 1, - anon_sym_GT, - ACTIONS(6052), 2, - sym__word_no_digit, - sym__digits, - STATE(1622), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__declaration_repeat1, - ACTIONS(6044), 31, + STATE(1600), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6127), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(808), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -133015,6 +133148,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, @@ -133027,16 +133161,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [69247] = 4, - ACTIONS(683), 1, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [69354] = 4, + ACTIONS(816), 1, aux_sym__whitespace_token1, - STATE(1629), 1, + STATE(1602), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6159), 3, + ACTIONS(6129), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(681), 36, + ACTIONS(814), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -133073,16 +133211,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [69297] = 4, - ACTIONS(683), 1, + [69404] = 4, + ACTIONS(822), 1, aux_sym__whitespace_token1, - STATE(1581), 1, + STATE(1604), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6064), 3, + ACTIONS(6131), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(681), 36, + ACTIONS(820), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -133119,16 +133257,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [69347] = 4, - ACTIONS(679), 1, + [69454] = 4, + ACTIONS(856), 1, aux_sym__whitespace_token1, - STATE(1581), 1, + STATE(1607), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6064), 3, + ACTIONS(6133), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(677), 36, + ACTIONS(854), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -133165,16 +133303,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [69397] = 4, - ACTIONS(622), 1, + [69504] = 4, + ACTIONS(856), 1, aux_sym__whitespace_token1, - STATE(1581), 1, + STATE(1616), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6064), 3, + ACTIONS(6028), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(620), 36, + ACTIONS(854), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -133211,16 +133349,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [69447] = 4, - ACTIONS(801), 1, + [69554] = 4, + ACTIONS(405), 1, aux_sym__whitespace_token1, - STATE(1581), 1, + STATE(1616), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6064), 3, + ACTIONS(6135), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(799), 36, + ACTIONS(403), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -133257,24 +133395,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [69497] = 7, - ACTIONS(1658), 1, - aux_sym__newline_token1, - ACTIONS(5939), 1, - sym__whitespace_ge_2, - ACTIONS(5941), 1, + [69604] = 4, + ACTIONS(961), 1, aux_sym__whitespace_token1, - ACTIONS(6161), 1, - anon_sym_GT, - ACTIONS(6052), 2, - sym__word_no_digit, - sym__digits, - STATE(1622), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__declaration_repeat1, - ACTIONS(6044), 31, + STATE(1615), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6138), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(959), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -133294,6 +133424,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, @@ -133306,16 +133437,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [69553] = 4, - ACTIONS(697), 1, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [69654] = 6, + ACTIONS(6143), 1, + sym__whitespace_ge_2, + ACTIONS(6146), 1, aux_sym__whitespace_token1, - STATE(1581), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6064), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(695), 36, + ACTIONS(6152), 1, + sym__code_span_close, + ACTIONS(6149), 2, + sym__word_no_digit, + sym__digits, + STATE(1618), 4, + sym__text, + sym__whitespace, + sym__word, + aux_sym__code_span_no_newline_repeat1, + ACTIONS(6140), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -133348,20 +133489,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + [69708] = 7, + ACTIONS(1642), 1, + aux_sym__newline_token1, + ACTIONS(5456), 1, sym__whitespace_ge_2, + ACTIONS(5458), 1, + aux_sym__whitespace_token1, + ACTIONS(6154), 1, + anon_sym_GT, + ACTIONS(6117), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [69603] = 4, - ACTIONS(618), 1, - aux_sym__whitespace_token1, - STATE(1581), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6064), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(616), 36, + STATE(1577), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__declaration_repeat1, + ACTIONS(6103), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -133381,7 +133526,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, @@ -133394,20 +133538,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + [69764] = 7, + ACTIONS(1642), 1, + aux_sym__newline_token1, + ACTIONS(5456), 1, sym__whitespace_ge_2, + ACTIONS(5458), 1, + aux_sym__whitespace_token1, + ACTIONS(6156), 1, + anon_sym_GT, + ACTIONS(6117), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [69653] = 4, - ACTIONS(614), 1, - aux_sym__whitespace_token1, - STATE(1581), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6064), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(612), 36, + STATE(1577), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__declaration_repeat1, + ACTIONS(6103), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -133427,7 +133575,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, @@ -133440,20 +133587,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, - [69703] = 4, - ACTIONS(823), 1, + [69820] = 4, + ACTIONS(399), 1, aux_sym__whitespace_token1, - STATE(1610), 1, + STATE(1616), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6163), 3, + ACTIONS(6028), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(821), 36, + ACTIONS(397), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -133490,22 +133633,19 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [69753] = 4, - ACTIONS(576), 1, + [69870] = 3, + ACTIONS(6162), 1, + sym__last_token_punctuation, + ACTIONS(6160), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - STATE(1581), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6064), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(574), 36, + ACTIONS(6158), 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, @@ -133523,7 +133663,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__, @@ -133532,20 +133671,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, - [69803] = 4, - ACTIONS(823), 1, + [69918] = 6, + ACTIONS(4756), 1, + sym__whitespace_ge_2, + ACTIONS(4758), 1, aux_sym__whitespace_token1, - STATE(1581), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6064), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(821), 36, + ACTIONS(6164), 1, + sym__code_span_close, + ACTIONS(6044), 2, + sym__word_no_digit, + sym__digits, + STATE(1618), 4, + sym__text, + sym__whitespace, + sym__word, + aux_sym__code_span_no_newline_repeat1, + ACTIONS(2855), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -133578,20 +133726,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, - [69853] = 4, - ACTIONS(1089), 1, + [69972] = 4, + ACTIONS(838), 1, aux_sym__whitespace_token1, - STATE(1606), 1, + STATE(1587), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6165), 3, + ACTIONS(6166), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1087), 36, + ACTIONS(836), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -133628,16 +133772,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [69903] = 4, - ACTIONS(864), 1, + [70022] = 4, + ACTIONS(391), 1, aux_sym__whitespace_token1, - STATE(1611), 1, + STATE(1621), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6167), 3, + ACTIONS(6168), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(862), 36, + ACTIONS(389), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -133674,65 +133818,24 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [69953] = 7, - ACTIONS(6172), 1, - anon_sym_GT, - ACTIONS(6174), 1, + [70072] = 7, + ACTIONS(1642), 1, + aux_sym__newline_token1, + ACTIONS(5456), 1, sym__whitespace_ge_2, - ACTIONS(6177), 1, + ACTIONS(5458), 1, aux_sym__whitespace_token1, - ACTIONS(6183), 1, - aux_sym__newline_token1, - ACTIONS(6180), 2, + ACTIONS(6170), 1, + anon_sym_GT, + ACTIONS(6172), 2, sym__word_no_digit, sym__digits, - STATE(1622), 4, + STATE(1619), 4, sym__whitespace, sym__word, sym__newline, aux_sym__declaration_repeat1, - ACTIONS(6169), 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, - [70009] = 4, - ACTIONS(572), 1, - aux_sym__whitespace_token1, - STATE(1581), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6064), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(570), 36, + ACTIONS(6103), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -133752,7 +133855,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, @@ -133765,18 +133867,14 @@ 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, - [70059] = 3, - ACTIONS(6186), 1, + [70128] = 3, + ACTIONS(6174), 1, sym__last_token_punctuation, - ACTIONS(6129), 3, + ACTIONS(6160), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(6127), 37, + ACTIONS(6158), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -133814,16 +133912,24 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [70107] = 4, - ACTIONS(789), 1, + [70176] = 7, + ACTIONS(1642), 1, + aux_sym__newline_token1, + ACTIONS(5456), 1, + sym__whitespace_ge_2, + ACTIONS(5458), 1, aux_sym__whitespace_token1, - STATE(1591), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6188), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(787), 36, + ACTIONS(6176), 1, + anon_sym_GT, + ACTIONS(6178), 2, + sym__word_no_digit, + sym__digits, + STATE(1620), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__declaration_repeat1, + ACTIONS(6103), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -133843,7 +133949,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, @@ -133856,20 +133961,14 @@ 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, - [70157] = 4, - ACTIONS(789), 1, - aux_sym__whitespace_token1, - STATE(1581), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6064), 3, - sym__block_continuation, - sym__block_quote_continuation, + [70232] = 3, + ACTIONS(6180), 1, sym__last_token_whitespace, - ACTIONS(787), 36, + ACTIONS(2842), 2, + anon_sym_LT, + aux_sym__whitespace_token1, + ACTIONS(2840), 37, + sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -133887,7 +133986,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, @@ -133902,18 +134000,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, - [70207] = 3, - ACTIONS(6145), 1, - sym__last_token_punctuation, - ACTIONS(6137), 3, + [70279] = 2, + ACTIONS(6184), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(6135), 37, + ACTIONS(6182), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -133951,22 +134048,25 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [70255] = 6, - ACTIONS(4602), 1, + [70324] = 7, + ACTIONS(6189), 1, + anon_sym_GT, + ACTIONS(6191), 1, + anon_sym_BSLASH, + ACTIONS(6197), 1, sym__whitespace_ge_2, - ACTIONS(4604), 1, + ACTIONS(6200), 1, aux_sym__whitespace_token1, - ACTIONS(6190), 1, - sym__code_span_close, - ACTIONS(6054), 2, + ACTIONS(6194), 3, + sym_backslash_escape, sym__word_no_digit, sym__digits, - STATE(1579), 4, - sym__text, + STATE(1631), 4, + sym__text_no_angle, sym__whitespace, sym__word, - aux_sym__code_span_no_newline_repeat1, - ACTIONS(2874), 32, + aux_sym_link_destination_repeat1, + ACTIONS(6186), 29, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -133984,13 +134084,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__, @@ -133999,22 +134096,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [70309] = 4, - ACTIONS(813), 1, + [70379] = 2, + ACTIONS(6205), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - STATE(1581), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6064), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(811), 36, + ACTIONS(6203), 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 +134124,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,20 +134132,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, - [70359] = 4, - ACTIONS(813), 1, + [70424] = 3, + ACTIONS(6072), 1, aux_sym__whitespace_token1, - STATE(1626), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6192), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(811), 36, + ACTIONS(6207), 1, + sym__last_token_punctuation, + ACTIONS(6070), 38, + sym__block_close, + sym__fenced_code_block_end_tilde, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -134091,22 +134183,17 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [70409] = 4, - ACTIONS(801), 1, + [70471] = 2, + ACTIONS(6211), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - STATE(1609), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6194), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(799), 36, + ACTIONS(6209), 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, @@ -134124,7 +134211,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__, @@ -134133,18 +134219,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, - [70459] = 3, - ACTIONS(6200), 1, - sym__last_token_punctuation, - ACTIONS(6198), 2, - anon_sym_RBRACK, + [70516] = 3, + ACTIONS(2842), 1, aux_sym__whitespace_token1, - ACTIONS(6196), 37, + ACTIONS(6213), 1, + sym__last_token_whitespace, + ACTIONS(2840), 38, sym__block_close, + sym__fenced_code_block_end_backtick, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -134169,6 +134258,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, @@ -134176,25 +134266,21 @@ 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, - [70506] = 3, - ACTIONS(6068), 1, + [70563] = 2, + ACTIONS(6215), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(6202), 1, - sym__last_token_punctuation, - ACTIONS(6066), 38, - sym__block_close, - sym__fenced_code_block_end_tilde, + ACTIONS(4824), 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, @@ -134212,7 +134298,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__, @@ -134221,21 +134306,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, - [70553] = 4, - ACTIONS(6211), 1, - aux_sym__whitespace_token1, - ACTIONS(6206), 2, + [70608] = 2, + ACTIONS(6220), 3, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(6208), 3, - anon_sym_RPAREN, - sym__whitespace_ge_2, - aux_sym__newline_token1, - ACTIONS(6204), 34, + aux_sym__whitespace_token1, + ACTIONS(6217), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -134243,6 +134326,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, @@ -134268,22 +134352,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, - [70602] = 3, - ACTIONS(6218), 1, - sym__last_token_punctuation, - ACTIONS(6216), 2, - anon_sym_QMARK, + aux_sym__newline_token1, + [70653] = 2, + ACTIONS(6223), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(6214), 37, - sym__block_close, + ACTIONS(4655), 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, @@ -134298,9 +134381,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__, @@ -134309,25 +134392,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, - [70649] = 3, - ACTIONS(6220), 1, - sym__last_token_whitespace, - ACTIONS(2842), 2, - anon_sym_QMARK, + [70698] = 2, + ACTIONS(2942), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(2840), 37, - sym__block_close, + ACTIONS(2940), 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, @@ -134342,9 +134424,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__, @@ -134353,17 +134435,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, - [70696] = 2, - ACTIONS(2060), 3, + [70743] = 2, + ACTIONS(3686), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(2058), 37, + ACTIONS(3684), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -134401,20 +134485,19 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [70741] = 3, - ACTIONS(6222), 1, - sym__last_token_punctuation, - ACTIONS(6074), 3, + [70788] = 2, + ACTIONS(6228), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(6072), 36, + ACTIONS(6225), 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, @@ -134445,12 +134528,12 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [70788] = 2, - ACTIONS(417), 3, + [70833] = 2, + ACTIONS(5241), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(415), 37, + ACTIONS(5236), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -134488,11 +134571,11 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [70833] = 3, - ACTIONS(6224), 1, + [70878] = 3, + ACTIONS(6231), 1, sym__last_token_whitespace, ACTIONS(2842), 2, - anon_sym_DASH, + anon_sym_RBRACK, aux_sym__whitespace_token1, ACTIONS(2840), 37, sym__block_close, @@ -134508,6 +134591,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, @@ -134519,7 +134603,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, @@ -134527,34 +134610,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_DASH_DASH_GT, + anon_sym_RBRACK_RBRACK_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [70880] = 4, - ACTIONS(6226), 1, - anon_sym_LPAREN, - ACTIONS(6074), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [70925] = 3, + ACTIONS(6233), 1, + sym__last_token_whitespace, + ACTIONS(2842), 2, + anon_sym_QMARK, aux_sym__whitespace_token1, - ACTIONS(6228), 4, + ACTIONS(2840), 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, - sym_backslash_escape, + 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, + anon_sym_QMARK_GT, + sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - ACTIONS(6072), 32, + aux_sym__newline_token1, + [70972] = 3, + ACTIONS(6235), 1, + sym__last_token_whitespace, + ACTIONS(2842), 2, + anon_sym_DASH, + aux_sym__whitespace_token1, + ACTIONS(2840), 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, @@ -134565,6 +134689,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__, @@ -134573,16 +134698,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - 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, - [70929] = 2, - ACTIONS(2146), 3, + [71019] = 2, + ACTIONS(417), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(2144), 37, + ACTIONS(415), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -134620,12 +134746,56 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [70974] = 2, - ACTIONS(6110), 3, + [71064] = 3, + ACTIONS(6072), 1, + aux_sym__whitespace_token1, + ACTIONS(6237), 1, + sym__last_token_punctuation, + ACTIONS(6070), 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, + 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, + [71111] = 2, + ACTIONS(6241), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(6107), 37, + ACTIONS(6239), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -134663,25 +134833,25 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [71019] = 7, - ACTIONS(6233), 1, + [71156] = 7, + ACTIONS(6245), 1, anon_sym_GT, - ACTIONS(6235), 1, + ACTIONS(6247), 1, anon_sym_BSLASH, - ACTIONS(6239), 1, + ACTIONS(6251), 1, sym__whitespace_ge_2, - ACTIONS(6241), 1, + ACTIONS(6253), 1, aux_sym__whitespace_token1, - ACTIONS(6237), 3, + ACTIONS(6249), 3, sym_backslash_escape, sym__word_no_digit, sym__digits, - STATE(1678), 4, + STATE(1631), 4, sym__text_no_angle, sym__whitespace, sym__word, aux_sym_link_destination_repeat1, - ACTIONS(6231), 29, + ACTIONS(6243), 29, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -134711,20 +134881,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [71074] = 2, - ACTIONS(6245), 3, + [71211] = 4, + ACTIONS(6255), 1, + anon_sym_LPAREN, + ACTIONS(6034), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(6243), 37, + ACTIONS(6257), 4, + anon_sym_RPAREN, + sym_backslash_escape, + sym__word_no_digit, + sym__digits, + ACTIONS(6032), 32, 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, @@ -134747,19 +134922,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, - [71119] = 2, - ACTIONS(3877), 3, + [71260] = 4, + ACTIONS(6263), 1, + aux_sym__whitespace_token1, + ACTIONS(6241), 2, anon_sym_AMP, anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(3875), 37, + ACTIONS(6260), 3, + anon_sym_RPAREN, + sym__whitespace_ge_2, + aux_sym__newline_token1, + ACTIONS(6239), 34, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -134767,7 +134944,6 @@ 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, @@ -134793,30 +134969,27 @@ 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, - aux_sym__newline_token1, - [71164] = 3, - ACTIONS(6251), 1, + [71309] = 3, + ACTIONS(6266), 1, sym__last_token_punctuation, - ACTIONS(6249), 2, - anon_sym_DASH, + ACTIONS(6034), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(6247), 37, - sym__block_close, + ACTIONS(6032), 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, @@ -134827,7 +135000,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__, @@ -134836,17 +135008,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, - [71211] = 2, - ACTIONS(2074), 3, + [71356] = 2, + ACTIONS(6039), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(2072), 37, + ACTIONS(6036), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -134884,12 +135058,12 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [71256] = 2, - ACTIONS(5566), 3, + [71401] = 2, + ACTIONS(6065), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(5564), 37, + ACTIONS(6062), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -134927,14 +135101,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [71301] = 3, - ACTIONS(6253), 1, - sym__last_token_whitespace, - ACTIONS(2842), 2, - anon_sym_LT, + [71446] = 3, + ACTIONS(2842), 1, aux_sym__whitespace_token1, - ACTIONS(2840), 37, + ACTIONS(6268), 1, + sym__last_token_whitespace, + ACTIONS(2840), 38, sym__block_close, + sym__fenced_code_block_end_tilde, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -134952,6 +135126,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, @@ -134966,22 +135141,25 @@ 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, - [71348] = 2, - ACTIONS(2959), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [71493] = 4, + ACTIONS(1750), 1, + sym__blank_line_start, + ACTIONS(6272), 1, aux_sym__whitespace_token1, - ACTIONS(2957), 37, + STATE(2341), 1, + sym__blank_line, + ACTIONS(6270), 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, @@ -134999,6 +135177,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__, @@ -135007,19 +135186,16 @@ 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, - [71393] = 2, - ACTIONS(2102), 3, + [71542] = 2, + ACTIONS(6276), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(2100), 37, + ACTIONS(6274), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -135057,12 +135233,12 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [71438] = 2, - ACTIONS(2138), 3, + [71587] = 2, + ACTIONS(2106), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(2136), 37, + ACTIONS(2104), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -135100,20 +135276,17 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [71483] = 3, - ACTIONS(6259), 1, - sym__last_token_punctuation, - ACTIONS(6257), 2, - anon_sym_LT, + [71632] = 2, + ACTIONS(5577), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(6255), 37, - sym__block_close, + ACTIONS(5575), 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, @@ -135125,12 +135298,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__, @@ -135139,17 +135312,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, - [71530] = 2, - ACTIONS(6152), 3, + [71677] = 2, + ACTIONS(2062), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(6149), 37, + ACTIONS(2060), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -135187,25 +135362,25 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [71575] = 7, - ACTIONS(6235), 1, + [71722] = 7, + ACTIONS(6247), 1, anon_sym_BSLASH, - ACTIONS(6239), 1, + ACTIONS(6251), 1, sym__whitespace_ge_2, - ACTIONS(6241), 1, + ACTIONS(6253), 1, aux_sym__whitespace_token1, - ACTIONS(6261), 1, + ACTIONS(6278), 1, anon_sym_GT, - ACTIONS(6263), 3, + ACTIONS(6280), 3, sym_backslash_escape, sym__word_no_digit, sym__digits, - STATE(1644), 4, + STATE(1649), 4, sym__text_no_angle, sym__whitespace, sym__word, aux_sym_link_destination_repeat1, - ACTIONS(6231), 29, + ACTIONS(6243), 29, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -135235,17 +135410,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [71630] = 2, - ACTIONS(6267), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [71777] = 4, + ACTIONS(1750), 1, + sym__blank_line_start, + ACTIONS(6284), 1, aux_sym__whitespace_token1, - ACTIONS(6265), 37, + STATE(2521), 1, + sym__blank_line, + ACTIONS(6282), 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, @@ -135263,6 +135442,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__, @@ -135271,21 +135451,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, - [71675] = 4, - ACTIONS(1904), 1, - sym__blank_line_start, - ACTIONS(6271), 1, + [71826] = 3, + ACTIONS(6290), 1, + sym__last_token_punctuation, + ACTIONS(6288), 2, + anon_sym_RBRACK, aux_sym__whitespace_token1, - STATE(2397), 1, - sym__blank_line, - ACTIONS(6269), 37, + ACTIONS(6286), 37, sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -135311,7 +135487,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, @@ -135319,18 +135494,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, - [71724] = 3, - ACTIONS(6068), 1, + [71873] = 3, + ACTIONS(6294), 1, aux_sym__whitespace_token1, - ACTIONS(6273), 1, + ACTIONS(6296), 2, + sym__close_block, sym__last_token_punctuation, - ACTIONS(6066), 38, + ACTIONS(6292), 37, sym__block_close, - sym__fenced_code_block_end_backtick, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -135367,13 +135543,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [71771] = 3, - ACTIONS(6275), 1, - sym__last_token_whitespace, - ACTIONS(2842), 2, - anon_sym_RBRACK, + [71920] = 3, + ACTIONS(6302), 1, + sym__last_token_punctuation, + ACTIONS(6300), 2, + anon_sym_QMARK, aux_sym__whitespace_token1, - ACTIONS(2840), 37, + ACTIONS(6298), 37, sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -135395,10 +135571,54 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_QMARK_GT, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [71967] = 3, + ACTIONS(6308), 1, + sym__last_token_punctuation, + ACTIONS(6306), 2, + anon_sym_DASH, + aux_sym__whitespace_token1, + ACTIONS(6304), 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, @@ -135406,17 +135626,61 @@ 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, - [71818] = 2, - ACTIONS(6206), 3, + [72014] = 3, + ACTIONS(6314), 1, + sym__last_token_punctuation, + ACTIONS(6312), 2, + anon_sym_LT, + aux_sym__whitespace_token1, + ACTIONS(6310), 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_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, + aux_sym__html_block_1_token2, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [72061] = 2, + ACTIONS(5577), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(6204), 37, + ACTIONS(5575), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -135454,20 +135718,17 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [71863] = 3, - ACTIONS(2842), 1, + [72106] = 2, + ACTIONS(2086), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(6277), 1, - sym__last_token_whitespace, - ACTIONS(2840), 38, - sym__block_close, - sym__fenced_code_block_end_tilde, + ACTIONS(2084), 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, @@ -135485,7 +135746,49 @@ 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, + [72151] = 2, + ACTIONS(2066), 3, + anon_sym_AMP, anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(2064), 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__, @@ -135494,16 +135797,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, - [71910] = 2, - ACTIONS(6282), 3, + [72196] = 2, + ACTIONS(2074), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(6279), 37, + ACTIONS(2072), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -135541,7 +135847,7 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [71955] = 2, + [72241] = 2, ACTIONS(2034), 3, anon_sym_AMP, anon_sym_BSLASH, @@ -135584,12 +135890,55 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [72000] = 2, - ACTIONS(5566), 3, + [72286] = 2, + ACTIONS(2046), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(2044), 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, + [72331] = 2, + ACTIONS(2082), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(5564), 37, + ACTIONS(2080), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -135627,12 +135976,12 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [72045] = 2, - ACTIONS(5045), 3, + [72376] = 2, + ACTIONS(2094), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(5040), 37, + ACTIONS(2092), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -135670,12 +136019,12 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [72090] = 2, - ACTIONS(6287), 3, + [72421] = 2, + ACTIONS(2156), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(6285), 37, + ACTIONS(2154), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -135713,12 +136062,12 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [72135] = 2, - ACTIONS(6289), 3, + [72466] = 2, + ACTIONS(2038), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4668), 37, + ACTIONS(2036), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -135756,63 +136105,32 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [72180] = 2, - ACTIONS(2038), 3, + [72511] = 7, + ACTIONS(4090), 1, + anon_sym_LT, + ACTIONS(4345), 1, + anon_sym_LPAREN, + STATE(2093), 1, + sym_link_destination, + ACTIONS(4082), 2, anon_sym_AMP, anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(2036), 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, + STATE(1229), 2, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(4092), 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, - [72225] = 2, - ACTIONS(6294), 3, - anon_sym_AMP, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(6291), 37, + ACTIONS(4078), 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, @@ -135821,7 +136139,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, @@ -135835,22 +136152,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, + [72565] = 6, + ACTIONS(1628), 1, + aux_sym__newline_token1, + ACTIONS(4874), 1, sym__whitespace_ge_2, + ACTIONS(4876), 1, + aux_sym__whitespace_token1, + ACTIONS(6318), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [72270] = 4, - ACTIONS(1904), 1, - sym__blank_line_start, - ACTIONS(6299), 1, - aux_sym__whitespace_token1, - STATE(2422), 1, - sym__blank_line, - ACTIONS(6297), 37, - sym__block_close, + STATE(1723), 3, + sym__whitespace, + sym__word, + sym__newline, + ACTIONS(6316), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -135863,7 +136179,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, @@ -135883,114 +136198,25 @@ 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, - [72319] = 2, - ACTIONS(6301), 3, - anon_sym_AMP, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(4712), 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, + [72617] = 3, + ACTIONS(6322), 1, + sym__last_token_punctuation, + ACTIONS(6320), 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, - [72364] = 2, - ACTIONS(2068), 3, - anon_sym_AMP, - anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(2066), 37, + ACTIONS(5731), 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, - 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, - [72409] = 2, - ACTIONS(2156), 3, anon_sym_AMP, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(2154), 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, @@ -136001,6 +136227,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__, @@ -136009,31 +136236,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, + anon_sym_DASH_DASH_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [72454] = 2, - ACTIONS(2090), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [72663] = 2, + ACTIONS(6324), 2, + anon_sym_DASH, aux_sym__whitespace_token1, - ACTIONS(2088), 37, + ACTIONS(5392), 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, @@ -136044,6 +136269,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__, @@ -136052,21 +136278,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_DASH_DASH_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [72499] = 3, - ACTIONS(2842), 1, + [72707] = 2, + ACTIONS(6326), 2, + anon_sym_LT, aux_sym__whitespace_token1, - ACTIONS(6303), 1, - sym__last_token_whitespace, - ACTIONS(2840), 38, + ACTIONS(5415), 37, sym__block_close, - sym__fenced_code_block_end_backtick, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -136084,7 +136306,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, @@ -136099,21 +136320,24 @@ 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, - [72546] = 2, - ACTIONS(6307), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [72751] = 3, + ACTIONS(6072), 1, aux_sym__whitespace_token1, - ACTIONS(6305), 37, + ACTIONS(6328), 1, + sym__last_token_punctuation, + ACTIONS(6070), 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, @@ -136131,6 +136355,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__, @@ -136139,72 +136364,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, - [72591] = 7, - ACTIONS(6312), 1, - anon_sym_GT, - ACTIONS(6314), 1, - anon_sym_BSLASH, - ACTIONS(6320), 1, - sym__whitespace_ge_2, - ACTIONS(6323), 1, - aux_sym__whitespace_token1, - ACTIONS(6317), 3, - sym_backslash_escape, - sym__word_no_digit, - sym__digits, - STATE(1678), 4, - sym__text_no_angle, - sym__whitespace, - sym__word, - aux_sym_link_destination_repeat1, - ACTIONS(6309), 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, + [72797] = 3, + ACTIONS(6330), 1, + sym__last_token_whitespace, + ACTIONS(2842), 2, anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - [72646] = 2, - ACTIONS(2046), 3, - anon_sym_AMP, - anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(2044), 37, + ACTIONS(2840), 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, @@ -136222,7 +136398,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, @@ -136230,20 +136406,16 @@ 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, - [72691] = 3, - ACTIONS(6328), 1, + [72843] = 2, + ACTIONS(6332), 2, + anon_sym_QMARK, aux_sym__whitespace_token1, - ACTIONS(6330), 2, - sym__close_block, - sym__last_token_punctuation, - ACTIONS(6326), 37, + ACTIONS(5329), 37, sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -136265,7 +136437,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, @@ -136277,17 +136448,18 @@ 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, - [72738] = 3, - ACTIONS(6068), 1, - aux_sym__whitespace_token1, - ACTIONS(6332), 1, + [72887] = 3, + ACTIONS(6338), 1, sym__last_token_punctuation, - ACTIONS(6066), 37, - sym__code_span_close, + ACTIONS(6336), 2, + anon_sym_RBRACK, + aux_sym__whitespace_token1, + ACTIONS(6334), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -136312,7 +136484,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, @@ -136320,17 +136491,18 @@ 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, - [72784] = 3, - ACTIONS(6338), 1, - sym__last_token_punctuation, - ACTIONS(6336), 2, - anon_sym_DASH, + [72933] = 3, + ACTIONS(6072), 1, aux_sym__whitespace_token1, - ACTIONS(6334), 36, + ACTIONS(6340), 1, + sym__last_token_punctuation, + ACTIONS(6070), 37, + sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -136343,6 +136515,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, @@ -136362,16 +136535,16 @@ 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, - [72830] = 2, - ACTIONS(2959), 2, - anon_sym_QMARK, + [72979] = 3, + ACTIONS(2842), 1, aux_sym__whitespace_token1, - ACTIONS(2957), 37, + ACTIONS(6342), 1, + sym__last_token_whitespace, + ACTIONS(2840), 37, sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -136393,47 +136566,6 @@ static const uint16_t ts_small_parse_table[] = { 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, - anon_sym_QMARK_GT, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [72874] = 2, - ACTIONS(2959), 2, - anon_sym_DASH, - aux_sym__whitespace_token1, - ACTIONS(2957), 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, @@ -136446,18 +136578,16 @@ 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, - [72918] = 3, - ACTIONS(6340), 1, - sym__last_token_whitespace, - ACTIONS(2842), 2, + [73025] = 2, + ACTIONS(6344), 2, anon_sym_RBRACK, aux_sym__whitespace_token1, - ACTIONS(2840), 36, + ACTIONS(5296), 37, + sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -136494,12 +136624,12 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [72964] = 3, - ACTIONS(6299), 1, + [73069] = 3, + ACTIONS(6272), 1, aux_sym__whitespace_token1, - ACTIONS(6342), 1, + ACTIONS(6346), 1, sym__last_token_punctuation, - ACTIONS(6297), 37, + ACTIONS(6270), 37, sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -136537,56 +136667,12 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [73010] = 3, - ACTIONS(6344), 1, - sym__last_token_punctuation, - ACTIONS(6336), 2, - anon_sym_QMARK, + [73115] = 2, + ACTIONS(2942), 1, aux_sym__whitespace_token1, - ACTIONS(6334), 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_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_QMARK_GT, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [73056] = 3, - ACTIONS(2842), 1, - aux_sym__whitespace_token1, - ACTIONS(6346), 1, - sym__last_token_whitespace, - ACTIONS(2840), 37, - sym__code_span_close, + ACTIONS(2940), 38, + sym__block_close, + sym__fenced_code_block_end_backtick, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -136623,12 +136709,12 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [73102] = 2, - ACTIONS(6348), 3, + [73159] = 2, + ACTIONS(6350), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(5097), 36, + ACTIONS(6348), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -136665,12 +136751,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [73146] = 2, - ACTIONS(6287), 1, + [73203] = 3, + ACTIONS(6284), 1, aux_sym__whitespace_token1, - ACTIONS(6285), 38, + ACTIONS(6352), 1, + sym__last_token_punctuation, + ACTIONS(6282), 37, sym__block_close, - sym__fenced_code_block_end_backtick, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -136707,13 +136794,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [73190] = 3, - ACTIONS(6328), 1, + [73249] = 3, + ACTIONS(6354), 1, + sym__last_token_whitespace, + ACTIONS(2842), 2, + anon_sym_DASH, aux_sym__whitespace_token1, - ACTIONS(6330), 1, - sym__last_token_punctuation, - ACTIONS(6326), 37, - sym__block_close, + ACTIONS(2840), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -136726,7 +136813,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, @@ -136746,67 +136832,26 @@ 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, - [73236] = 5, - ACTIONS(6336), 1, - aux_sym__whitespace_token1, - ACTIONS(6338), 1, - sym__last_token_punctuation, - ACTIONS(6352), 1, - anon_sym_DASH, - ACTIONS(6334), 6, - anon_sym_GT, anon_sym_DASH_DASH_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - ACTIONS(6350), 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, + [73295] = 3, + ACTIONS(6356), 1, + sym__last_token_punctuation, + ACTIONS(6336), 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, - [73286] = 2, - ACTIONS(6356), 3, - anon_sym_AMP, - anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(6354), 36, + ACTIONS(6334), 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, @@ -136819,9 +136864,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__, @@ -136830,17 +136875,15 @@ 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, - [73330] = 2, - ACTIONS(2959), 1, + [73341] = 2, + ACTIONS(6276), 1, aux_sym__whitespace_token1, - ACTIONS(2957), 38, + ACTIONS(6274), 38, sym__block_close, sym__fenced_code_block_end_backtick, anon_sym_BANG, @@ -136879,26 +136922,26 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [73374] = 7, - ACTIONS(4086), 1, + [73385] = 7, + ACTIONS(4090), 1, anon_sym_LT, - ACTIONS(4367), 1, + ACTIONS(4345), 1, anon_sym_LPAREN, - STATE(2076), 1, + STATE(2074), 1, sym_link_destination, - ACTIONS(4078), 2, + ACTIONS(4082), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1267), 2, + STATE(1229), 2, sym__link_destination_parenthesis, sym__word, - ACTIONS(4088), 5, + ACTIONS(4092), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4074), 27, + ACTIONS(4078), 27, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -136926,20 +136969,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [73428] = 2, - ACTIONS(6287), 1, + [73439] = 2, + ACTIONS(6358), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(6285), 38, - sym__block_close, - sym__fenced_code_block_end_tilde, + ACTIONS(5043), 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, @@ -136955,7 +136996,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__, @@ -136964,15 +137004,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, - [73472] = 2, - ACTIONS(6358), 2, - anon_sym_RBRACK, + [73483] = 2, + ACTIONS(2942), 2, + anon_sym_QMARK, aux_sym__whitespace_token1, - ACTIONS(5007), 37, + ACTIONS(2940), 37, sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -136994,10 +137037,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, @@ -137005,18 +137048,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_RBRACK_RBRACK_GT, + anon_sym_QMARK_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [73516] = 3, + [73527] = 3, ACTIONS(6360), 1, - sym__last_token_punctuation, - ACTIONS(6336), 2, - anon_sym_RBRACK, + sym__last_token_whitespace, + ACTIONS(2842), 2, + anon_sym_QMARK, aux_sym__whitespace_token1, - ACTIONS(6334), 36, + ACTIONS(2840), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -137037,10 +137080,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, @@ -137048,18 +137091,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_RBRACK_RBRACK_GT, + anon_sym_QMARK_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [73562] = 3, - ACTIONS(6362), 1, - sym__last_token_whitespace, - ACTIONS(2842), 2, - anon_sym_DASH, + [73573] = 2, + ACTIONS(6276), 1, aux_sym__whitespace_token1, - ACTIONS(2840), 36, + ACTIONS(6274), 38, + sym__block_close, + sym__fenced_code_block_end_tilde, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -137072,6 +137114,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, @@ -137091,18 +137134,16 @@ 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, - [73608] = 3, - ACTIONS(6364), 1, - sym__last_token_whitespace, - ACTIONS(2842), 2, - anon_sym_QMARK, + [73617] = 2, + ACTIONS(2942), 2, + anon_sym_LT, aux_sym__whitespace_token1, - ACTIONS(2840), 36, + ACTIONS(2940), 37, + sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -137120,9 +137161,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, @@ -137134,40 +137175,50 @@ 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, - [73654] = 2, - ACTIONS(6366), 2, - anon_sym_DASH, - aux_sym__whitespace_token1, - ACTIONS(5205), 37, - sym__block_close, + [73661] = 7, + ACTIONS(4090), 1, + anon_sym_LT, + ACTIONS(4345), 1, + anon_sym_LPAREN, + STATE(2067), 1, + sym_link_destination, + ACTIONS(4082), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1229), 2, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(4092), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4078), 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__, @@ -137176,31 +137227,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, - [73698] = 7, - ACTIONS(4086), 1, + [73715] = 7, + ACTIONS(4090), 1, anon_sym_LT, - ACTIONS(4367), 1, + ACTIONS(4345), 1, anon_sym_LPAREN, - STATE(2090), 1, + STATE(2066), 1, sym_link_destination, - ACTIONS(4078), 2, + ACTIONS(4082), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1267), 2, + STATE(1229), 2, sym__link_destination_parenthesis, sym__word, - ACTIONS(4088), 5, + ACTIONS(4092), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4074), 27, + ACTIONS(4078), 27, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -137228,11 +137274,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [73752] = 2, - ACTIONS(6368), 2, + [73769] = 7, + ACTIONS(4090), 1, anon_sym_LT, + ACTIONS(4345), 1, + anon_sym_LPAREN, + STATE(2088), 1, + sym_link_destination, + ACTIONS(4082), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1229), 2, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(4092), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4078), 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, + [73823] = 7, + ACTIONS(4090), 1, + anon_sym_LT, + ACTIONS(4345), 1, + anon_sym_LPAREN, + STATE(2080), 1, + sym_link_destination, + ACTIONS(4082), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1229), 2, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(4092), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4078), 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, + [73877] = 3, + ACTIONS(6294), 1, aux_sym__whitespace_token1, - ACTIONS(5256), 37, + ACTIONS(6296), 1, + sym__last_token_punctuation, + ACTIONS(6292), 37, sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -137251,6 +137392,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, @@ -137265,17 +137407,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, - [73796] = 2, - ACTIONS(2959), 2, - anon_sym_LT, + [73923] = 3, + ACTIONS(2842), 1, aux_sym__whitespace_token1, - ACTIONS(2957), 37, - sym__block_close, + ACTIONS(6362), 1, + sym__last_token_whitespace, + ACTIONS(2840), 37, + sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -137293,6 +137435,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, @@ -137307,17 +137450,15 @@ 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, - [73840] = 3, - ACTIONS(6068), 1, + [73969] = 2, + ACTIONS(2942), 2, + anon_sym_DASH, aux_sym__whitespace_token1, - ACTIONS(6370), 1, - sym__last_token_punctuation, - ACTIONS(6066), 37, + ACTIONS(2940), 37, sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -137331,7 +137472,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, @@ -137351,16 +137491,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, - [73886] = 2, - ACTIONS(6372), 2, - anon_sym_QMARK, + [74013] = 2, + ACTIONS(2942), 1, aux_sym__whitespace_token1, - ACTIONS(5132), 37, + ACTIONS(2940), 38, sym__block_close, + sym__fenced_code_block_end_tilde, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -137381,6 +137522,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, @@ -137392,26 +137534,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, - [73930] = 5, - ACTIONS(6336), 1, + [74057] = 2, + ACTIONS(2942), 2, + anon_sym_RBRACK, aux_sym__whitespace_token1, - ACTIONS(6338), 1, - sym__last_token_punctuation, - ACTIONS(6376), 1, - anon_sym_DASH, - ACTIONS(6334), 6, - anon_sym_GT, - anon_sym_DASH_DASH_GT, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - ACTIONS(6374), 30, + ACTIONS(2940), 37, + sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -137424,17 +137556,18 @@ 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__, anon_sym_BQUOTE, @@ -137442,13 +137575,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [73980] = 3, - ACTIONS(2842), 1, + anon_sym_RBRACK_RBRACK_GT, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [74101] = 3, + ACTIONS(6318), 1, + sym__last_token_punctuation, + ACTIONS(6366), 2, + anon_sym_DASH, aux_sym__whitespace_token1, - ACTIONS(6378), 1, - sym__last_token_whitespace, - ACTIONS(2840), 37, - sym__block_close, + ACTIONS(6364), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -137461,7 +137599,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, @@ -137481,16 +137618,16 @@ 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, - [74026] = 2, - ACTIONS(2959), 2, - anon_sym_RBRACK, + [74147] = 2, + ACTIONS(2942), 1, aux_sym__whitespace_token1, - ACTIONS(2957), 37, - sym__block_close, + ACTIONS(2940), 37, + sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -137515,6 +137652,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, @@ -137522,37 +137660,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, - [74070] = 7, - ACTIONS(4086), 1, - anon_sym_LT, - ACTIONS(4367), 1, - anon_sym_LPAREN, - STATE(2097), 1, - sym_link_destination, - ACTIONS(4078), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1267), 2, - sym__link_destination_parenthesis, - sym__word, - ACTIONS(4088), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4074), 27, + [74190] = 2, + ACTIONS(6368), 1, + aux_sym__whitespace_token1, + ACTIONS(5965), 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, @@ -137561,11 +137686,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__, @@ -137574,21 +137701,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [74124] = 5, - ACTIONS(6336), 1, - aux_sym__whitespace_token1, - ACTIONS(6338), 1, - sym__last_token_punctuation, - ACTIONS(6382), 1, - anon_sym_DASH, - ACTIONS(6334), 6, - anon_sym_GT, - anon_sym_DASH_DASH_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - ACTIONS(6380), 30, + [74233] = 2, + ACTIONS(6370), 1, + aux_sym__whitespace_token1, + ACTIONS(5803), 37, + sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -137601,12 +137722,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_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, @@ -137619,32 +137742,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [74174] = 7, - ACTIONS(4086), 1, - anon_sym_LT, - ACTIONS(4367), 1, - anon_sym_LPAREN, - STATE(2086), 1, - sym_link_destination, - ACTIONS(4078), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1267), 2, - sym__link_destination_parenthesis, - sym__word, - ACTIONS(4088), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - ACTIONS(4074), 27, + aux_sym__newline_token1, + [74276] = 2, + ACTIONS(2034), 1, + aux_sym__whitespace_token1, + ACTIONS(2032), 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, @@ -137653,11 +137768,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__, @@ -137666,12 +137783,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [74228] = 2, - ACTIONS(2959), 1, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [74319] = 2, + ACTIONS(2086), 1, aux_sym__whitespace_token1, - ACTIONS(2957), 38, - sym__block_close, - sym__fenced_code_block_end_tilde, + ACTIONS(2084), 37, + sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -137708,32 +137828,20 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [74272] = 7, - ACTIONS(4086), 1, - anon_sym_LT, - ACTIONS(4367), 1, - anon_sym_LPAREN, - STATE(2099), 1, - sym_link_destination, - ACTIONS(4078), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1267), 2, - sym__link_destination_parenthesis, - sym__word, - ACTIONS(4088), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4074), 27, + [74362] = 2, + ACTIONS(2942), 2, + anon_sym_RBRACK, + aux_sym__whitespace_token1, + ACTIONS(2940), 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, @@ -137742,12 +137850,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_RBRACK, + anon_sym_BSLASH, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -137755,13 +137864,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [74326] = 3, - ACTIONS(6271), 1, + anon_sym_RBRACK_RBRACK_GT, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [74405] = 3, + ACTIONS(2842), 1, aux_sym__whitespace_token1, - ACTIONS(6384), 1, - sym__last_token_punctuation, - ACTIONS(6269), 37, - sym__block_close, + ACTIONS(6372), 1, + sym__last_token_whitespace, + ACTIONS(2840), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -137798,32 +137911,20 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [74372] = 7, - ACTIONS(4086), 1, - anon_sym_LT, - ACTIONS(4367), 1, - anon_sym_LPAREN, - STATE(2094), 1, - sym_link_destination, - ACTIONS(4078), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1267), 2, - sym__link_destination_parenthesis, - sym__word, - ACTIONS(4088), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4074), 27, + [74450] = 2, + ACTIONS(2046), 1, + aux_sym__whitespace_token1, + ACTIONS(2044), 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, @@ -137832,11 +137933,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__, @@ -137845,11 +137948,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [74426] = 2, - ACTIONS(6386), 1, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [74493] = 2, + ACTIONS(2942), 2, + anon_sym_QMARK, aux_sym__whitespace_token1, - ACTIONS(5587), 37, - sym__block_close, + ACTIONS(2940), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -137870,7 +137977,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, @@ -137882,15 +137988,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, - [74469] = 2, - ACTIONS(6287), 1, + [74536] = 2, + ACTIONS(2062), 1, aux_sym__whitespace_token1, - ACTIONS(6285), 37, - sym__block_close, + ACTIONS(2060), 37, + sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -137927,11 +138034,11 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [74512] = 2, - ACTIONS(6390), 1, + [74579] = 2, + ACTIONS(6320), 2, + anon_sym_DASH, aux_sym__whitespace_token1, - ACTIONS(6388), 37, - sym__block_close, + ACTIONS(5731), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -137944,7 +138051,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, @@ -137964,15 +138070,16 @@ 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, - [74555] = 2, - ACTIONS(2959), 2, - anon_sym_RBRACK, + [74622] = 2, + ACTIONS(6276), 1, aux_sym__whitespace_token1, - ACTIONS(2957), 36, + ACTIONS(6274), 37, + sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -137997,6 +138104,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, @@ -138004,17 +138112,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, - [74598] = 3, - ACTIONS(6394), 1, + [74665] = 2, + ACTIONS(2942), 1, aux_sym__whitespace_token1, - ACTIONS(6396), 1, - sym__last_token_punctuation, - ACTIONS(6392), 36, + ACTIONS(2940), 37, + sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -138051,11 +138157,11 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [74643] = 2, - ACTIONS(2959), 2, - anon_sym_DASH, + [74708] = 2, + ACTIONS(2074), 1, aux_sym__whitespace_token1, - ACTIONS(2957), 36, + ACTIONS(2072), 37, + sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -138068,6 +138174,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, @@ -138087,16 +138194,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, - [74686] = 2, - ACTIONS(2102), 1, + [74751] = 2, + ACTIONS(6374), 1, aux_sym__whitespace_token1, - ACTIONS(2100), 37, - sym__code_span_close, + ACTIONS(5928), 37, + sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -138133,10 +138239,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [74729] = 2, - ACTIONS(2138), 1, + [74794] = 2, + ACTIONS(2066), 1, aux_sym__whitespace_token1, - ACTIONS(2136), 37, + ACTIONS(2064), 37, sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -138174,12 +138280,11 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [74772] = 3, - ACTIONS(6400), 1, + [74837] = 2, + ACTIONS(6378), 1, aux_sym__whitespace_token1, - ACTIONS(6402), 1, - sym__last_token_punctuation, - ACTIONS(6398), 36, + ACTIONS(6376), 37, + sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -138216,10 +138321,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [74817] = 2, - ACTIONS(2074), 1, + [74880] = 2, + ACTIONS(2094), 1, aux_sym__whitespace_token1, - ACTIONS(2072), 37, + ACTIONS(2092), 37, sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -138257,12 +138362,11 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [74860] = 3, - ACTIONS(6406), 1, + [74923] = 2, + ACTIONS(6382), 1, aux_sym__whitespace_token1, - ACTIONS(6408), 1, - sym__last_token_punctuation, - ACTIONS(6404), 36, + ACTIONS(6380), 37, + sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -138299,52 +138403,12 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [74905] = 2, - ACTIONS(2959), 2, - anon_sym_QMARK, - aux_sym__whitespace_token1, - ACTIONS(2957), 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_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_QMARK_GT, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [74948] = 2, - ACTIONS(6287), 1, + [74966] = 3, + ACTIONS(6386), 1, aux_sym__whitespace_token1, - ACTIONS(6285), 37, - sym__code_span_close, + ACTIONS(6388), 1, + sym__last_token_punctuation, + ACTIONS(6384), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -138381,11 +138445,11 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [74991] = 2, - ACTIONS(2034), 1, + [75011] = 2, + ACTIONS(6392), 2, + anon_sym_DASH, aux_sym__whitespace_token1, - ACTIONS(2032), 37, - sym__code_span_close, + ACTIONS(6390), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -138398,7 +138462,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, @@ -138418,14 +138481,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, - [75034] = 2, - ACTIONS(2046), 1, + [75054] = 2, + ACTIONS(417), 1, aux_sym__whitespace_token1, - ACTIONS(2044), 37, + ACTIONS(415), 37, sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -138463,10 +138527,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [75077] = 2, - ACTIONS(417), 1, + [75097] = 2, + ACTIONS(3686), 1, aux_sym__whitespace_token1, - ACTIONS(415), 37, + ACTIONS(3684), 37, sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -138504,11 +138568,11 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [75120] = 2, - ACTIONS(6410), 2, + [75140] = 2, + ACTIONS(6394), 2, anon_sym_RBRACK, aux_sym__whitespace_token1, - ACTIONS(5496), 36, + ACTIONS(5535), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -138545,11 +138609,12 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [75163] = 2, - ACTIONS(6412), 1, + [75183] = 3, + ACTIONS(6398), 1, aux_sym__whitespace_token1, - ACTIONS(5826), 37, - sym__block_close, + ACTIONS(6400), 1, + sym__last_token_punctuation, + ACTIONS(6396), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -138586,10 +138651,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [75206] = 2, - ACTIONS(2959), 1, + [75228] = 2, + ACTIONS(6276), 1, aux_sym__whitespace_token1, - ACTIONS(2957), 37, + ACTIONS(6274), 37, sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -138627,10 +138692,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [75249] = 2, - ACTIONS(2146), 1, + [75271] = 2, + ACTIONS(2156), 1, aux_sym__whitespace_token1, - ACTIONS(2144), 37, + ACTIONS(2154), 37, sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -138668,10 +138733,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [75292] = 2, - ACTIONS(2060), 1, + [75314] = 2, + ACTIONS(2106), 1, aux_sym__whitespace_token1, - ACTIONS(2058), 37, + ACTIONS(2104), 37, sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -138709,10 +138774,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [75335] = 2, - ACTIONS(3877), 1, + [75357] = 2, + ACTIONS(2038), 1, aux_sym__whitespace_token1, - ACTIONS(3875), 37, + ACTIONS(2036), 37, sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -138750,53 +138815,11 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [75378] = 2, - ACTIONS(6416), 1, - aux_sym__whitespace_token1, - ACTIONS(6414), 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, + [75400] = 2, + ACTIONS(2942), 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_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, - [75421] = 3, - ACTIONS(2842), 1, aux_sym__whitespace_token1, - ACTIONS(6418), 1, - sym__last_token_whitespace, - ACTIONS(2840), 36, + ACTIONS(2940), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -138809,7 +138832,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, @@ -138829,15 +138851,16 @@ 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, - [75466] = 2, - ACTIONS(6410), 2, + [75443] = 2, + ACTIONS(6394), 2, anon_sym_QMARK, aux_sym__whitespace_token1, - ACTIONS(5496), 36, + ACTIONS(5535), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -138874,51 +138897,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [75509] = 2, - ACTIONS(2959), 1, + [75486] = 2, + ACTIONS(2082), 1, aux_sym__whitespace_token1, - ACTIONS(2957), 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, - [75552] = 2, - ACTIONS(2156), 1, - aux_sym__whitespace_token1, - ACTIONS(2154), 37, + ACTIONS(2080), 37, sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -138956,11 +138938,12 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [75595] = 2, - ACTIONS(2090), 1, + [75529] = 3, + ACTIONS(6404), 1, aux_sym__whitespace_token1, - ACTIONS(2088), 37, - sym__code_span_close, + ACTIONS(6406), 1, + sym__last_token_punctuation, + ACTIONS(6402), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -138997,11 +138980,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [75638] = 2, - ACTIONS(6420), 1, + [75574] = 2, + ACTIONS(2082), 1, aux_sym__whitespace_token1, - ACTIONS(5787), 37, - sym__block_close, + ACTIONS(2080), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -139038,11 +139020,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [75681] = 2, - ACTIONS(2068), 1, + [75616] = 3, + ACTIONS(6408), 1, + sym__last_token_whitespace, + ACTIONS(2842), 2, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(2066), 37, - sym__code_span_close, + ACTIONS(2840), 34, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -139060,13 +139044,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__, @@ -139075,15 +139057,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, - [75724] = 2, - ACTIONS(2038), 1, + [75660] = 2, + ACTIONS(2066), 1, aux_sym__whitespace_token1, - ACTIONS(2036), 37, - sym__code_span_close, + ACTIONS(2064), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -139120,11 +139101,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [75767] = 2, - ACTIONS(6410), 2, - anon_sym_DASH, + [75702] = 2, + ACTIONS(417), 1, aux_sym__whitespace_token1, - ACTIONS(5496), 36, + ACTIONS(415), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -139137,6 +139117,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, @@ -139156,15 +139137,14 @@ 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, - [75810] = 2, - ACTIONS(3877), 1, + [75744] = 2, + ACTIONS(2074), 1, aux_sym__whitespace_token1, - ACTIONS(3875), 36, + ACTIONS(2072), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -139201,10 +139181,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [75852] = 2, - ACTIONS(2038), 1, + [75786] = 2, + ACTIONS(2094), 1, aux_sym__whitespace_token1, - ACTIONS(2036), 36, + ACTIONS(2092), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -139241,10 +139221,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [75894] = 2, - ACTIONS(2102), 1, + [75828] = 2, + ACTIONS(6410), 1, aux_sym__whitespace_token1, - ACTIONS(2100), 36, + ACTIONS(5854), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -139281,10 +139261,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [75936] = 2, - ACTIONS(417), 1, + [75870] = 2, + ACTIONS(2046), 1, aux_sym__whitespace_token1, - ACTIONS(415), 36, + ACTIONS(2044), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -139321,51 +139301,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [75978] = 3, - ACTIONS(6426), 1, - sym__last_token_punctuation, - ACTIONS(6424), 2, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(6422), 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, - [76022] = 2, - ACTIONS(2138), 1, + [75912] = 2, + ACTIONS(3686), 1, aux_sym__whitespace_token1, - ACTIONS(2136), 36, + ACTIONS(3684), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -139402,10 +139341,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [76064] = 2, - ACTIONS(6428), 1, + [75954] = 2, + ACTIONS(2086), 1, aux_sym__whitespace_token1, - ACTIONS(5893), 36, + ACTIONS(2084), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -139442,10 +139381,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [76106] = 2, - ACTIONS(2959), 1, + [75996] = 2, + ACTIONS(2062), 1, aux_sym__whitespace_token1, - ACTIONS(2957), 36, + ACTIONS(2060), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -139482,10 +139421,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [76148] = 2, - ACTIONS(6430), 1, + [76038] = 3, + ACTIONS(6416), 1, + sym__last_token_punctuation, + ACTIONS(6414), 2, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(5872), 36, + ACTIONS(6412), 34, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -139503,13 +139445,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__, @@ -139518,14 +139458,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, - [76190] = 2, - ACTIONS(6432), 1, + [76082] = 2, + ACTIONS(2034), 1, aux_sym__whitespace_token1, - ACTIONS(6172), 36, + ACTIONS(2032), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -139562,10 +139502,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [76232] = 2, - ACTIONS(2146), 1, + [76124] = 2, + ACTIONS(6418), 1, aux_sym__whitespace_token1, - ACTIONS(2144), 36, + ACTIONS(5873), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -139602,10 +139542,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [76274] = 2, - ACTIONS(2090), 1, + [76166] = 2, + ACTIONS(6420), 1, aux_sym__whitespace_token1, - ACTIONS(2088), 36, + ACTIONS(6079), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -139642,10 +139582,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [76316] = 2, - ACTIONS(2046), 1, + [76208] = 2, + ACTIONS(2156), 1, aux_sym__whitespace_token1, - ACTIONS(2044), 36, + ACTIONS(2154), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -139682,10 +139622,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [76358] = 2, - ACTIONS(2068), 1, + [76250] = 2, + ACTIONS(2942), 1, aux_sym__whitespace_token1, - ACTIONS(2066), 36, + ACTIONS(2940), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -139722,10 +139662,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [76400] = 2, - ACTIONS(2034), 1, + [76292] = 2, + ACTIONS(2038), 1, aux_sym__whitespace_token1, - ACTIONS(2032), 36, + ACTIONS(2036), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -139762,10 +139702,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [76442] = 2, - ACTIONS(2060), 1, + [76334] = 2, + ACTIONS(2106), 1, aux_sym__whitespace_token1, - ACTIONS(2058), 36, + ACTIONS(2104), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -139802,13 +139742,11 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [76484] = 3, - ACTIONS(6434), 1, - sym__last_token_whitespace, - ACTIONS(2842), 2, + [76376] = 2, + ACTIONS(2942), 2, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(2840), 34, + ACTIONS(2940), 34, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -139843,10 +139781,11 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [76528] = 2, - ACTIONS(2074), 1, + [76417] = 2, + ACTIONS(6424), 2, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(2072), 36, + ACTIONS(6422), 34, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -139864,13 +139803,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__, @@ -139879,14 +139816,12 @@ 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, - [76570] = 2, - ACTIONS(2156), 1, - aux_sym__whitespace_token1, - ACTIONS(2154), 36, + [76458] = 1, + ACTIONS(6426), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -139906,7 +139841,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, @@ -139919,15 +139853,8 @@ 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, - [76612] = 2, - ACTIONS(2959), 2, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(2957), 34, + [76492] = 1, + ACTIONS(6428), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -139945,11 +139872,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__, @@ -139958,15 +139886,8 @@ 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, - [76653] = 2, - ACTIONS(6438), 2, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(6436), 34, + [76526] = 1, + ACTIONS(6430), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -139984,11 +139905,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__, @@ -139997,20 +139919,16 @@ 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, - [76694] = 4, - ACTIONS(697), 1, + [76560] = 4, + ACTIONS(557), 1, aux_sym__whitespace_token1, - STATE(1486), 1, + STATE(1794), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5909), 3, + ACTIONS(6432), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(695), 8, + ACTIONS(555), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -140019,16 +139937,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [76716] = 4, - ACTIONS(976), 1, + [76582] = 4, + ACTIONS(633), 1, aux_sym__whitespace_token1, - STATE(1798), 1, + STATE(1784), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6440), 3, + ACTIONS(6434), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(974), 8, + ACTIONS(631), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -140037,16 +139955,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [76738] = 4, - ACTIONS(953), 1, + [76604] = 4, + ACTIONS(828), 1, aux_sym__whitespace_token1, - STATE(1784), 1, + STATE(1342), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6442), 3, + ACTIONS(5903), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(951), 8, + ACTIONS(826), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -140055,16 +139973,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [76760] = 4, - ACTIONS(935), 1, + [76626] = 4, + ACTIONS(828), 1, aux_sym__whitespace_token1, - STATE(1486), 1, + STATE(1785), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5909), 3, + ACTIONS(6436), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(933), 8, + ACTIONS(826), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -140073,16 +139991,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [76782] = 4, - ACTIONS(935), 1, + [76648] = 4, + ACTIONS(852), 1, aux_sym__whitespace_token1, - STATE(1785), 1, + STATE(1342), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6444), 3, + ACTIONS(5903), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(933), 8, + ACTIONS(850), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -140091,16 +140009,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [76804] = 4, - ACTIONS(872), 1, + [76670] = 4, + ACTIONS(852), 1, aux_sym__whitespace_token1, - STATE(1486), 1, + STATE(1786), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5909), 3, + ACTIONS(6438), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(870), 8, + ACTIONS(850), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -140109,16 +140027,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [76826] = 4, - ACTIONS(872), 1, + [76692] = 4, + ACTIONS(893), 1, aux_sym__whitespace_token1, - STATE(1786), 1, + STATE(1342), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6446), 3, + ACTIONS(5903), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(870), 8, + ACTIONS(891), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -140127,16 +140045,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [76848] = 4, - ACTIONS(864), 1, + [76714] = 4, + ACTIONS(893), 1, aux_sym__whitespace_token1, - STATE(1486), 1, + STATE(1787), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5909), 3, + ACTIONS(6440), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(862), 8, + ACTIONS(891), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -140145,16 +140063,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [76870] = 4, - ACTIONS(864), 1, + [76736] = 4, + ACTIONS(876), 1, aux_sym__whitespace_token1, - STATE(1787), 1, + STATE(1342), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6448), 3, + ACTIONS(5903), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(862), 8, + ACTIONS(874), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -140163,16 +140081,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [76892] = 4, - ACTIONS(823), 1, + [76758] = 4, + ACTIONS(876), 1, aux_sym__whitespace_token1, - STATE(1486), 1, + STATE(1788), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5909), 3, + ACTIONS(6442), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(821), 8, + ACTIONS(874), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -140181,16 +140099,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [76914] = 4, - ACTIONS(823), 1, + [76780] = 4, + ACTIONS(838), 1, aux_sym__whitespace_token1, - STATE(1788), 1, + STATE(1342), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6450), 3, + ACTIONS(5903), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(821), 8, + ACTIONS(836), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -140199,16 +140117,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [76936] = 4, - ACTIONS(801), 1, + [76802] = 4, + ACTIONS(838), 1, aux_sym__whitespace_token1, - STATE(1486), 1, + STATE(1789), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5909), 3, + ACTIONS(6444), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(799), 8, + ACTIONS(836), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -140217,16 +140135,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [76958] = 4, - ACTIONS(801), 1, + [76824] = 4, + ACTIONS(832), 1, aux_sym__whitespace_token1, - STATE(1789), 1, + STATE(1342), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6452), 3, + ACTIONS(5903), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(799), 8, + ACTIONS(830), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -140235,16 +140153,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [76980] = 4, - ACTIONS(572), 1, + [76846] = 4, + ACTIONS(832), 1, aux_sym__whitespace_token1, - STATE(1486), 1, + STATE(1790), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5909), 3, + ACTIONS(6446), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(570), 8, + ACTIONS(830), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -140253,16 +140171,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [77002] = 4, - ACTIONS(576), 1, + [76868] = 4, + ACTIONS(782), 1, aux_sym__whitespace_token1, - STATE(1486), 1, + STATE(1342), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5909), 3, + ACTIONS(5903), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(574), 8, + ACTIONS(780), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -140271,16 +140189,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [77024] = 4, - ACTIONS(614), 1, + [76890] = 4, + ACTIONS(862), 1, aux_sym__whitespace_token1, - STATE(1486), 1, + STATE(1342), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5909), 3, + ACTIONS(5903), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(612), 8, + ACTIONS(860), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -140289,16 +140207,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [77046] = 4, - ACTIONS(618), 1, + [76912] = 4, + ACTIONS(866), 1, aux_sym__whitespace_token1, - STATE(1486), 1, + STATE(1342), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5909), 3, + ACTIONS(5903), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(616), 8, + ACTIONS(864), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -140307,16 +140225,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [77068] = 4, - ACTIONS(622), 1, + [76934] = 4, + ACTIONS(872), 1, aux_sym__whitespace_token1, - STATE(1486), 1, + STATE(1342), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5909), 3, + ACTIONS(5903), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(620), 8, + ACTIONS(870), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -140325,16 +140243,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [77090] = 4, - ACTIONS(679), 1, + [76956] = 4, + ACTIONS(882), 1, aux_sym__whitespace_token1, - STATE(1486), 1, + STATE(1342), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5909), 3, + ACTIONS(5903), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(677), 8, + ACTIONS(880), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -140343,16 +140261,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [77112] = 4, - ACTIONS(683), 1, + [76978] = 4, + ACTIONS(889), 1, aux_sym__whitespace_token1, - STATE(1486), 1, + STATE(1342), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5909), 3, + ACTIONS(5903), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(681), 8, + ACTIONS(887), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -140361,16 +140279,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [77134] = 4, - ACTIONS(683), 1, + [77000] = 4, + ACTIONS(899), 1, aux_sym__whitespace_token1, - STATE(1792), 1, + STATE(1342), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6454), 3, + ACTIONS(5903), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(681), 8, + ACTIONS(897), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -140379,16 +140297,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [77156] = 4, - ACTIONS(813), 1, + [77022] = 4, + ACTIONS(899), 1, aux_sym__whitespace_token1, STATE(1793), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6456), 3, + ACTIONS(6448), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(811), 8, + ACTIONS(897), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -140397,16 +140315,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [77178] = 4, - ACTIONS(813), 1, + [77044] = 4, + ACTIONS(633), 1, aux_sym__whitespace_token1, - STATE(1486), 1, + STATE(1342), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5909), 3, + ACTIONS(5903), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(811), 8, + ACTIONS(631), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -140415,16 +140333,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [77200] = 4, - ACTIONS(789), 1, + [77066] = 4, + ACTIONS(557), 1, aux_sym__whitespace_token1, - STATE(1486), 1, + STATE(1342), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5909), 3, + ACTIONS(5903), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(787), 8, + ACTIONS(555), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -140433,16 +140351,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [77222] = 4, - ACTIONS(789), 1, + [77088] = 4, + ACTIONS(1063), 1, aux_sym__whitespace_token1, - STATE(1795), 1, + STATE(1342), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6458), 3, + ACTIONS(5903), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(787), 8, + ACTIONS(1061), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -140451,16 +140369,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [77244] = 4, - ACTIONS(765), 1, + [77110] = 4, + ACTIONS(1063), 1, aux_sym__whitespace_token1, - STATE(1486), 1, + STATE(1796), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5909), 3, + ACTIONS(6450), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(763), 8, + ACTIONS(1061), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -140469,16 +140387,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [77266] = 4, - ACTIONS(765), 1, + [77132] = 4, + ACTIONS(967), 1, aux_sym__whitespace_token1, - STATE(1770), 1, + STATE(1342), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6460), 3, + ACTIONS(5903), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(763), 8, + ACTIONS(965), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -140487,16 +140405,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [77288] = 4, - ACTIONS(953), 1, + [77154] = 4, + ACTIONS(967), 1, aux_sym__whitespace_token1, - STATE(1486), 1, + STATE(1798), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5909), 3, + ACTIONS(6452), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(951), 8, + ACTIONS(965), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -140505,16 +140423,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [77310] = 4, - ACTIONS(986), 1, + [77176] = 4, + ACTIONS(943), 1, aux_sym__whitespace_token1, - STATE(1486), 1, + STATE(1342), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5909), 3, + ACTIONS(5903), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(984), 8, + ACTIONS(941), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -140523,34 +140441,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [77332] = 4, - ACTIONS(986), 1, + [77198] = 6, + ACTIONS(4695), 1, + sym__whitespace_ge_2, + ACTIONS(4698), 1, aux_sym__whitespace_token1, - STATE(1808), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6462), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(984), 8, + ACTIONS(4701), 1, + aux_sym__newline_token1, + STATE(2131), 1, + sym__newline, + STATE(1799), 3, + sym__soft_line_break, + sym__whitespace, + aux_sym_inline_link_repeat1, + ACTIONS(4691), 6, 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, - [77354] = 4, - ACTIONS(1000), 1, + [77224] = 4, + ACTIONS(792), 1, aux_sym__whitespace_token1, - STATE(1783), 1, + STATE(1782), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6464), 3, + ACTIONS(6454), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(998), 8, + ACTIONS(790), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -140559,16 +140479,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [77376] = 4, - ACTIONS(1107), 1, + [77246] = 4, + ACTIONS(798), 1, aux_sym__whitespace_token1, - STATE(1797), 1, + STATE(1780), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6466), 3, + ACTIONS(6456), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1105), 8, + ACTIONS(796), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -140577,16 +140497,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [77398] = 4, - ACTIONS(1101), 1, + [77268] = 4, + ACTIONS(804), 1, aux_sym__whitespace_token1, - STATE(1773), 1, + STATE(1778), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6468), 3, + ACTIONS(6458), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1099), 8, + ACTIONS(802), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -140595,16 +140515,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [77420] = 4, - ACTIONS(1095), 1, + [77290] = 4, + ACTIONS(810), 1, aux_sym__whitespace_token1, - STATE(1775), 1, + STATE(1776), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6470), 3, + ACTIONS(6460), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1093), 8, + ACTIONS(808), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -140613,16 +140533,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [77442] = 4, - ACTIONS(1089), 1, + [77312] = 4, + ACTIONS(816), 1, aux_sym__whitespace_token1, - STATE(1777), 1, + STATE(1774), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6472), 3, + ACTIONS(6462), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1087), 8, + ACTIONS(814), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -140631,16 +140551,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [77464] = 4, - ACTIONS(1083), 1, + [77334] = 4, + ACTIONS(822), 1, aux_sym__whitespace_token1, - STATE(1779), 1, + STATE(1772), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6474), 3, + ACTIONS(6464), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1081), 8, + ACTIONS(820), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -140649,16 +140569,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [77486] = 4, - ACTIONS(1077), 1, + [77356] = 4, + ACTIONS(856), 1, aux_sym__whitespace_token1, - STATE(1781), 1, + STATE(1792), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6476), 3, + ACTIONS(6466), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1075), 8, + ACTIONS(854), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -140667,36 +140587,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [77508] = 6, - ACTIONS(4784), 1, - sym__whitespace_ge_2, - ACTIONS(4787), 1, + [77378] = 4, + ACTIONS(856), 1, aux_sym__whitespace_token1, - ACTIONS(4790), 1, - aux_sym__newline_token1, - STATE(2131), 1, - sym__newline, - STATE(1807), 3, - sym__soft_line_break, - sym__whitespace, - aux_sym_inline_link_repeat1, - ACTIONS(4780), 6, + STATE(1342), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5903), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(854), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ, anon_sym_GT, - [77534] = 4, - ACTIONS(1000), 1, + sym__whitespace_ge_2, + aux_sym__newline_token1, + [77400] = 4, + ACTIONS(961), 1, aux_sym__whitespace_token1, - STATE(1486), 1, + STATE(1807), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5909), 3, + ACTIONS(6468), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(998), 8, + ACTIONS(959), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -140705,286 +140623,305 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [77556] = 10, + [77422] = 10, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6478), 1, + ACTIONS(6470), 1, anon_sym_DQUOTE, - ACTIONS(6480), 1, + ACTIONS(6472), 1, anon_sym_SQUOTE, - ACTIONS(6482), 1, + ACTIONS(6474), 1, anon_sym_LPAREN, - ACTIONS(6484), 1, + ACTIONS(6476), 1, anon_sym_RPAREN, - STATE(1965), 1, + STATE(1991), 1, sym_link_title, STATE(2131), 1, sym__newline, - STATE(1807), 3, + STATE(1799), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [77589] = 10, + [77455] = 10, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6478), 1, + ACTIONS(6470), 1, anon_sym_DQUOTE, - ACTIONS(6480), 1, + ACTIONS(6472), 1, anon_sym_SQUOTE, - ACTIONS(6482), 1, + ACTIONS(6474), 1, anon_sym_LPAREN, - ACTIONS(6486), 1, + ACTIONS(6478), 1, anon_sym_RPAREN, - STATE(1960), 1, + STATE(1970), 1, sym_link_title, STATE(2131), 1, sym__newline, - STATE(1807), 3, + STATE(1799), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [77622] = 10, + [77488] = 10, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6478), 1, + ACTIONS(6470), 1, anon_sym_DQUOTE, - ACTIONS(6480), 1, + ACTIONS(6472), 1, anon_sym_SQUOTE, - ACTIONS(6482), 1, + ACTIONS(6474), 1, anon_sym_LPAREN, - ACTIONS(6488), 1, + ACTIONS(6480), 1, anon_sym_RPAREN, - STATE(2001), 1, + STATE(1979), 1, sym_link_title, STATE(2131), 1, sym__newline, - STATE(1807), 3, + STATE(1799), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [77655] = 10, + [77521] = 10, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6478), 1, + ACTIONS(6470), 1, anon_sym_DQUOTE, - ACTIONS(6480), 1, + ACTIONS(6472), 1, anon_sym_SQUOTE, - ACTIONS(6482), 1, + ACTIONS(6474), 1, anon_sym_LPAREN, - ACTIONS(6490), 1, + ACTIONS(6482), 1, anon_sym_RPAREN, - STATE(1952), 1, + STATE(1990), 1, sym_link_title, STATE(2131), 1, sym__newline, - STATE(1807), 3, + STATE(1799), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [77688] = 10, + [77554] = 10, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6478), 1, + ACTIONS(6470), 1, anon_sym_DQUOTE, - ACTIONS(6480), 1, + ACTIONS(6472), 1, anon_sym_SQUOTE, - ACTIONS(6482), 1, + ACTIONS(6474), 1, anon_sym_LPAREN, - ACTIONS(6492), 1, + ACTIONS(6484), 1, anon_sym_RPAREN, - STATE(1994), 1, + STATE(1972), 1, sym_link_title, STATE(2131), 1, sym__newline, - STATE(1807), 3, + STATE(1799), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [77721] = 10, + [77587] = 10, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6478), 1, + ACTIONS(6470), 1, anon_sym_DQUOTE, - ACTIONS(6480), 1, + ACTIONS(6472), 1, anon_sym_SQUOTE, - ACTIONS(6482), 1, + ACTIONS(6474), 1, anon_sym_LPAREN, - ACTIONS(6494), 1, + ACTIONS(6486), 1, anon_sym_RPAREN, - STATE(2017), 1, + STATE(1954), 1, sym_link_title, STATE(2131), 1, sym__newline, - STATE(1807), 3, + STATE(1799), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [77754] = 10, + [77620] = 10, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6478), 1, + ACTIONS(6470), 1, anon_sym_DQUOTE, - ACTIONS(6480), 1, + ACTIONS(6472), 1, anon_sym_SQUOTE, - ACTIONS(6482), 1, + ACTIONS(6474), 1, anon_sym_LPAREN, - ACTIONS(6496), 1, + ACTIONS(6488), 1, anon_sym_RPAREN, - STATE(1991), 1, + STATE(1975), 1, sym_link_title, STATE(2131), 1, sym__newline, - STATE(1807), 3, + STATE(1799), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [77787] = 10, + [77653] = 10, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6478), 1, + ACTIONS(6470), 1, anon_sym_DQUOTE, - ACTIONS(6480), 1, + ACTIONS(6472), 1, anon_sym_SQUOTE, - ACTIONS(6482), 1, + ACTIONS(6474), 1, anon_sym_LPAREN, - ACTIONS(6498), 1, + ACTIONS(6490), 1, anon_sym_RPAREN, - STATE(1995), 1, + STATE(1948), 1, sym_link_title, STATE(2131), 1, sym__newline, - STATE(1807), 3, + STATE(1799), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [77820] = 10, + [77686] = 10, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6478), 1, + ACTIONS(6470), 1, anon_sym_DQUOTE, - ACTIONS(6480), 1, + ACTIONS(6472), 1, anon_sym_SQUOTE, - ACTIONS(6482), 1, + ACTIONS(6474), 1, anon_sym_LPAREN, - ACTIONS(6500), 1, + ACTIONS(6492), 1, anon_sym_RPAREN, - STATE(1981), 1, + STATE(2023), 1, sym_link_title, STATE(2131), 1, sym__newline, - STATE(1807), 3, + STATE(1799), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [77853] = 10, + [77719] = 10, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6478), 1, + ACTIONS(6470), 1, anon_sym_DQUOTE, - ACTIONS(6480), 1, + ACTIONS(6472), 1, anon_sym_SQUOTE, - ACTIONS(6482), 1, + ACTIONS(6474), 1, anon_sym_LPAREN, - ACTIONS(6502), 1, + ACTIONS(6494), 1, anon_sym_RPAREN, - STATE(2000), 1, + STATE(2028), 1, sym_link_title, STATE(2131), 1, sym__newline, - STATE(1807), 3, + STATE(1799), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [77886] = 10, + [77752] = 10, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6478), 1, + ACTIONS(6470), 1, anon_sym_DQUOTE, - ACTIONS(6480), 1, + ACTIONS(6472), 1, anon_sym_SQUOTE, - ACTIONS(6482), 1, + ACTIONS(6474), 1, anon_sym_LPAREN, - ACTIONS(6504), 1, + ACTIONS(6496), 1, anon_sym_RPAREN, - STATE(1998), 1, + STATE(1988), 1, sym_link_title, STATE(2131), 1, sym__newline, - STATE(1807), 3, + STATE(1799), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [77919] = 10, + [77785] = 10, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6478), 1, + ACTIONS(6470), 1, anon_sym_DQUOTE, - ACTIONS(6480), 1, + ACTIONS(6472), 1, anon_sym_SQUOTE, - ACTIONS(6482), 1, + ACTIONS(6474), 1, anon_sym_LPAREN, - ACTIONS(6506), 1, + ACTIONS(6498), 1, anon_sym_RPAREN, - STATE(1971), 1, + STATE(1998), 1, sym_link_title, STATE(2131), 1, sym__newline, - STATE(1807), 3, + STATE(1799), 3, + sym__soft_line_break, + sym__whitespace, + aux_sym_inline_link_repeat1, + [77818] = 7, + ACTIONS(6502), 1, + sym__whitespace_ge_2, + ACTIONS(6505), 1, + aux_sym__whitespace_token1, + ACTIONS(6508), 1, + aux_sym__newline_token1, + STATE(2127), 1, + sym__newline, + ACTIONS(6500), 2, + anon_sym_SLASH, + anon_sym_GT, + STATE(1821), 2, + sym__attribute, + aux_sym__open_tag_repeat1, + STATE(2000), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [77952] = 2, - ACTIONS(2138), 1, + [77844] = 2, + ACTIONS(2034), 1, aux_sym__whitespace_token1, - ACTIONS(2136), 10, + ACTIONS(2032), 10, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -140995,35 +140932,34 @@ static const uint16_t ts_small_parse_table[] = { sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [77968] = 9, + [77860] = 8, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(6508), 1, - anon_sym_DQUOTE, - ACTIONS(6510), 1, - anon_sym_SQUOTE, - ACTIONS(6512), 1, - aux_sym__attribute_value_token1, - ACTIONS(6514), 1, + ACTIONS(6511), 1, + anon_sym_SLASH, + ACTIONS(6513), 1, + anon_sym_GT, + ACTIONS(6515), 1, sym__whitespace_ge_2, - ACTIONS(6516), 1, + ACTIONS(6517), 1, aux_sym__whitespace_token1, - STATE(2072), 1, - sym__attribute_value, - STATE(2126), 1, + STATE(2127), 1, sym__newline, - STATE(1909), 3, + STATE(1821), 2, + sym__attribute, + aux_sym__open_tag_repeat1, + STATE(1925), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [77998] = 5, + [77888] = 5, ACTIONS(379), 1, aux_sym__whitespace_token1, - ACTIONS(6518), 1, + ACTIONS(6519), 1, sym__line_ending, - STATE(1850), 1, + STATE(1934), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6520), 3, + ACTIONS(6521), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, @@ -141033,10 +140969,10 @@ static const uint16_t ts_small_parse_table[] = { sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [78020] = 2, - ACTIONS(2074), 1, + [77910] = 2, + ACTIONS(2086), 1, aux_sym__whitespace_token1, - ACTIONS(2072), 10, + ACTIONS(2084), 10, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -141047,44 +140983,30 @@ static const uint16_t ts_small_parse_table[] = { sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [78036] = 8, + [77926] = 8, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(6522), 1, - anon_sym_SLASH, - ACTIONS(6524), 1, - anon_sym_GT, - ACTIONS(6526), 1, + ACTIONS(6515), 1, sym__whitespace_ge_2, - ACTIONS(6528), 1, + ACTIONS(6517), 1, aux_sym__whitespace_token1, - STATE(2129), 1, + ACTIONS(6523), 1, + anon_sym_SLASH, + ACTIONS(6525), 1, + anon_sym_GT, + STATE(2127), 1, sym__newline, - STATE(1840), 2, + STATE(1839), 2, sym__attribute, aux_sym__open_tag_repeat1, - STATE(1934), 3, + STATE(1920), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [78064] = 2, - ACTIONS(2046), 1, - aux_sym__whitespace_token1, - ACTIONS(2044), 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, - [78080] = 2, - ACTIONS(2090), 1, + [77954] = 2, + ACTIONS(2062), 1, aux_sym__whitespace_token1, - ACTIONS(2088), 10, + ACTIONS(2060), 10, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -141095,145 +141017,83 @@ static const uint16_t ts_small_parse_table[] = { sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [78096] = 9, + [77970] = 9, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(6508), 1, + ACTIONS(6527), 1, anon_sym_DQUOTE, - ACTIONS(6510), 1, + ACTIONS(6529), 1, anon_sym_SQUOTE, - ACTIONS(6514), 1, - sym__whitespace_ge_2, - ACTIONS(6516), 1, - aux_sym__whitespace_token1, - ACTIONS(6530), 1, + ACTIONS(6531), 1, aux_sym__attribute_value_token1, - STATE(2077), 1, - sym__attribute_value, - STATE(2126), 1, - sym__newline, - STATE(1909), 3, - sym__soft_line_break, - sym__whitespace, - aux_sym_inline_link_repeat1, - [78126] = 8, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(6526), 1, + ACTIONS(6533), 1, sym__whitespace_ge_2, - ACTIONS(6528), 1, + ACTIONS(6535), 1, aux_sym__whitespace_token1, - ACTIONS(6532), 1, - anon_sym_SLASH, - ACTIONS(6534), 1, - anon_sym_GT, - STATE(2129), 1, + STATE(2089), 1, + sym__attribute_value, + STATE(2130), 1, sym__newline, - STATE(1834), 2, - sym__attribute, - aux_sym__open_tag_repeat1, - STATE(1893), 3, + STATE(1879), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [78154] = 5, - ACTIONS(379), 1, + [78000] = 2, + ACTIONS(2066), 1, aux_sym__whitespace_token1, - ACTIONS(6536), 1, - sym__line_ending, - STATE(1923), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6538), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(377), 5, - sym__no_indented_chunk, + ACTIONS(2064), 10, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, - sym__whitespace_ge_2, - [78176] = 8, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(6526), 1, - sym__whitespace_ge_2, - ACTIONS(6528), 1, - aux_sym__whitespace_token1, - ACTIONS(6540), 1, + anon_sym_RPAREN, anon_sym_SLASH, - ACTIONS(6542), 1, + anon_sym_EQ, anon_sym_GT, - STATE(2129), 1, - sym__newline, - STATE(1836), 2, - sym__attribute, - aux_sym__open_tag_repeat1, - STATE(1852), 3, - sym__soft_line_break, - sym__whitespace, - aux_sym_inline_link_repeat1, - [78204] = 8, + sym__attribute_name, + sym__whitespace_ge_2, + aux_sym__newline_token1, + [78016] = 9, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(6526), 1, + ACTIONS(6527), 1, + anon_sym_DQUOTE, + ACTIONS(6529), 1, + anon_sym_SQUOTE, + ACTIONS(6531), 1, + aux_sym__attribute_value_token1, + ACTIONS(6533), 1, sym__whitespace_ge_2, - ACTIONS(6528), 1, + ACTIONS(6535), 1, aux_sym__whitespace_token1, - ACTIONS(6544), 1, - anon_sym_SLASH, - ACTIONS(6546), 1, - anon_sym_GT, - STATE(2129), 1, + STATE(2089), 1, + sym__attribute_value, + STATE(2130), 1, sym__newline, - STATE(1825), 2, - sym__attribute, - aux_sym__open_tag_repeat1, - STATE(1886), 3, + STATE(1843), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [78232] = 5, + [78046] = 5, ACTIONS(379), 1, aux_sym__whitespace_token1, - ACTIONS(6548), 1, + ACTIONS(6537), 1, sym__line_ending, - STATE(1921), 1, + STATE(1897), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6550), 3, + ACTIONS(6539), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, ACTIONS(377), 5, + sym__no_indented_chunk, anon_sym_DQUOTE, anon_sym_SQUOTE, - aux_sym__attribute_value_token1, - sym__whitespace_ge_2, - aux_sym__newline_token1, - [78254] = 8, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(6526), 1, + anon_sym_LPAREN, sym__whitespace_ge_2, - ACTIONS(6528), 1, - aux_sym__whitespace_token1, - ACTIONS(6552), 1, - anon_sym_SLASH, - ACTIONS(6554), 1, - anon_sym_GT, - STATE(2129), 1, - sym__newline, - STATE(1840), 2, - sym__attribute, - aux_sym__open_tag_repeat1, - STATE(1932), 3, - sym__soft_line_break, - sym__whitespace, - aux_sym_inline_link_repeat1, - [78282] = 2, - ACTIONS(3877), 1, + [78068] = 2, + ACTIONS(417), 1, aux_sym__whitespace_token1, - ACTIONS(3875), 10, + ACTIONS(415), 10, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -141244,51 +141104,10 @@ static const uint16_t ts_small_parse_table[] = { sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [78298] = 8, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(6526), 1, - sym__whitespace_ge_2, - ACTIONS(6528), 1, - aux_sym__whitespace_token1, - ACTIONS(6556), 1, - anon_sym_SLASH, - ACTIONS(6558), 1, - anon_sym_GT, - STATE(2129), 1, - sym__newline, - STATE(1840), 2, - sym__attribute, - aux_sym__open_tag_repeat1, - STATE(1848), 3, - sym__soft_line_break, - sym__whitespace, - aux_sym_inline_link_repeat1, - [78326] = 9, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(6508), 1, - anon_sym_DQUOTE, - ACTIONS(6510), 1, - anon_sym_SQUOTE, - ACTIONS(6514), 1, - sym__whitespace_ge_2, - ACTIONS(6516), 1, - aux_sym__whitespace_token1, - ACTIONS(6530), 1, - aux_sym__attribute_value_token1, - STATE(2077), 1, - sym__attribute_value, - STATE(2126), 1, - sym__newline, - STATE(1822), 3, - sym__soft_line_break, - sym__whitespace, - aux_sym_inline_link_repeat1, - [78356] = 2, - ACTIONS(2146), 1, + [78084] = 2, + ACTIONS(3686), 1, aux_sym__whitespace_token1, - ACTIONS(2144), 10, + ACTIONS(3684), 10, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -141299,10 +141118,10 @@ static const uint16_t ts_small_parse_table[] = { sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [78372] = 2, - ACTIONS(2102), 1, + [78100] = 2, + ACTIONS(2106), 1, aux_sym__whitespace_token1, - ACTIONS(2100), 10, + ACTIONS(2104), 10, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -141313,29 +141132,27 @@ static const uint16_t ts_small_parse_table[] = { sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [78388] = 7, - ACTIONS(6562), 1, - sym__whitespace_ge_2, - ACTIONS(6565), 1, + [78116] = 5, + ACTIONS(379), 1, aux_sym__whitespace_token1, - ACTIONS(6568), 1, + ACTIONS(6541), 1, + sym__line_ending, + STATE(1908), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6543), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(377), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, + sym__whitespace_ge_2, aux_sym__newline_token1, - STATE(2129), 1, - sym__newline, - ACTIONS(6560), 2, - anon_sym_SLASH, - anon_sym_GT, - STATE(1840), 2, - sym__attribute, - aux_sym__open_tag_repeat1, - STATE(2015), 3, - sym__soft_line_break, - sym__whitespace, - aux_sym_inline_link_repeat1, - [78414] = 2, - ACTIONS(2038), 1, + [78138] = 2, + ACTIONS(2074), 1, aux_sym__whitespace_token1, - ACTIONS(2036), 10, + ACTIONS(2072), 10, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -141346,10 +141163,10 @@ static const uint16_t ts_small_parse_table[] = { sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [78430] = 2, - ACTIONS(2034), 1, + [78154] = 2, + ACTIONS(2082), 1, aux_sym__whitespace_token1, - ACTIONS(2032), 10, + ACTIONS(2080), 10, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -141360,10 +141177,10 @@ static const uint16_t ts_small_parse_table[] = { sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [78446] = 2, - ACTIONS(2156), 1, + [78170] = 2, + ACTIONS(2038), 1, aux_sym__whitespace_token1, - ACTIONS(2154), 10, + ACTIONS(2036), 10, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -141374,10 +141191,30 @@ static const uint16_t ts_small_parse_table[] = { sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [78462] = 2, - ACTIONS(417), 1, + [78186] = 8, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(6515), 1, + sym__whitespace_ge_2, + ACTIONS(6517), 1, aux_sym__whitespace_token1, - ACTIONS(415), 10, + ACTIONS(6545), 1, + anon_sym_SLASH, + ACTIONS(6547), 1, + anon_sym_GT, + STATE(2127), 1, + sym__newline, + STATE(1821), 2, + sym__attribute, + aux_sym__open_tag_repeat1, + STATE(1941), 3, + sym__soft_line_break, + sym__whitespace, + aux_sym_inline_link_repeat1, + [78214] = 2, + ACTIONS(2156), 1, + aux_sym__whitespace_token1, + ACTIONS(2154), 10, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -141388,31 +141225,31 @@ static const uint16_t ts_small_parse_table[] = { sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [78478] = 9, + [78230] = 9, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(6508), 1, + ACTIONS(6527), 1, anon_sym_DQUOTE, - ACTIONS(6510), 1, + ACTIONS(6529), 1, anon_sym_SQUOTE, - ACTIONS(6514), 1, + ACTIONS(6533), 1, sym__whitespace_ge_2, - ACTIONS(6516), 1, + ACTIONS(6535), 1, aux_sym__whitespace_token1, - ACTIONS(6571), 1, + ACTIONS(6549), 1, aux_sym__attribute_value_token1, - STATE(2085), 1, + STATE(2096), 1, sym__attribute_value, - STATE(2126), 1, + STATE(2130), 1, sym__newline, STATE(1828), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [78508] = 2, - ACTIONS(2060), 1, + [78260] = 2, + ACTIONS(2094), 1, aux_sym__whitespace_token1, - ACTIONS(2058), 10, + ACTIONS(2092), 10, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -141423,1169 +141260,1216 @@ static const uint16_t ts_small_parse_table[] = { sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [78524] = 2, - ACTIONS(2068), 1, - aux_sym__whitespace_token1, - ACTIONS(2066), 10, + [78276] = 9, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(6527), 1, anon_sym_DQUOTE, + ACTIONS(6529), 1, anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SLASH, - anon_sym_EQ, - anon_sym_GT, - sym__attribute_name, + ACTIONS(6533), 1, sym__whitespace_ge_2, - aux_sym__newline_token1, - [78540] = 8, + ACTIONS(6535), 1, + aux_sym__whitespace_token1, + ACTIONS(6551), 1, + aux_sym__attribute_value_token1, + STATE(2072), 1, + sym__attribute_value, + STATE(2130), 1, + sym__newline, + STATE(1879), 3, + sym__soft_line_break, + sym__whitespace, + aux_sym_inline_link_repeat1, + [78306] = 8, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(6526), 1, + ACTIONS(6515), 1, sym__whitespace_ge_2, - ACTIONS(6528), 1, + ACTIONS(6517), 1, aux_sym__whitespace_token1, - ACTIONS(6573), 1, + ACTIONS(6553), 1, anon_sym_SLASH, - ACTIONS(6575), 1, + ACTIONS(6555), 1, anon_sym_GT, - ACTIONS(6577), 1, - sym__attribute_name, - STATE(2129), 1, + STATE(2127), 1, sym__newline, - STATE(1937), 3, + STATE(1821), 2, + sym__attribute, + aux_sym__open_tag_repeat1, + STATE(1881), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [78567] = 4, - ACTIONS(765), 1, - aux_sym__whitespace_token1, - STATE(1910), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6579), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(763), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, - sym__whitespace_ge_2, + [78334] = 8, + ACTIONS(41), 1, aux_sym__newline_token1, - [78586] = 4, - ACTIONS(391), 1, + ACTIONS(6515), 1, + sym__whitespace_ge_2, + ACTIONS(6517), 1, aux_sym__whitespace_token1, - STATE(1940), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6581), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(389), 5, + ACTIONS(6557), 1, anon_sym_SLASH, + ACTIONS(6559), 1, anon_sym_GT, - sym__attribute_name, - sym__whitespace_ge_2, - aux_sym__newline_token1, - [78605] = 4, - ACTIONS(679), 1, + STATE(2127), 1, + sym__newline, + STATE(1823), 2, + sym__attribute, + aux_sym__open_tag_repeat1, + STATE(1932), 3, + sym__soft_line_break, + sym__whitespace, + aux_sym_inline_link_repeat1, + [78362] = 2, + ACTIONS(2046), 1, aux_sym__whitespace_token1, - STATE(1919), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6583), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(677), 5, + ACTIONS(2044), 10, anon_sym_DQUOTE, anon_sym_SQUOTE, - aux_sym__attribute_value_token1, + 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, - [78624] = 8, + [78378] = 8, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(6526), 1, + ACTIONS(6515), 1, sym__whitespace_ge_2, - ACTIONS(6528), 1, + ACTIONS(6517), 1, aux_sym__whitespace_token1, - ACTIONS(6556), 1, + ACTIONS(6561), 1, anon_sym_SLASH, - ACTIONS(6558), 1, + ACTIONS(6563), 1, anon_sym_GT, - ACTIONS(6577), 1, - sym__attribute_name, - STATE(2129), 1, + STATE(2127), 1, sym__newline, - STATE(1937), 3, + STATE(1844), 2, + sym__attribute, + aux_sym__open_tag_repeat1, + STATE(1848), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [78651] = 4, - ACTIONS(622), 1, - aux_sym__whitespace_token1, - STATE(1919), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6583), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(620), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, - sym__whitespace_ge_2, + [78406] = 8, + ACTIONS(41), 1, aux_sym__newline_token1, - [78670] = 4, - ACTIONS(618), 1, - aux_sym__whitespace_token1, - STATE(1919), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6583), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(616), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, + ACTIONS(6515), 1, sym__whitespace_ge_2, - aux_sym__newline_token1, - [78689] = 4, - ACTIONS(614), 1, + ACTIONS(6517), 1, aux_sym__whitespace_token1, - STATE(1919), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6583), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(612), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, - sym__whitespace_ge_2, - aux_sym__newline_token1, - [78708] = 4, - ACTIONS(576), 1, + ACTIONS(6553), 1, + anon_sym_SLASH, + ACTIONS(6555), 1, + anon_sym_GT, + ACTIONS(6565), 1, + sym__attribute_name, + STATE(2127), 1, + sym__newline, + STATE(1936), 3, + sym__soft_line_break, + sym__whitespace, + aux_sym_inline_link_repeat1, + [78433] = 4, + ACTIONS(899), 1, aux_sym__whitespace_token1, - STATE(1919), 1, + STATE(1900), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6583), 3, + ACTIONS(6567), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(574), 5, + ACTIONS(897), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [78727] = 4, - ACTIONS(572), 1, + [78452] = 4, + ACTIONS(882), 1, aux_sym__whitespace_token1, - STATE(1919), 1, + STATE(1900), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6583), 3, + ACTIONS(6567), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(570), 5, + ACTIONS(880), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [78746] = 4, - ACTIONS(801), 1, + [78471] = 4, + ACTIONS(557), 1, aux_sym__whitespace_token1, - STATE(1911), 1, + STATE(1916), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6585), 3, + ACTIONS(6569), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(799), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, + ACTIONS(555), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [78765] = 4, - ACTIONS(801), 1, + [78490] = 4, + ACTIONS(872), 1, aux_sym__whitespace_token1, - STATE(1919), 1, + STATE(1900), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6583), 3, + ACTIONS(6567), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(799), 5, + ACTIONS(870), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [78784] = 4, - ACTIONS(986), 1, + [78509] = 4, + ACTIONS(899), 1, aux_sym__whitespace_token1, - STATE(1940), 1, + STATE(1931), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6581), 3, + ACTIONS(6571), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(984), 5, + ACTIONS(897), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [78803] = 4, - ACTIONS(986), 1, + [78528] = 4, + ACTIONS(899), 1, aux_sym__whitespace_token1, - STATE(1880), 1, + STATE(1933), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6587), 3, + ACTIONS(6573), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(984), 5, + ACTIONS(897), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [78822] = 4, - ACTIONS(1107), 1, + [78547] = 4, + ACTIONS(889), 1, aux_sym__whitespace_token1, - STATE(1883), 1, + STATE(1933), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6589), 3, + ACTIONS(6573), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1105), 5, + ACTIONS(887), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [78841] = 4, - ACTIONS(1101), 1, + [78566] = 4, + ACTIONS(866), 1, aux_sym__whitespace_token1, - STATE(1894), 1, + STATE(1900), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6591), 3, + ACTIONS(6567), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1099), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, + ACTIONS(864), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [78860] = 4, - ACTIONS(823), 1, + [78585] = 4, + ACTIONS(862), 1, aux_sym__whitespace_token1, - STATE(1851), 1, + STATE(1900), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6593), 3, + ACTIONS(6567), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(821), 5, + ACTIONS(860), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [78879] = 4, - ACTIONS(1095), 1, + [78604] = 4, + ACTIONS(882), 1, aux_sym__whitespace_token1, - STATE(1896), 1, + STATE(1933), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6595), 3, + ACTIONS(6573), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1093), 5, + ACTIONS(880), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [78898] = 4, - ACTIONS(823), 1, + [78623] = 4, + ACTIONS(782), 1, aux_sym__whitespace_token1, - STATE(1919), 1, + STATE(1900), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6583), 3, + ACTIONS(6567), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(821), 5, + ACTIONS(780), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [78917] = 4, - ACTIONS(1089), 1, + [78642] = 4, + ACTIONS(872), 1, aux_sym__whitespace_token1, - STATE(1900), 1, + STATE(1933), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6597), 3, + ACTIONS(6573), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1087), 5, + ACTIONS(870), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [78936] = 4, - ACTIONS(864), 1, + [78661] = 4, + ACTIONS(866), 1, aux_sym__whitespace_token1, - STATE(1853), 1, + STATE(1933), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6599), 3, + ACTIONS(6573), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(862), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, + ACTIONS(864), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [78955] = 4, - ACTIONS(864), 1, + [78680] = 4, + ACTIONS(832), 1, aux_sym__whitespace_token1, - STATE(1919), 1, + STATE(1849), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6583), 3, + ACTIONS(6575), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(862), 5, + ACTIONS(830), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [78974] = 4, - ACTIONS(872), 1, + [78699] = 4, + ACTIONS(832), 1, aux_sym__whitespace_token1, - STATE(1854), 1, + STATE(1900), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6601), 3, + ACTIONS(6567), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(870), 5, + ACTIONS(830), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [78993] = 4, - ACTIONS(872), 1, + [78718] = 4, + ACTIONS(862), 1, aux_sym__whitespace_token1, - STATE(1919), 1, + STATE(1933), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6583), 3, + ACTIONS(6573), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(870), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, + ACTIONS(860), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [79012] = 4, - ACTIONS(935), 1, + [78737] = 4, + ACTIONS(838), 1, aux_sym__whitespace_token1, - STATE(1855), 1, + STATE(1898), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6603), 3, + ACTIONS(6577), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(933), 5, + ACTIONS(836), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [79031] = 4, - ACTIONS(935), 1, + [78756] = 4, + ACTIONS(782), 1, aux_sym__whitespace_token1, - STATE(1919), 1, + STATE(1933), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6583), 3, + ACTIONS(6573), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(933), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, + ACTIONS(780), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [79050] = 4, - ACTIONS(1083), 1, + [78775] = 4, + ACTIONS(832), 1, aux_sym__whitespace_token1, - STATE(1905), 1, + STATE(1854), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6605), 3, + ACTIONS(6579), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1081), 5, + ACTIONS(830), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [79069] = 4, - ACTIONS(1077), 1, + [78794] = 4, + ACTIONS(832), 1, aux_sym__whitespace_token1, - STATE(1943), 1, + STATE(1933), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6607), 3, + ACTIONS(6573), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1075), 5, + ACTIONS(830), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [79088] = 4, - ACTIONS(953), 1, + [78813] = 4, + ACTIONS(838), 1, aux_sym__whitespace_token1, - STATE(1856), 1, + STATE(1855), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6609), 3, + ACTIONS(6581), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(951), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, + ACTIONS(836), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [79107] = 4, - ACTIONS(953), 1, + [78832] = 4, + ACTIONS(838), 1, aux_sym__whitespace_token1, - STATE(1919), 1, + STATE(1933), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6583), 3, + ACTIONS(6573), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(951), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, + ACTIONS(836), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [79126] = 4, - ACTIONS(1000), 1, + [78851] = 4, + ACTIONS(876), 1, aux_sym__whitespace_token1, - STATE(1857), 1, + STATE(1858), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6611), 3, + ACTIONS(6583), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(998), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, + ACTIONS(874), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [79145] = 4, - ACTIONS(1000), 1, + [78870] = 4, + ACTIONS(876), 1, aux_sym__whitespace_token1, - STATE(1919), 1, + STATE(1933), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6583), 3, + ACTIONS(6573), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(998), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, + ACTIONS(874), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [79164] = 4, - ACTIONS(1000), 1, + [78889] = 4, + ACTIONS(893), 1, aux_sym__whitespace_token1, - STATE(1940), 1, + STATE(1860), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6581), 3, + ACTIONS(6585), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(998), 5, + ACTIONS(891), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [79183] = 4, - ACTIONS(683), 1, + [78908] = 4, + ACTIONS(893), 1, aux_sym__whitespace_token1, - STATE(1898), 1, + STATE(1933), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6613), 3, + ACTIONS(6573), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(681), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, + ACTIONS(891), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [79202] = 4, - ACTIONS(1000), 1, + [78927] = 4, + ACTIONS(852), 1, aux_sym__whitespace_token1, - STATE(1901), 1, + STATE(1861), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6615), 3, + ACTIONS(6587), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(998), 5, + ACTIONS(850), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [79221] = 4, - ACTIONS(953), 1, + [78946] = 4, + ACTIONS(852), 1, aux_sym__whitespace_token1, - STATE(1940), 1, + STATE(1933), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6581), 3, + ACTIONS(6573), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(951), 5, + ACTIONS(850), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [79240] = 4, - ACTIONS(1077), 1, + [78965] = 4, + ACTIONS(838), 1, aux_sym__whitespace_token1, - STATE(1859), 1, + STATE(1900), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6617), 3, + ACTIONS(6567), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1075), 5, + ACTIONS(836), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [79259] = 4, - ACTIONS(953), 1, + [78984] = 4, + ACTIONS(876), 1, aux_sym__whitespace_token1, - STATE(1935), 1, + STATE(1850), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6619), 3, + ACTIONS(6589), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(951), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, + ACTIONS(874), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [79278] = 8, - ACTIONS(41), 1, + [79003] = 6, + ACTIONS(4701), 1, aux_sym__newline_token1, - ACTIONS(6522), 1, - anon_sym_SLASH, - ACTIONS(6524), 1, - anon_sym_GT, - ACTIONS(6526), 1, + ACTIONS(6591), 1, sym__whitespace_ge_2, - ACTIONS(6528), 1, + ACTIONS(6594), 1, aux_sym__whitespace_token1, - ACTIONS(6577), 1, - sym__attribute_name, - STATE(2129), 1, + STATE(2130), 1, sym__newline, - STATE(1937), 3, + ACTIONS(4691), 3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, + STATE(1879), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [79305] = 4, - ACTIONS(1083), 1, + [79026] = 4, + ACTIONS(876), 1, aux_sym__whitespace_token1, - STATE(1866), 1, + STATE(1900), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6621), 3, + ACTIONS(6567), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1081), 5, + ACTIONS(874), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [79324] = 4, - ACTIONS(1089), 1, + [79045] = 8, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(6515), 1, + sym__whitespace_ge_2, + ACTIONS(6517), 1, aux_sym__whitespace_token1, - STATE(1869), 1, + ACTIONS(6565), 1, + sym__attribute_name, + ACTIONS(6597), 1, + anon_sym_SLASH, + ACTIONS(6599), 1, + anon_sym_GT, + STATE(2127), 1, + sym__newline, + STATE(1936), 3, + sym__soft_line_break, + sym__whitespace, + aux_sym_inline_link_repeat1, + [79072] = 4, + ACTIONS(828), 1, + aux_sym__whitespace_token1, + STATE(1933), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6623), 3, + ACTIONS(6573), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1087), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, + ACTIONS(826), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, + sym__whitespace_ge_2, + aux_sym__newline_token1, + [79091] = 4, + ACTIONS(633), 1, + aux_sym__whitespace_token1, + STATE(1866), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6601), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(631), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [79343] = 4, - ACTIONS(1095), 1, + [79110] = 4, + ACTIONS(893), 1, aux_sym__whitespace_token1, - STATE(1871), 1, + STATE(1852), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6625), 3, + ACTIONS(6603), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1093), 5, + ACTIONS(891), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [79362] = 4, - ACTIONS(1101), 1, + [79129] = 4, + ACTIONS(633), 1, + aux_sym__whitespace_token1, + STATE(1933), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6573), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(631), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, + sym__whitespace_ge_2, + aux_sym__newline_token1, + [79148] = 4, + ACTIONS(893), 1, aux_sym__whitespace_token1, - STATE(1873), 1, + STATE(1900), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6627), 3, + ACTIONS(6567), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1099), 5, + ACTIONS(891), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [79381] = 4, - ACTIONS(1107), 1, + [79167] = 4, + ACTIONS(852), 1, aux_sym__whitespace_token1, - STATE(1877), 1, + STATE(1856), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6629), 3, + ACTIONS(6605), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(1105), 5, + ACTIONS(850), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [79400] = 4, - ACTIONS(813), 1, + [79186] = 4, + ACTIONS(852), 1, aux_sym__whitespace_token1, - STATE(1903), 1, + STATE(1900), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6631), 3, + ACTIONS(6567), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(811), 5, + ACTIONS(850), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [79419] = 8, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(6526), 1, - sym__whitespace_ge_2, - ACTIONS(6528), 1, - aux_sym__whitespace_token1, - ACTIONS(6552), 1, - anon_sym_SLASH, - ACTIONS(6554), 1, - anon_sym_GT, - ACTIONS(6577), 1, - sym__attribute_name, - STATE(2129), 1, - sym__newline, - STATE(1937), 3, - sym__soft_line_break, - sym__whitespace, - aux_sym_inline_link_repeat1, - [79446] = 4, - ACTIONS(935), 1, + [79205] = 4, + ACTIONS(792), 1, aux_sym__whitespace_token1, - STATE(1940), 1, + STATE(1868), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6581), 3, + ACTIONS(6607), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(933), 5, + ACTIONS(790), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [79465] = 4, - ACTIONS(935), 1, + [79224] = 4, + ACTIONS(828), 1, aux_sym__whitespace_token1, - STATE(1933), 1, + STATE(1857), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6633), 3, + ACTIONS(6609), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(933), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, + ACTIONS(826), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [79484] = 4, - ACTIONS(872), 1, + [79243] = 4, + ACTIONS(798), 1, aux_sym__whitespace_token1, - STATE(1940), 1, + STATE(1870), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6581), 3, + ACTIONS(6611), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(870), 5, + ACTIONS(796), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [79503] = 4, - ACTIONS(872), 1, + [79262] = 4, + ACTIONS(804), 1, aux_sym__whitespace_token1, - STATE(1931), 1, + STATE(1872), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6635), 3, + ACTIONS(6613), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(870), 5, + ACTIONS(802), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [79522] = 4, - ACTIONS(813), 1, + [79281] = 4, + ACTIONS(828), 1, aux_sym__whitespace_token1, - STATE(1919), 1, + STATE(1900), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6583), 3, + ACTIONS(6567), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(811), 5, + ACTIONS(826), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [79541] = 4, - ACTIONS(986), 1, + [79300] = 4, + ACTIONS(810), 1, aux_sym__whitespace_token1, - STATE(1879), 1, + STATE(1874), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6637), 3, + ACTIONS(6615), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(984), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, + ACTIONS(808), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [79560] = 4, - ACTIONS(864), 1, + [79319] = 4, + ACTIONS(816), 1, aux_sym__whitespace_token1, - STATE(1940), 1, + STATE(1876), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6581), 3, + ACTIONS(6617), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(862), 5, + ACTIONS(814), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [79579] = 4, - ACTIONS(572), 1, + [79338] = 4, + ACTIONS(822), 1, aux_sym__whitespace_token1, - STATE(1940), 1, + STATE(1882), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6581), 3, + ACTIONS(6619), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(570), 5, + ACTIONS(820), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [79598] = 4, - ACTIONS(864), 1, + [79357] = 4, + ACTIONS(391), 1, aux_sym__whitespace_token1, - STATE(1930), 1, + STATE(1937), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6639), 3, + ACTIONS(6621), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(862), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, + ACTIONS(389), 5, + sym__no_indented_chunk, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_LPAREN, sym__whitespace_ge_2, - aux_sym__newline_token1, - [79617] = 4, - ACTIONS(789), 1, + [79376] = 4, + ACTIONS(889), 1, aux_sym__whitespace_token1, - STATE(1919), 1, + STATE(1900), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6583), 3, + ACTIONS(6567), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(787), 5, + ACTIONS(887), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [79636] = 4, - ACTIONS(409), 1, + [79395] = 4, + ACTIONS(399), 1, aux_sym__whitespace_token1, - STATE(1919), 1, + STATE(1900), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6583), 3, + ACTIONS(6567), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(407), 5, + ACTIONS(397), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [79655] = 4, - ACTIONS(823), 1, + [79414] = 4, + ACTIONS(405), 1, aux_sym__whitespace_token1, - STATE(1940), 1, + STATE(1900), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6581), 3, + ACTIONS(6623), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(821), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, + ACTIONS(403), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [79674] = 4, - ACTIONS(976), 1, + [79433] = 4, + ACTIONS(899), 1, aux_sym__whitespace_token1, - STATE(1913), 1, + STATE(1914), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6641), 3, + ACTIONS(6626), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(974), 5, + ACTIONS(897), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [79693] = 4, - ACTIONS(823), 1, + [79452] = 4, + ACTIONS(633), 1, aux_sym__whitespace_token1, - STATE(1929), 1, + STATE(1859), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6643), 3, + ACTIONS(6628), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(821), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, + ACTIONS(631), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [79712] = 4, - ACTIONS(789), 1, + [79471] = 4, + ACTIONS(633), 1, aux_sym__whitespace_token1, - STATE(1918), 1, + STATE(1900), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6645), 3, + ACTIONS(6567), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(787), 5, + ACTIONS(631), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [79731] = 6, - ACTIONS(4790), 1, - aux_sym__newline_token1, - ACTIONS(6647), 1, + [79490] = 4, + ACTIONS(792), 1, + aux_sym__whitespace_token1, + STATE(1863), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6630), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(790), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, sym__whitespace_ge_2, - ACTIONS(6650), 1, + aux_sym__newline_token1, + [79509] = 4, + ACTIONS(798), 1, aux_sym__whitespace_token1, - STATE(2126), 1, - sym__newline, - ACTIONS(4780), 3, + STATE(1877), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6632), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(796), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, - STATE(1909), 3, - sym__soft_line_break, - sym__whitespace, - aux_sym_inline_link_repeat1, - [79754] = 4, - ACTIONS(697), 1, + sym__whitespace_ge_2, + aux_sym__newline_token1, + [79528] = 4, + ACTIONS(856), 1, aux_sym__whitespace_token1, - STATE(1940), 1, + STATE(1885), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6581), 3, + ACTIONS(6634), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(695), 5, + ACTIONS(854), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [79773] = 4, - ACTIONS(683), 1, + [79547] = 4, + ACTIONS(804), 1, aux_sym__whitespace_token1, - STATE(1919), 1, + STATE(1880), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6583), 3, + ACTIONS(6636), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(681), 5, + ACTIONS(802), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [79792] = 4, - ACTIONS(765), 1, + [79566] = 4, + ACTIONS(391), 1, aux_sym__whitespace_token1, - STATE(1940), 1, + STATE(1900), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6581), 3, + ACTIONS(6567), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(763), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, + ACTIONS(389), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [79811] = 4, - ACTIONS(986), 1, + [79585] = 4, + ACTIONS(391), 1, aux_sym__whitespace_token1, - STATE(1919), 1, + STATE(1899), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6583), 3, + ACTIONS(6638), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(984), 5, + ACTIONS(389), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [79830] = 4, - ACTIONS(789), 1, + [79604] = 4, + ACTIONS(810), 1, aux_sym__whitespace_token1, - STATE(1912), 1, + STATE(1886), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6653), 3, + ACTIONS(6640), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(787), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, + ACTIONS(808), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [79849] = 4, - ACTIONS(789), 1, + [79623] = 4, + ACTIONS(856), 1, aux_sym__whitespace_token1, - STATE(1940), 1, + STATE(1933), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6581), 3, + ACTIONS(6573), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(787), 5, + ACTIONS(854), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [79868] = 4, - ACTIONS(813), 1, + [79642] = 4, + ACTIONS(816), 1, aux_sym__whitespace_token1, - STATE(1940), 1, + STATE(1888), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6581), 3, + ACTIONS(6642), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(811), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, + ACTIONS(814), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [79887] = 4, - ACTIONS(813), 1, + [79661] = 4, + ACTIONS(557), 1, aux_sym__whitespace_token1, STATE(1915), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6655), 3, + ACTIONS(6644), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(811), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, + ACTIONS(555), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [79906] = 4, - ACTIONS(765), 1, + [79680] = 4, + ACTIONS(557), 1, aux_sym__whitespace_token1, - STATE(1919), 1, + STATE(1900), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6583), 3, + ACTIONS(6567), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(763), 5, + ACTIONS(555), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [79925] = 4, - ACTIONS(399), 1, + [79699] = 4, + ACTIONS(1063), 1, aux_sym__whitespace_token1, - STATE(1919), 1, + STATE(1900), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6657), 3, + ACTIONS(6567), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(397), 5, + ACTIONS(1061), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [79944] = 4, - ACTIONS(683), 1, + [79718] = 4, + ACTIONS(1063), 1, aux_sym__whitespace_token1, - STATE(1916), 1, + STATE(1933), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6660), 3, + ACTIONS(6573), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(681), 5, + ACTIONS(1061), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [79963] = 4, - ACTIONS(391), 1, + [79737] = 4, + ACTIONS(961), 1, aux_sym__whitespace_token1, - STATE(1919), 1, + STATE(1911), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6583), 3, + ACTIONS(6646), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(389), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, + ACTIONS(959), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [79982] = 4, - ACTIONS(391), 1, + [79756] = 4, + ACTIONS(1063), 1, aux_sym__whitespace_token1, STATE(1926), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6662), 3, + ACTIONS(6648), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(389), 5, - sym__no_indented_chunk, + ACTIONS(1061), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_LPAREN, + aux_sym__attribute_value_token1, + sym__whitespace_ge_2, + aux_sym__newline_token1, + [79775] = 4, + ACTIONS(1063), 1, + aux_sym__whitespace_token1, + STATE(1942), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6650), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(1061), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, + sym__whitespace_ge_2, + aux_sym__newline_token1, + [79794] = 8, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(6515), 1, sym__whitespace_ge_2, - [80001] = 4, + ACTIONS(6517), 1, + aux_sym__whitespace_token1, + ACTIONS(6545), 1, + anon_sym_SLASH, + ACTIONS(6547), 1, + anon_sym_GT, + ACTIONS(6565), 1, + sym__attribute_name, + STATE(2127), 1, + sym__newline, + STATE(1936), 3, + sym__soft_line_break, + sym__whitespace, + aux_sym_inline_link_repeat1, + [79821] = 4, ACTIONS(391), 1, aux_sym__whitespace_token1, - STATE(1924), 1, + STATE(1943), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6664), 3, + ACTIONS(6652), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, @@ -142595,475 +142479,539 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LPAREN, sym__whitespace_ge_2, - [80020] = 4, - ACTIONS(399), 1, + [79840] = 4, + ACTIONS(822), 1, aux_sym__whitespace_token1, - STATE(1924), 1, + STATE(1893), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6666), 3, + ACTIONS(6654), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(397), 5, - sym__no_indented_chunk, + ACTIONS(820), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_LPAREN, + aux_sym__attribute_value_token1, sym__whitespace_ge_2, - [80039] = 4, - ACTIONS(683), 1, + aux_sym__newline_token1, + [79859] = 4, + ACTIONS(856), 1, aux_sym__whitespace_token1, - STATE(1940), 1, + STATE(1903), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6581), 3, + ACTIONS(6656), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(681), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, + ACTIONS(854), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [80058] = 4, - ACTIONS(409), 1, + [79878] = 4, + ACTIONS(856), 1, aux_sym__whitespace_token1, - STATE(1924), 1, + STATE(1900), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6664), 3, + ACTIONS(6567), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(407), 5, - sym__no_indented_chunk, + ACTIONS(854), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_LPAREN, + aux_sym__attribute_value_token1, + sym__whitespace_ge_2, + aux_sym__newline_token1, + [79897] = 8, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(6515), 1, sym__whitespace_ge_2, - [80077] = 4, - ACTIONS(765), 1, + ACTIONS(6517), 1, + aux_sym__whitespace_token1, + ACTIONS(6565), 1, + sym__attribute_name, + ACTIONS(6658), 1, + anon_sym_SLASH, + ACTIONS(6660), 1, + anon_sym_GT, + STATE(2127), 1, + sym__newline, + STATE(1936), 3, + sym__soft_line_break, + sym__whitespace, + aux_sym_inline_link_repeat1, + [79924] = 4, + ACTIONS(967), 1, aux_sym__whitespace_token1, - STATE(1939), 1, + STATE(1900), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6669), 3, + ACTIONS(6567), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(763), 5, + ACTIONS(965), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [80096] = 4, - ACTIONS(391), 1, + [79943] = 4, + ACTIONS(967), 1, aux_sym__whitespace_token1, - STATE(1904), 1, + STATE(1938), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6671), 3, + ACTIONS(6662), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(389), 5, + ACTIONS(965), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, + sym__whitespace_ge_2, + aux_sym__newline_token1, + [79962] = 4, + ACTIONS(961), 1, + aux_sym__whitespace_token1, + STATE(1924), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6664), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(959), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [80115] = 4, - ACTIONS(679), 1, + [79981] = 4, + ACTIONS(399), 1, aux_sym__whitespace_token1, - STATE(1940), 1, + STATE(1933), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6581), 3, + ACTIONS(6573), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(677), 5, + ACTIONS(397), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [80134] = 4, - ACTIONS(622), 1, + [80000] = 4, + ACTIONS(943), 1, aux_sym__whitespace_token1, - STATE(1940), 1, + STATE(1900), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6581), 3, + ACTIONS(6567), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(620), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, + ACTIONS(941), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [80153] = 4, - ACTIONS(618), 1, + [80019] = 4, + ACTIONS(557), 1, aux_sym__whitespace_token1, - STATE(1940), 1, + STATE(1933), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6581), 3, + ACTIONS(6573), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(616), 5, + ACTIONS(555), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [80172] = 8, + [80038] = 8, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(6526), 1, + ACTIONS(6511), 1, + anon_sym_SLASH, + ACTIONS(6513), 1, + anon_sym_GT, + ACTIONS(6515), 1, sym__whitespace_ge_2, - ACTIONS(6528), 1, + ACTIONS(6517), 1, aux_sym__whitespace_token1, - ACTIONS(6577), 1, + ACTIONS(6565), 1, sym__attribute_name, - ACTIONS(6673), 1, - anon_sym_SLASH, - ACTIONS(6675), 1, - anon_sym_GT, - STATE(2129), 1, + STATE(2127), 1, sym__newline, - STATE(1937), 3, + STATE(1936), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [80199] = 4, - ACTIONS(614), 1, + [80065] = 4, + ACTIONS(405), 1, aux_sym__whitespace_token1, - STATE(1940), 1, + STATE(1933), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6581), 3, + ACTIONS(6666), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(612), 5, + ACTIONS(403), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [80218] = 8, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(6526), 1, - sym__whitespace_ge_2, - ACTIONS(6528), 1, - aux_sym__whitespace_token1, - ACTIONS(6577), 1, - sym__attribute_name, - ACTIONS(6677), 1, - anon_sym_SLASH, - ACTIONS(6679), 1, - anon_sym_GT, - STATE(2129), 1, - sym__newline, - STATE(1937), 3, - sym__soft_line_break, - sym__whitespace, - aux_sym_inline_link_repeat1, - [80245] = 4, - ACTIONS(576), 1, + [80084] = 4, + ACTIONS(391), 1, aux_sym__whitespace_token1, - STATE(1940), 1, + STATE(1933), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6581), 3, + ACTIONS(6573), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(574), 5, + ACTIONS(389), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [80264] = 4, - ACTIONS(976), 1, + [80103] = 4, + ACTIONS(391), 1, aux_sym__whitespace_token1, - STATE(1860), 1, + STATE(1929), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6681), 3, + ACTIONS(6669), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(974), 5, + ACTIONS(389), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [80283] = 6, - ACTIONS(4790), 1, + [80122] = 6, + ACTIONS(4701), 1, aux_sym__newline_token1, - ACTIONS(6683), 1, + ACTIONS(6671), 1, sym__whitespace_ge_2, - ACTIONS(6686), 1, + ACTIONS(6674), 1, aux_sym__whitespace_token1, - STATE(2129), 1, + STATE(2127), 1, sym__newline, - ACTIONS(4780), 3, + ACTIONS(4691), 3, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, - STATE(1937), 3, + STATE(1936), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [80306] = 4, - ACTIONS(391), 1, + [80145] = 4, + ACTIONS(405), 1, aux_sym__whitespace_token1, - STATE(1942), 1, + STATE(1937), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6689), 3, + ACTIONS(6677), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(389), 5, + ACTIONS(403), 5, + sym__no_indented_chunk, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_LPAREN, + sym__whitespace_ge_2, + [80164] = 4, + ACTIONS(943), 1, + aux_sym__whitespace_token1, + STATE(1933), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6573), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + ACTIONS(941), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [80325] = 4, - ACTIONS(697), 1, + [80183] = 4, + ACTIONS(967), 1, aux_sym__whitespace_token1, - STATE(1919), 1, + STATE(1930), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6583), 3, + ACTIONS(6680), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(695), 5, + ACTIONS(965), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [80344] = 4, - ACTIONS(399), 1, + [80202] = 4, + ACTIONS(828), 1, aux_sym__whitespace_token1, - STATE(1940), 1, + STATE(1864), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6691), 3, + ACTIONS(6682), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(397), 5, + ACTIONS(826), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [80363] = 4, - ACTIONS(801), 1, + [80221] = 8, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(6515), 1, + sym__whitespace_ge_2, + ACTIONS(6517), 1, aux_sym__whitespace_token1, - STATE(1925), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6694), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - ACTIONS(799), 5, + ACTIONS(6565), 1, + sym__attribute_name, + ACTIONS(6684), 1, anon_sym_SLASH, + ACTIONS(6686), 1, anon_sym_GT, - sym__attribute_name, - sym__whitespace_ge_2, - aux_sym__newline_token1, - [80382] = 4, - ACTIONS(409), 1, + STATE(2127), 1, + sym__newline, + STATE(1936), 3, + sym__soft_line_break, + sym__whitespace, + aux_sym_inline_link_repeat1, + [80248] = 4, + ACTIONS(967), 1, aux_sym__whitespace_token1, - STATE(1940), 1, + STATE(1933), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6581), 3, + ACTIONS(6573), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(407), 5, + ACTIONS(965), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [80401] = 4, - ACTIONS(801), 1, + [80267] = 4, + ACTIONS(399), 1, aux_sym__whitespace_token1, - STATE(1940), 1, + STATE(1937), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6581), 3, + ACTIONS(6621), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(799), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, + ACTIONS(397), 5, + sym__no_indented_chunk, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_LPAREN, sym__whitespace_ge_2, - aux_sym__newline_token1, - [80420] = 4, - ACTIONS(6701), 1, + [80286] = 4, + ACTIONS(6692), 1, aux_sym__whitespace_token1, - STATE(1944), 1, + STATE(1945), 1, aux_sym__tag_name_repeat1, - ACTIONS(6696), 3, + ACTIONS(6688), 3, anon_sym_DASH, sym__word_no_digit, sym__digits, - ACTIONS(6699), 4, + ACTIONS(6690), 4, anon_sym_SLASH, anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [80438] = 4, - ACTIONS(6707), 1, + [80304] = 4, + ACTIONS(6698), 1, aux_sym__whitespace_token1, STATE(1946), 1, aux_sym__tag_name_repeat1, - ACTIONS(6703), 3, + ACTIONS(6694), 3, anon_sym_DASH, sym__word_no_digit, sym__digits, - ACTIONS(6705), 4, + ACTIONS(6696), 4, anon_sym_SLASH, anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [80456] = 4, - ACTIONS(6713), 1, + [80322] = 4, + ACTIONS(6705), 1, aux_sym__whitespace_token1, - STATE(1944), 1, + STATE(1946), 1, aux_sym__tag_name_repeat1, - ACTIONS(6709), 3, + ACTIONS(6700), 3, anon_sym_DASH, sym__word_no_digit, sym__digits, - ACTIONS(6711), 4, + ACTIONS(6703), 4, anon_sym_SLASH, anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [80474] = 6, + [80340] = 8, + ACTIONS(1602), 1, + sym__no_indented_chunk, + ACTIONS(6470), 1, + anon_sym_DQUOTE, + ACTIONS(6472), 1, + anon_sym_SQUOTE, + ACTIONS(6474), 1, + anon_sym_LPAREN, + ACTIONS(6707), 1, + sym__whitespace_ge_2, + ACTIONS(6709), 1, + aux_sym__whitespace_token1, + STATE(2092), 1, + sym__whitespace, + STATE(2274), 1, + sym_link_title, + [80365] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6715), 1, + ACTIONS(6494), 1, anon_sym_RPAREN, STATE(2131), 1, sym__newline, - STATE(1807), 3, + STATE(2027), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [80495] = 8, - ACTIONS(1379), 1, - sym__no_indented_chunk, - ACTIONS(6478), 1, - anon_sym_DQUOTE, - ACTIONS(6480), 1, - anon_sym_SQUOTE, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6717), 1, + [80386] = 6, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(6719), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - STATE(2087), 1, + ACTIONS(6490), 1, + anon_sym_RPAREN, + STATE(2131), 1, + sym__newline, + STATE(1818), 3, + sym__soft_line_break, sym__whitespace, - STATE(2314), 1, - sym_link_title, - [80520] = 8, - ACTIONS(1354), 1, - sym__no_indented_chunk, - ACTIONS(6478), 1, - anon_sym_DQUOTE, - ACTIONS(6480), 1, - anon_sym_SQUOTE, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6717), 1, + aux_sym_inline_link_repeat1, + [80407] = 6, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(6719), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - STATE(2095), 1, + ACTIONS(6490), 1, + anon_sym_RPAREN, + STATE(2131), 1, + sym__newline, + STATE(2018), 3, + sym__soft_line_break, sym__whitespace, - STATE(2306), 1, - sym_link_title, - [80545] = 6, + aux_sym_inline_link_repeat1, + [80428] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6721), 1, + ACTIONS(6711), 1, anon_sym_GT, STATE(2131), 1, sym__newline, - STATE(1807), 3, + STATE(1799), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [80566] = 6, + [80449] = 8, + ACTIONS(1546), 1, + sym__no_indented_chunk, + ACTIONS(6470), 1, + anon_sym_DQUOTE, + ACTIONS(6472), 1, + anon_sym_SQUOTE, + ACTIONS(6474), 1, + anon_sym_LPAREN, + ACTIONS(6707), 1, + sym__whitespace_ge_2, + ACTIONS(6709), 1, + aux_sym__whitespace_token1, + STATE(2091), 1, + sym__whitespace, + STATE(2201), 1, + sym_link_title, + [80474] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6492), 1, + ACTIONS(6478), 1, anon_sym_RPAREN, STATE(2131), 1, sym__newline, - STATE(1807), 3, + STATE(1799), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [80587] = 6, + [80495] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6492), 1, + ACTIONS(6478), 1, anon_sym_RPAREN, STATE(2131), 1, sym__newline, - STATE(2012), 3, + STATE(1971), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [80608] = 6, + [80516] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6723), 1, + ACTIONS(4176), 1, anon_sym_RPAREN, STATE(2131), 1, sym__newline, - STATE(1807), 3, + STATE(1820), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [80629] = 6, + [80537] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6725), 1, + ACTIONS(6713), 1, anon_sym_EQ, STATE(2131), 1, sym__newline, @@ -143071,1231 +143019,1187 @@ static const uint16_t ts_small_parse_table[] = { sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [80650] = 8, - ACTIONS(6478), 1, - anon_sym_DQUOTE, - ACTIONS(6480), 1, - anon_sym_SQUOTE, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6717), 1, - sym__whitespace_ge_2, - ACTIONS(6719), 1, - aux_sym__whitespace_token1, - ACTIONS(6727), 1, - sym__no_indented_chunk, - STATE(2089), 1, - sym__whitespace, - STATE(2199), 1, - sym_link_title, - [80675] = 6, + [80558] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6729), 1, - anon_sym_GT, + ACTIONS(4176), 1, + anon_sym_RPAREN, STATE(2131), 1, sym__newline, - STATE(2016), 3, + STATE(2022), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [80696] = 8, - ACTIONS(1327), 1, + [80579] = 8, + ACTIONS(1594), 1, sym__no_indented_chunk, - ACTIONS(6478), 1, + ACTIONS(6470), 1, anon_sym_DQUOTE, - ACTIONS(6480), 1, + ACTIONS(6472), 1, anon_sym_SQUOTE, - ACTIONS(6482), 1, + ACTIONS(6474), 1, anon_sym_LPAREN, - ACTIONS(6717), 1, + ACTIONS(6707), 1, sym__whitespace_ge_2, - ACTIONS(6719), 1, + ACTIONS(6709), 1, aux_sym__whitespace_token1, - STATE(2098), 1, + STATE(2094), 1, sym__whitespace, - STATE(2300), 1, + STATE(2215), 1, sym_link_title, - [80721] = 6, + [80604] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6498), 1, + ACTIONS(6715), 1, anon_sym_RPAREN, STATE(2131), 1, sym__newline, - STATE(2020), 3, + STATE(1799), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [80742] = 6, + [80625] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6498), 1, + ACTIONS(4184), 1, anon_sym_RPAREN, STATE(2131), 1, sym__newline, - STATE(1820), 3, + STATE(1819), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [80763] = 6, + [80646] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6488), 1, + ACTIONS(4184), 1, anon_sym_RPAREN, STATE(2131), 1, sym__newline, - STATE(1996), 3, + STATE(2013), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [80784] = 6, + [80667] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6731), 1, + ACTIONS(6717), 1, anon_sym_RPAREN, STATE(2131), 1, sym__newline, - STATE(1807), 3, + STATE(1799), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [80805] = 8, - ACTIONS(1387), 1, - sym__no_indented_chunk, - ACTIONS(6478), 1, - anon_sym_DQUOTE, - ACTIONS(6480), 1, - anon_sym_SQUOTE, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6717), 1, - sym__whitespace_ge_2, - ACTIONS(6719), 1, - aux_sym__whitespace_token1, - STATE(2093), 1, - sym__whitespace, - STATE(2151), 1, - sym_link_title, - [80830] = 6, + [80688] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6488), 1, + ACTIONS(6719), 1, anon_sym_RPAREN, STATE(2131), 1, sym__newline, - STATE(1807), 3, + STATE(1799), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [80851] = 8, - ACTIONS(1610), 1, + [80709] = 8, + ACTIONS(1294), 1, sym__no_indented_chunk, - ACTIONS(6478), 1, + ACTIONS(6470), 1, anon_sym_DQUOTE, - ACTIONS(6480), 1, + ACTIONS(6472), 1, anon_sym_SQUOTE, - ACTIONS(6482), 1, + ACTIONS(6474), 1, anon_sym_LPAREN, - ACTIONS(6717), 1, + ACTIONS(6707), 1, sym__whitespace_ge_2, - ACTIONS(6719), 1, + ACTIONS(6709), 1, aux_sym__whitespace_token1, - STATE(2092), 1, + STATE(2069), 1, sym__whitespace, - STATE(2193), 1, + STATE(2185), 1, sym_link_title, - [80876] = 6, + [80734] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6723), 1, + ACTIONS(6486), 1, anon_sym_RPAREN, STATE(2131), 1, sym__newline, - STATE(1988), 3, + STATE(1810), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [80897] = 6, + [80755] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6490), 1, - anon_sym_RPAREN, + ACTIONS(6721), 1, + anon_sym_GT, STATE(2131), 1, sym__newline, - STATE(1951), 3, + STATE(1799), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [80918] = 6, + [80776] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6490), 1, + ACTIONS(6486), 1, anon_sym_RPAREN, STATE(2131), 1, sym__newline, - STATE(1813), 3, + STATE(1953), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [80939] = 6, + [80797] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6498), 1, + ACTIONS(6723), 1, anon_sym_RPAREN, STATE(2131), 1, sym__newline, - STATE(1807), 3, + STATE(1799), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [80960] = 6, + [80818] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6490), 1, - anon_sym_RPAREN, + ACTIONS(6725), 1, + anon_sym_GT, STATE(2131), 1, sym__newline, - STATE(1807), 3, + STATE(1966), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [80981] = 6, + [80839] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6486), 1, + ACTIONS(6727), 1, anon_sym_RPAREN, STATE(2131), 1, sym__newline, - STATE(1811), 3, + STATE(1959), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [81002] = 6, + [80860] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6733), 1, + ACTIONS(6727), 1, anon_sym_RPAREN, STATE(2131), 1, sym__newline, - STATE(1975), 3, + STATE(1799), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [81023] = 6, + [80881] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6486), 1, + ACTIONS(6729), 1, anon_sym_RPAREN, STATE(2131), 1, sym__newline, - STATE(1807), 3, + STATE(1962), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [81044] = 6, + [80902] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6735), 1, + ACTIONS(6729), 1, anon_sym_RPAREN, STATE(2131), 1, sym__newline, - STATE(1807), 3, + STATE(1799), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [81065] = 8, - ACTIONS(1304), 1, - sym__no_indented_chunk, - ACTIONS(6478), 1, + [80923] = 8, + ACTIONS(6470), 1, anon_sym_DQUOTE, - ACTIONS(6480), 1, + ACTIONS(6472), 1, anon_sym_SQUOTE, - ACTIONS(6482), 1, + ACTIONS(6474), 1, anon_sym_LPAREN, - ACTIONS(6717), 1, + ACTIONS(6707), 1, sym__whitespace_ge_2, - ACTIONS(6719), 1, + ACTIONS(6709), 1, aux_sym__whitespace_token1, - STATE(2100), 1, + ACTIONS(6731), 1, + sym__no_indented_chunk, + STATE(2086), 1, sym__whitespace, - STATE(2298), 1, + STATE(2248), 1, sym_link_title, - [81090] = 6, + [80948] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6737), 1, + ACTIONS(6733), 1, anon_sym_RPAREN, STATE(2131), 1, sym__newline, - STATE(1807), 3, + STATE(1963), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [81111] = 6, + [80969] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6739), 1, + ACTIONS(6735), 1, anon_sym_GT, STATE(2131), 1, sym__newline, - STATE(1807), 3, + STATE(1951), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [81132] = 4, - ACTIONS(4367), 1, - anon_sym_LPAREN, - ACTIONS(6741), 1, - anon_sym_RPAREN, - ACTIONS(6743), 3, - sym_backslash_escape, - sym__word_no_digit, - sym__digits, - STATE(2003), 3, - sym__link_destination_parenthesis, - sym__word, - aux_sym__link_destination_parenthesis_repeat1, - [81149] = 8, - ACTIONS(1606), 1, - sym__no_indented_chunk, - ACTIONS(6478), 1, - anon_sym_DQUOTE, - ACTIONS(6480), 1, - anon_sym_SQUOTE, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6717), 1, - sym__whitespace_ge_2, - ACTIONS(6719), 1, - aux_sym__whitespace_token1, - STATE(2096), 1, - sym__whitespace, - STATE(2181), 1, - sym_link_title, - [81174] = 6, + [80990] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6745), 1, + ACTIONS(6476), 1, anon_sym_RPAREN, STATE(2131), 1, sym__newline, - STATE(1807), 3, + STATE(1799), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [81195] = 8, - ACTIONS(6478), 1, - anon_sym_DQUOTE, - ACTIONS(6480), 1, - anon_sym_SQUOTE, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6717), 1, - sym__whitespace_ge_2, - ACTIONS(6719), 1, - aux_sym__whitespace_token1, - ACTIONS(6747), 1, - sym__no_indented_chunk, - STATE(2071), 1, - sym__whitespace, - STATE(2296), 1, - sym_link_title, - [81220] = 6, + [81011] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6745), 1, + ACTIONS(6733), 1, anon_sym_RPAREN, STATE(2131), 1, sym__newline, - STATE(2024), 3, + STATE(1799), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [81241] = 6, + [81032] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(4178), 1, + ACTIONS(6476), 1, anon_sym_RPAREN, STATE(2131), 1, sym__newline, - STATE(1968), 3, + STATE(1997), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [81262] = 6, + [81053] = 8, + ACTIONS(1571), 1, + sym__no_indented_chunk, + ACTIONS(6470), 1, + anon_sym_DQUOTE, + ACTIONS(6472), 1, + anon_sym_SQUOTE, + ACTIONS(6474), 1, + anon_sym_LPAREN, + ACTIONS(6707), 1, + sym__whitespace_ge_2, + ACTIONS(6709), 1, + aux_sym__whitespace_token1, + STATE(2077), 1, + sym__whitespace, + STATE(2160), 1, + sym_link_title, + [81078] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(4178), 1, + ACTIONS(4284), 1, anon_sym_RPAREN, STATE(2131), 1, sym__newline, - STATE(1816), 3, + STATE(1812), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [81283] = 6, + [81099] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(4280), 1, + ACTIONS(6484), 1, anon_sym_RPAREN, STATE(2131), 1, sym__newline, - STATE(1972), 3, + STATE(1799), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [81304] = 6, + [81120] = 4, + ACTIONS(6737), 1, + anon_sym_LPAREN, + ACTIONS(6740), 1, + anon_sym_RPAREN, + ACTIONS(6742), 3, + sym_backslash_escape, + sym__word_no_digit, + sym__digits, + STATE(1983), 3, + sym__link_destination_parenthesis, + sym__word, + aux_sym__link_destination_parenthesis_repeat1, + [81137] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(4176), 1, + ACTIONS(4284), 1, anon_sym_RPAREN, STATE(2131), 1, sym__newline, - STATE(1969), 3, + STATE(2015), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [81325] = 6, + [81158] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(4176), 1, + ACTIONS(4292), 1, anon_sym_RPAREN, STATE(2131), 1, sym__newline, - STATE(1812), 3, + STATE(2021), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [81346] = 6, + [81179] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6749), 1, + ACTIONS(4276), 1, anon_sym_RPAREN, STATE(2131), 1, sym__newline, - STATE(1807), 3, + STATE(1816), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [81367] = 6, + [81200] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6751), 1, + ACTIONS(4276), 1, anon_sym_RPAREN, STATE(2131), 1, sym__newline, - STATE(1807), 3, + STATE(2016), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [81388] = 6, + [81221] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(4280), 1, + ACTIONS(6484), 1, anon_sym_RPAREN, STATE(2131), 1, sym__newline, - STATE(1810), 3, + STATE(1973), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [81409] = 8, - ACTIONS(1490), 1, + [81242] = 8, + ACTIONS(1608), 1, sym__no_indented_chunk, - ACTIONS(6478), 1, + ACTIONS(6470), 1, anon_sym_DQUOTE, - ACTIONS(6480), 1, + ACTIONS(6472), 1, anon_sym_SQUOTE, - ACTIONS(6482), 1, + ACTIONS(6474), 1, anon_sym_LPAREN, - ACTIONS(6717), 1, + ACTIONS(6707), 1, sym__whitespace_ge_2, - ACTIONS(6719), 1, + ACTIONS(6709), 1, aux_sym__whitespace_token1, - STATE(2083), 1, + STATE(2095), 1, sym__whitespace, - STATE(2150), 1, + STATE(2249), 1, sym_link_title, - [81434] = 6, + [81267] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6715), 1, + ACTIONS(6492), 1, anon_sym_RPAREN, STATE(2131), 1, sym__newline, - STATE(1987), 3, + STATE(2019), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [81455] = 6, + [81288] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6753), 1, - anon_sym_GT, + ACTIONS(6745), 1, + anon_sym_RPAREN, STATE(2131), 1, sym__newline, - STATE(1950), 3, + STATE(1968), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [81476] = 6, + [81309] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6755), 1, - anon_sym_EQ, + ACTIONS(6488), 1, + anon_sym_RPAREN, STATE(2131), 1, sym__newline, - STATE(1807), 3, + STATE(1799), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [81497] = 6, + [81330] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6757), 1, - anon_sym_RPAREN, + ACTIONS(6747), 1, + anon_sym_EQ, STATE(2131), 1, sym__newline, - STATE(1973), 3, + STATE(1799), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [81518] = 6, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(4035), 1, + [81351] = 8, + ACTIONS(1606), 1, + sym__no_indented_chunk, + ACTIONS(6470), 1, + anon_sym_DQUOTE, + ACTIONS(6472), 1, + anon_sym_SQUOTE, + ACTIONS(6474), 1, + anon_sym_LPAREN, + ACTIONS(6707), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(6709), 1, aux_sym__whitespace_token1, - ACTIONS(6506), 1, - anon_sym_RPAREN, - STATE(2131), 1, - sym__newline, - STATE(2028), 3, - sym__soft_line_break, + STATE(2101), 1, sym__whitespace, - aux_sym_inline_link_repeat1, - [81539] = 6, + STATE(2250), 1, + sym_link_title, + [81376] = 4, + ACTIONS(4345), 1, + anon_sym_LPAREN, + ACTIONS(6749), 1, + anon_sym_RPAREN, + ACTIONS(6751), 3, + sym_backslash_escape, + sym__word_no_digit, + sym__digits, + STATE(1983), 3, + sym__link_destination_parenthesis, + sym__word, + aux_sym__link_destination_parenthesis_repeat1, + [81393] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6759), 1, - anon_sym_RPAREN, + ACTIONS(6753), 1, + anon_sym_GT, STATE(2131), 1, sym__newline, - STATE(1807), 3, + STATE(1799), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [81560] = 6, + [81414] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6496), 1, + ACTIONS(6745), 1, anon_sym_RPAREN, STATE(2131), 1, sym__newline, - STATE(1807), 3, + STATE(1799), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [81581] = 6, + [81435] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6496), 1, + ACTIONS(6488), 1, anon_sym_RPAREN, STATE(2131), 1, sym__newline, - STATE(1947), 3, + STATE(1978), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [81602] = 6, + [81456] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6484), 1, + ACTIONS(4292), 1, anon_sym_RPAREN, STATE(2131), 1, sym__newline, - STATE(1807), 3, + STATE(1814), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [81623] = 6, + [81477] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(6515), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(6517), 1, aux_sym__whitespace_token1, - ACTIONS(6484), 1, - anon_sym_RPAREN, - STATE(2131), 1, + ACTIONS(6565), 1, + sym__attribute_name, + STATE(2127), 1, sym__newline, - STATE(1953), 3, + STATE(1936), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [81644] = 6, + [81498] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6759), 1, - anon_sym_RPAREN, + ACTIONS(6755), 1, + anon_sym_GT, STATE(2131), 1, sym__newline, - STATE(1961), 3, + STATE(1996), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [81665] = 4, - ACTIONS(4367), 1, - anon_sym_LPAREN, - ACTIONS(6761), 1, - anon_sym_RPAREN, - ACTIONS(6763), 3, - sym_backslash_escape, - sym__word_no_digit, - sym__digits, - STATE(1977), 3, - sym__link_destination_parenthesis, - sym__word, - aux_sym__link_destination_parenthesis_repeat1, - [81682] = 4, - ACTIONS(6765), 1, + [81519] = 4, + ACTIONS(4345), 1, anon_sym_LPAREN, - ACTIONS(6768), 1, + ACTIONS(6757), 1, anon_sym_RPAREN, - ACTIONS(6770), 3, + ACTIONS(6759), 3, sym_backslash_escape, sym__word_no_digit, sym__digits, - STATE(2003), 3, + STATE(1995), 3, sym__link_destination_parenthesis, sym__word, aux_sym__link_destination_parenthesis_repeat1, - [81699] = 6, + [81536] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6504), 1, + ACTIONS(6496), 1, anon_sym_RPAREN, STATE(2131), 1, sym__newline, - STATE(1997), 3, + STATE(1982), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [81720] = 6, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(4035), 1, + [81557] = 8, + ACTIONS(1573), 1, + sym__no_indented_chunk, + ACTIONS(6470), 1, + anon_sym_DQUOTE, + ACTIONS(6472), 1, + anon_sym_SQUOTE, + ACTIONS(6474), 1, + anon_sym_LPAREN, + ACTIONS(6707), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(6709), 1, aux_sym__whitespace_token1, - ACTIONS(6504), 1, - anon_sym_RPAREN, - STATE(2131), 1, - sym__newline, - STATE(1815), 3, - sym__soft_line_break, + STATE(2100), 1, sym__whitespace, - aux_sym_inline_link_repeat1, - [81741] = 6, + STATE(2257), 1, + sym_link_title, + [81582] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6504), 1, + ACTIONS(6480), 1, anon_sym_RPAREN, STATE(2131), 1, sym__newline, - STATE(1807), 3, + STATE(1799), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [81762] = 6, + [81603] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(4260), 1, + ACTIONS(6761), 1, anon_sym_RPAREN, STATE(2131), 1, sym__newline, - STATE(2014), 3, + STATE(1799), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [81783] = 6, + [81624] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6502), 1, + ACTIONS(6496), 1, anon_sym_RPAREN, STATE(2131), 1, sym__newline, - STATE(1999), 3, + STATE(1813), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [81804] = 6, + [81645] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6773), 1, - anon_sym_GT, + ACTIONS(6480), 1, + anon_sym_RPAREN, STATE(2131), 1, sym__newline, - STATE(1976), 3, + STATE(1809), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [81825] = 6, + [81666] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6502), 1, + ACTIONS(6480), 1, anon_sym_RPAREN, STATE(2131), 1, sym__newline, - STATE(1809), 3, + STATE(1977), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [81846] = 6, + [81687] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6502), 1, + ACTIONS(6763), 1, anon_sym_RPAREN, STATE(2131), 1, sym__newline, - STATE(1807), 3, + STATE(1799), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [81867] = 6, + [81708] = 8, + ACTIONS(6470), 1, + anon_sym_DQUOTE, + ACTIONS(6472), 1, + anon_sym_SQUOTE, + ACTIONS(6474), 1, + anon_sym_LPAREN, + ACTIONS(6707), 1, + sym__whitespace_ge_2, + ACTIONS(6709), 1, + aux_sym__whitespace_token1, + ACTIONS(6765), 1, + sym__no_indented_chunk, + STATE(2098), 1, + sym__whitespace, + STATE(2326), 1, + sym_link_title, + [81733] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6757), 1, + ACTIONS(4286), 1, anon_sym_RPAREN, STATE(2131), 1, sym__newline, - STATE(1807), 3, + STATE(2005), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [81888] = 6, + [81754] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(4260), 1, + ACTIONS(6496), 1, anon_sym_RPAREN, STATE(2131), 1, sym__newline, - STATE(1814), 3, + STATE(1799), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [81909] = 6, + [81775] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6494), 1, + ACTIONS(6492), 1, anon_sym_RPAREN, STATE(2131), 1, sym__newline, - STATE(1807), 3, + STATE(1799), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [81930] = 6, + [81796] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(6526), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(6528), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6577), 1, - sym__attribute_name, - STATE(2129), 1, + ACTIONS(6482), 1, + anon_sym_RPAREN, + STATE(2131), 1, sym__newline, - STATE(1937), 3, + STATE(1799), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [81951] = 6, + [81817] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6775), 1, - anon_sym_GT, + ACTIONS(6490), 1, + anon_sym_RPAREN, STATE(2131), 1, sym__newline, - STATE(1807), 3, + STATE(1799), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [81972] = 6, + [81838] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6500), 1, + ACTIONS(4286), 1, anon_sym_RPAREN, STATE(2131), 1, sym__newline, - STATE(1979), 3, + STATE(1811), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [81993] = 6, + [81859] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6500), 1, + ACTIONS(6494), 1, anon_sym_RPAREN, STATE(2131), 1, sym__newline, - STATE(1807), 3, + STATE(1799), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [82014] = 6, + [81880] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6494), 1, + ACTIONS(6767), 1, anon_sym_RPAREN, STATE(2131), 1, sym__newline, - STATE(1817), 3, + STATE(1799), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [82035] = 6, + [81901] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6506), 1, + ACTIONS(6482), 1, anon_sym_RPAREN, STATE(2131), 1, sym__newline, - STATE(1807), 3, + STATE(1817), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [82056] = 6, + [81922] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6494), 1, + ACTIONS(6486), 1, anon_sym_RPAREN, STATE(2131), 1, sym__newline, - STATE(2018), 3, + STATE(1799), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [82077] = 6, + [81943] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(4226), 1, + ACTIONS(6498), 1, anon_sym_RPAREN, STATE(2131), 1, sym__newline, - STATE(2006), 3, + STATE(1799), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [82098] = 6, + [81964] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(4226), 1, + ACTIONS(6767), 1, anon_sym_RPAREN, STATE(2131), 1, sym__newline, - STATE(1819), 3, + STATE(2010), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [82119] = 6, + [81985] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6777), 1, + ACTIONS(6498), 1, anon_sym_RPAREN, STATE(2131), 1, sym__newline, - STATE(1807), 3, + STATE(1815), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [82140] = 6, + [82006] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(4224), 1, + ACTIONS(6498), 1, anon_sym_RPAREN, STATE(2131), 1, sym__newline, - STATE(2011), 3, + STATE(1992), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [82161] = 6, + [82027] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(4224), 1, + ACTIONS(6482), 1, anon_sym_RPAREN, STATE(2131), 1, sym__newline, - STATE(1818), 3, + STATE(2014), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [82182] = 6, + [82048] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6486), 1, + ACTIONS(6769), 1, anon_sym_RPAREN, STATE(2131), 1, sym__newline, - STATE(1963), 3, + STATE(1799), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [82203] = 6, + [82069] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4035), 1, + ACTIONS(4011), 1, sym__whitespace_ge_2, - ACTIONS(4037), 1, + ACTIONS(4013), 1, aux_sym__whitespace_token1, - ACTIONS(6733), 1, + ACTIONS(6769), 1, anon_sym_RPAREN, STATE(2131), 1, sym__newline, - STATE(1807), 3, + STATE(2006), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [82224] = 7, - ACTIONS(1387), 1, + [82090] = 7, + ACTIONS(1606), 1, sym__no_indented_chunk, - ACTIONS(6478), 1, + ACTIONS(6470), 1, anon_sym_DQUOTE, - ACTIONS(6480), 1, + ACTIONS(6472), 1, anon_sym_SQUOTE, - ACTIONS(6482), 1, + ACTIONS(6474), 1, anon_sym_LPAREN, - ACTIONS(6779), 1, + ACTIONS(6771), 1, aux_sym__newline_token1, - STATE(1990), 1, + STATE(1989), 1, sym__newline, - STATE(2151), 1, + STATE(2250), 1, sym_link_title, - [82246] = 3, - ACTIONS(2842), 1, - aux_sym__whitespace_token1, - ACTIONS(6781), 1, + [82112] = 4, + ACTIONS(6773), 1, + sym__line_ending, + STATE(2058), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(377), 2, + sym__split_token, + sym__soft_line_break_marker, + ACTIONS(6775), 3, + sym__block_continuation, + sym__block_quote_continuation, sym__last_token_whitespace, - ACTIONS(2840), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, - sym__whitespace_ge_2, - aux_sym__newline_token1, - [82260] = 7, - ACTIONS(1381), 1, - sym__no_indented_chunk, - ACTIONS(6478), 1, - anon_sym_DQUOTE, - ACTIONS(6480), 1, - anon_sym_SQUOTE, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6779), 1, - aux_sym__newline_token1, - STATE(1948), 1, - sym__newline, - STATE(2311), 1, - sym_link_title, - [82282] = 7, - ACTIONS(1354), 1, + [82128] = 7, + ACTIONS(1546), 1, sym__no_indented_chunk, - ACTIONS(6478), 1, + ACTIONS(6470), 1, anon_sym_DQUOTE, - ACTIONS(6480), 1, + ACTIONS(6472), 1, anon_sym_SQUOTE, - ACTIONS(6482), 1, + ACTIONS(6474), 1, anon_sym_LPAREN, - ACTIONS(6779), 1, + ACTIONS(6771), 1, aux_sym__newline_token1, - STATE(1957), 1, + STATE(2011), 1, sym__newline, - STATE(2306), 1, + STATE(2201), 1, sym_link_title, - [82304] = 7, - ACTIONS(1277), 1, + [82150] = 7, + ACTIONS(1294), 1, sym__no_indented_chunk, - ACTIONS(6478), 1, + ACTIONS(6470), 1, anon_sym_DQUOTE, - ACTIONS(6480), 1, + ACTIONS(6472), 1, anon_sym_SQUOTE, - ACTIONS(6482), 1, + ACTIONS(6474), 1, anon_sym_LPAREN, - ACTIONS(6779), 1, + ACTIONS(6771), 1, aux_sym__newline_token1, - STATE(1962), 1, + STATE(1952), 1, sym__newline, - STATE(2166), 1, + STATE(2185), 1, sym_link_title, - [82326] = 7, - ACTIONS(1304), 1, + [82172] = 7, + ACTIONS(1319), 1, sym__no_indented_chunk, - ACTIONS(6478), 1, + ACTIONS(6470), 1, anon_sym_DQUOTE, - ACTIONS(6480), 1, + ACTIONS(6472), 1, anon_sym_SQUOTE, - ACTIONS(6482), 1, + ACTIONS(6474), 1, anon_sym_LPAREN, - ACTIONS(6779), 1, + ACTIONS(6771), 1, aux_sym__newline_token1, - STATE(1980), 1, + STATE(1947), 1, sym__newline, - STATE(2298), 1, + STATE(2289), 1, sym_link_title, - [82348] = 7, - ACTIONS(1606), 1, + [82194] = 7, + ACTIONS(1571), 1, sym__no_indented_chunk, - ACTIONS(6478), 1, + ACTIONS(6470), 1, anon_sym_DQUOTE, - ACTIONS(6480), 1, + ACTIONS(6472), 1, anon_sym_SQUOTE, - ACTIONS(6482), 1, + ACTIONS(6474), 1, anon_sym_LPAREN, - ACTIONS(6779), 1, + ACTIONS(6771), 1, aux_sym__newline_token1, STATE(1964), 1, sym__newline, - STATE(2181), 1, + STATE(2160), 1, sym_link_title, - [82370] = 3, + [82216] = 3, ACTIONS(2842), 1, aux_sym__whitespace_token1, - ACTIONS(6783), 1, + ACTIONS(6777), 1, sym__last_token_whitespace, ACTIONS(2840), 5, anon_sym_SLASH, @@ -144303,88 +144207,111 @@ static const uint16_t ts_small_parse_table[] = { sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [82384] = 7, - ACTIONS(1610), 1, + [82230] = 7, + ACTIONS(1602), 1, sym__no_indented_chunk, - ACTIONS(6478), 1, + ACTIONS(6470), 1, anon_sym_DQUOTE, - ACTIONS(6480), 1, + ACTIONS(6472), 1, anon_sym_SQUOTE, - ACTIONS(6482), 1, + ACTIONS(6474), 1, anon_sym_LPAREN, - ACTIONS(6779), 1, + ACTIONS(6771), 1, aux_sym__newline_token1, - STATE(1955), 1, + STATE(2004), 1, sym__newline, - STATE(2193), 1, + STATE(2274), 1, sym_link_title, - [82406] = 7, - ACTIONS(1327), 1, + [82252] = 7, + ACTIONS(1594), 1, sym__no_indented_chunk, - ACTIONS(6478), 1, + ACTIONS(6470), 1, anon_sym_DQUOTE, - ACTIONS(6480), 1, + ACTIONS(6472), 1, anon_sym_SQUOTE, - ACTIONS(6482), 1, + ACTIONS(6474), 1, anon_sym_LPAREN, - ACTIONS(6779), 1, + ACTIONS(6771), 1, aux_sym__newline_token1, - STATE(1974), 1, + STATE(1980), 1, sym__newline, - STATE(2300), 1, + STATE(2215), 1, sym_link_title, - [82428] = 4, - ACTIONS(6785), 1, - sym__line_ending, - STATE(2057), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(377), 2, - sym__split_token, - sym__soft_line_break_marker, - ACTIONS(6787), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - [82444] = 7, - ACTIONS(1379), 1, + [82274] = 7, + ACTIONS(1376), 1, sym__no_indented_chunk, - ACTIONS(6478), 1, + ACTIONS(6470), 1, anon_sym_DQUOTE, - ACTIONS(6480), 1, + ACTIONS(6472), 1, anon_sym_SQUOTE, - ACTIONS(6482), 1, + ACTIONS(6474), 1, anon_sym_LPAREN, - ACTIONS(6779), 1, + ACTIONS(6771), 1, aux_sym__newline_token1, - STATE(1949), 1, + STATE(1958), 1, sym__newline, - STATE(2314), 1, + STATE(2240), 1, sym_link_title, - [82466] = 7, - ACTIONS(1490), 1, + [82296] = 7, + ACTIONS(1608), 1, sym__no_indented_chunk, - ACTIONS(6478), 1, + ACTIONS(6470), 1, anon_sym_DQUOTE, - ACTIONS(6480), 1, + ACTIONS(6472), 1, anon_sym_SQUOTE, - ACTIONS(6482), 1, + ACTIONS(6474), 1, anon_sym_LPAREN, + ACTIONS(6771), 1, + aux_sym__newline_token1, + STATE(1974), 1, + sym__newline, + STATE(2249), 1, + sym_link_title, + [82318] = 3, + ACTIONS(2842), 1, + aux_sym__whitespace_token1, ACTIONS(6779), 1, + sym__last_token_whitespace, + ACTIONS(2840), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, + sym__whitespace_ge_2, + aux_sym__newline_token1, + [82332] = 7, + ACTIONS(1573), 1, + sym__no_indented_chunk, + ACTIONS(6470), 1, + anon_sym_DQUOTE, + ACTIONS(6472), 1, + anon_sym_SQUOTE, + ACTIONS(6474), 1, + anon_sym_LPAREN, + ACTIONS(6771), 1, aux_sym__newline_token1, - STATE(1978), 1, + STATE(1994), 1, sym__newline, - STATE(2150), 1, + STATE(2257), 1, sym_link_title, - [82488] = 2, - ACTIONS(2090), 1, + [82354] = 2, + ACTIONS(6781), 1, + sym__last_token_whitespace, + ACTIONS(2840), 5, + sym__no_indented_chunk, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_LPAREN, + aux_sym__newline_token1, + [82365] = 2, + ACTIONS(2106), 1, aux_sym__whitespace_token1, - ACTIONS(2088), 5, + ACTIONS(2104), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [82499] = 2, + [82376] = 2, ACTIONS(417), 1, aux_sym__whitespace_token1, ACTIONS(415), 5, @@ -144393,2570 +144320,2561 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [82510] = 2, - ACTIONS(2046), 1, + [82387] = 2, + ACTIONS(2066), 1, aux_sym__whitespace_token1, - ACTIONS(2044), 5, + ACTIONS(2064), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [82521] = 2, - ACTIONS(2074), 1, + [82398] = 2, + ACTIONS(2082), 1, aux_sym__whitespace_token1, - ACTIONS(2072), 5, + ACTIONS(2080), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [82532] = 3, - STATE(2048), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(389), 2, - sym__split_token, - sym__soft_line_break_marker, - ACTIONS(6789), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - [82545] = 2, - ACTIONS(2060), 1, + [82409] = 2, + ACTIONS(2038), 1, aux_sym__whitespace_token1, - ACTIONS(2058), 5, + ACTIONS(2036), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [82556] = 3, - STATE(2063), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(407), 2, - sym__split_token, - sym__soft_line_break_marker, - ACTIONS(6791), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - [82569] = 4, - ACTIONS(377), 1, - sym__close_block, - ACTIONS(6793), 1, - sym__line_ending, - STATE(2088), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6795), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - [82584] = 2, - ACTIONS(2959), 1, + [82420] = 2, + ACTIONS(2086), 1, aux_sym__whitespace_token1, - ACTIONS(2957), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, + ACTIONS(2084), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, + sym__whitespace_ge_2, + aux_sym__newline_token1, + [82431] = 2, + ACTIONS(2156), 1, + aux_sym__whitespace_token1, + ACTIONS(2154), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [82595] = 4, + [82442] = 4, ACTIONS(377), 1, sym__trigger_error, - ACTIONS(6797), 1, + ACTIONS(6783), 1, sym__line_ending, - STATE(2065), 1, + STATE(2097), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6799), 3, + ACTIONS(6785), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - [82610] = 2, - ACTIONS(2034), 1, + [82457] = 3, + STATE(2051), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(403), 2, + sym__split_token, + sym__soft_line_break_marker, + ACTIONS(6787), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + [82470] = 2, + ACTIONS(3686), 1, aux_sym__whitespace_token1, - ACTIONS(2032), 5, + ACTIONS(3684), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [82621] = 2, - ACTIONS(3877), 1, + [82481] = 2, + ACTIONS(2942), 1, aux_sym__whitespace_token1, - ACTIONS(3875), 5, + ACTIONS(2940), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [82632] = 2, - ACTIONS(2146), 1, + [82492] = 2, + ACTIONS(2942), 1, + aux_sym__whitespace_token1, + ACTIONS(2940), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, + sym__whitespace_ge_2, + aux_sym__newline_token1, + [82503] = 2, + ACTIONS(2034), 1, aux_sym__whitespace_token1, - ACTIONS(2144), 5, + ACTIONS(2032), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [82643] = 2, - ACTIONS(2959), 1, + [82514] = 2, + ACTIONS(2074), 1, aux_sym__whitespace_token1, - ACTIONS(2957), 5, + ACTIONS(2072), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [82654] = 2, - ACTIONS(6801), 1, - sym__last_token_whitespace, - ACTIONS(2840), 5, - sym__no_indented_chunk, + [82525] = 2, + ACTIONS(2062), 1, + aux_sym__whitespace_token1, + ACTIONS(2060), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_LPAREN, + aux_sym__attribute_value_token1, + sym__whitespace_ge_2, aux_sym__newline_token1, - [82665] = 3, - STATE(2063), 1, + [82536] = 3, + STATE(2051), 1, aux_sym__ignore_matching_tokens, ACTIONS(389), 2, sym__split_token, sym__soft_line_break_marker, - ACTIONS(6791), 3, + ACTIONS(6790), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - [82678] = 2, - ACTIONS(2156), 1, - aux_sym__whitespace_token1, - ACTIONS(2154), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, - sym__whitespace_ge_2, - aux_sym__newline_token1, - [82689] = 2, - ACTIONS(2068), 1, - aux_sym__whitespace_token1, - ACTIONS(2066), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, - sym__whitespace_ge_2, - aux_sym__newline_token1, - [82700] = 2, - ACTIONS(2038), 1, - aux_sym__whitespace_token1, - ACTIONS(2036), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, - sym__whitespace_ge_2, - aux_sym__newline_token1, - [82711] = 2, - ACTIONS(2138), 1, + [82549] = 2, + ACTIONS(2046), 1, aux_sym__whitespace_token1, - ACTIONS(2136), 5, + ACTIONS(2044), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [82722] = 2, - ACTIONS(2102), 1, + [82560] = 3, + STATE(2062), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(389), 2, + sym__split_token, + sym__soft_line_break_marker, + ACTIONS(6792), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + [82573] = 2, + ACTIONS(2094), 1, aux_sym__whitespace_token1, - ACTIONS(2100), 5, + ACTIONS(2092), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [82733] = 3, - STATE(2063), 1, + [82584] = 3, + STATE(2051), 1, aux_sym__ignore_matching_tokens, ACTIONS(397), 2, sym__split_token, sym__soft_line_break_marker, - ACTIONS(6803), 3, + ACTIONS(6790), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + [82597] = 4, + ACTIONS(377), 1, + sym__close_block, + ACTIONS(6794), 1, + sym__line_ending, + STATE(2076), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6796), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - [82746] = 3, + [82612] = 3, ACTIONS(397), 1, sym__trigger_error, - STATE(2064), 1, + STATE(2099), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6806), 3, + ACTIONS(6798), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - [82758] = 3, + [82624] = 3, ACTIONS(389), 1, sym__trigger_error, STATE(2064), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6809), 3, + ACTIONS(6800), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - [82770] = 5, - ACTIONS(6717), 1, + [82636] = 5, + ACTIONS(6707), 1, sym__whitespace_ge_2, - ACTIONS(6719), 1, + ACTIONS(6709), 1, aux_sym__whitespace_token1, - ACTIONS(6811), 1, + ACTIONS(6802), 1, aux_sym__newline_token1, - STATE(292), 1, + STATE(327), 1, sym__newline, - STATE(2031), 1, + STATE(2029), 1, sym__whitespace, - [82786] = 5, - ACTIONS(6717), 1, + [82652] = 5, + ACTIONS(6707), 1, sym__whitespace_ge_2, - ACTIONS(6719), 1, + ACTIONS(6709), 1, aux_sym__whitespace_token1, - ACTIONS(6813), 1, + ACTIONS(6802), 1, aux_sym__newline_token1, - STATE(296), 1, + STATE(329), 1, sym__newline, - STATE(2029), 1, + STATE(2039), 1, sym__whitespace, - [82802] = 3, - ACTIONS(6815), 1, - sym__block_close, - STATE(2070), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6817), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - [82814] = 3, - ACTIONS(407), 1, - sym__trigger_error, - STATE(2064), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6809), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - [82826] = 3, - ACTIONS(6819), 1, - sym__block_close, - STATE(1351), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5488), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - [82838] = 5, - ACTIONS(6478), 1, + [82668] = 5, + ACTIONS(1594), 1, + sym__no_indented_chunk, + ACTIONS(6470), 1, anon_sym_DQUOTE, - ACTIONS(6480), 1, + ACTIONS(6472), 1, anon_sym_SQUOTE, - ACTIONS(6482), 1, + ACTIONS(6474), 1, anon_sym_LPAREN, - ACTIONS(6821), 1, + STATE(2215), 1, + sym_link_title, + [82684] = 5, + ACTIONS(1546), 1, sym__no_indented_chunk, - STATE(2295), 1, + ACTIONS(6470), 1, + anon_sym_DQUOTE, + ACTIONS(6472), 1, + anon_sym_SQUOTE, + ACTIONS(6474), 1, + anon_sym_LPAREN, + STATE(2201), 1, sym_link_title, - [82854] = 2, - ACTIONS(6825), 1, - aux_sym__whitespace_token1, - ACTIONS(6823), 4, - anon_sym_SLASH, - anon_sym_GT, - sym__whitespace_ge_2, - aux_sym__newline_token1, - [82864] = 2, - ACTIONS(6829), 1, - aux_sym__whitespace_token1, - ACTIONS(6827), 4, - anon_sym_SLASH, - anon_sym_GT, - sym__whitespace_ge_2, - aux_sym__newline_token1, - [82874] = 5, - ACTIONS(6717), 1, + [82700] = 5, + ACTIONS(6707), 1, sym__whitespace_ge_2, - ACTIONS(6719), 1, + ACTIONS(6709), 1, aux_sym__whitespace_token1, - ACTIONS(6811), 1, + ACTIONS(6802), 1, aux_sym__newline_token1, - STATE(289), 1, + STATE(286), 1, sym__newline, - STATE(2040), 1, + STATE(2033), 1, sym__whitespace, - [82890] = 1, - ACTIONS(2957), 5, - sym__no_indented_chunk, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_LPAREN, - aux_sym__newline_token1, - [82898] = 5, - ACTIONS(6717), 1, + [82716] = 5, + ACTIONS(6707), 1, sym__whitespace_ge_2, - ACTIONS(6719), 1, + ACTIONS(6709), 1, aux_sym__whitespace_token1, - ACTIONS(6813), 1, + ACTIONS(6802), 1, aux_sym__newline_token1, - STATE(330), 1, + STATE(323), 1, sym__newline, - STATE(2037), 1, + STATE(2036), 1, sym__whitespace, - [82914] = 2, - ACTIONS(6833), 1, + [82732] = 2, + ACTIONS(6806), 1, + aux_sym__whitespace_token1, + ACTIONS(6804), 4, + anon_sym_SLASH, + anon_sym_GT, + sym__whitespace_ge_2, + aux_sym__newline_token1, + [82742] = 2, + ACTIONS(6810), 1, aux_sym__whitespace_token1, - ACTIONS(6831), 4, + ACTIONS(6808), 4, anon_sym_SLASH, anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [82924] = 5, - ACTIONS(1379), 1, + [82752] = 5, + ACTIONS(6707), 1, + sym__whitespace_ge_2, + ACTIONS(6709), 1, + aux_sym__whitespace_token1, + ACTIONS(6812), 1, + aux_sym__newline_token1, + STATE(312), 1, + sym__newline, + STATE(2031), 1, + sym__whitespace, + [82768] = 3, + ACTIONS(389), 1, + sym__close_block, + STATE(2079), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6814), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + [82780] = 3, + ACTIONS(389), 1, + sym__close_block, + STATE(2078), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6816), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + [82792] = 5, + ACTIONS(1294), 1, sym__no_indented_chunk, - ACTIONS(6478), 1, + ACTIONS(6470), 1, anon_sym_DQUOTE, - ACTIONS(6480), 1, + ACTIONS(6472), 1, anon_sym_SQUOTE, - ACTIONS(6482), 1, + ACTIONS(6474), 1, anon_sym_LPAREN, - STATE(2314), 1, + STATE(2185), 1, sym_link_title, - [82940] = 3, - ACTIONS(407), 1, + [82808] = 3, + ACTIONS(403), 1, sym__close_block, - STATE(2080), 1, + STATE(2078), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6835), 3, + ACTIONS(6818), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - [82952] = 3, + [82820] = 3, ACTIONS(397), 1, sym__close_block, - STATE(2080), 1, + STATE(2078), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6837), 3, + ACTIONS(6816), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - [82964] = 2, - ACTIONS(6842), 1, - aux_sym__whitespace_token1, - ACTIONS(6840), 4, - anon_sym_SLASH, - anon_sym_GT, + [82832] = 5, + ACTIONS(6707), 1, sym__whitespace_ge_2, + ACTIONS(6709), 1, + aux_sym__whitespace_token1, + ACTIONS(6802), 1, aux_sym__newline_token1, - [82974] = 5, - ACTIONS(6717), 1, + STATE(316), 1, + sym__newline, + STATE(2041), 1, + sym__whitespace, + [82848] = 5, + ACTIONS(6707), 1, sym__whitespace_ge_2, - ACTIONS(6719), 1, + ACTIONS(6709), 1, aux_sym__whitespace_token1, - ACTIONS(6813), 1, + ACTIONS(6812), 1, aux_sym__newline_token1, - STATE(277), 1, + STATE(319), 1, sym__newline, - STATE(2033), 1, + STATE(2037), 1, sym__whitespace, - [82990] = 5, - ACTIONS(1606), 1, - sym__no_indented_chunk, - ACTIONS(6478), 1, - anon_sym_DQUOTE, - ACTIONS(6480), 1, - anon_sym_SQUOTE, - ACTIONS(6482), 1, - anon_sym_LPAREN, - STATE(2181), 1, - sym_link_title, - [83006] = 3, - ACTIONS(389), 1, - sym__trigger_error, - STATE(2069), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6844), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - [83018] = 2, - ACTIONS(6848), 1, + [82864] = 2, + ACTIONS(6823), 1, aux_sym__whitespace_token1, - ACTIONS(6846), 4, + ACTIONS(6821), 4, anon_sym_SLASH, anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [83028] = 5, - ACTIONS(6717), 1, - sym__whitespace_ge_2, - ACTIONS(6719), 1, - aux_sym__whitespace_token1, - ACTIONS(6811), 1, - aux_sym__newline_token1, - STATE(286), 1, - sym__newline, - STATE(2032), 1, - sym__whitespace, - [83044] = 5, - ACTIONS(1354), 1, + [82874] = 5, + ACTIONS(1602), 1, sym__no_indented_chunk, - ACTIONS(6478), 1, + ACTIONS(6470), 1, anon_sym_DQUOTE, - ACTIONS(6480), 1, + ACTIONS(6472), 1, anon_sym_SQUOTE, - ACTIONS(6482), 1, + ACTIONS(6474), 1, anon_sym_LPAREN, - STATE(2306), 1, + STATE(2274), 1, sym_link_title, - [83060] = 3, - ACTIONS(389), 1, - sym__close_block, - STATE(2080), 1, + [82890] = 1, + ACTIONS(2940), 5, + sym__no_indented_chunk, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_LPAREN, + aux_sym__newline_token1, + [82898] = 3, + ACTIONS(6825), 1, + sym__block_close, + STATE(1479), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6835), 3, + ACTIONS(5519), 3, sym__block_continuation, sym__block_quote_continuation, sym__last_token_whitespace, - [83072] = 5, - ACTIONS(6478), 1, + [82910] = 5, + ACTIONS(6470), 1, anon_sym_DQUOTE, - ACTIONS(6480), 1, + ACTIONS(6472), 1, anon_sym_SQUOTE, - ACTIONS(6482), 1, + ACTIONS(6474), 1, anon_sym_LPAREN, - ACTIONS(6850), 1, + ACTIONS(6827), 1, sym__no_indented_chunk, - STATE(2202), 1, + STATE(2236), 1, sym_link_title, - [83088] = 5, - ACTIONS(6717), 1, + [82926] = 3, + ACTIONS(6829), 1, + sym__block_close, + STATE(2085), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6831), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + [82938] = 5, + ACTIONS(6707), 1, sym__whitespace_ge_2, - ACTIONS(6719), 1, + ACTIONS(6709), 1, aux_sym__whitespace_token1, - ACTIONS(6813), 1, + ACTIONS(6812), 1, aux_sym__newline_token1, - STATE(326), 1, + STATE(315), 1, sym__newline, - STATE(2035), 1, + STATE(2034), 1, sym__whitespace, - [83104] = 3, - ACTIONS(389), 1, - sym__close_block, - STATE(2079), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6852), 3, - sym__block_continuation, - sym__block_quote_continuation, - sym__last_token_whitespace, - [83116] = 5, - ACTIONS(6478), 1, - anon_sym_DQUOTE, - ACTIONS(6480), 1, - anon_sym_SQUOTE, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6727), 1, - sym__no_indented_chunk, - STATE(2199), 1, - sym_link_title, - [83132] = 5, - ACTIONS(1490), 1, - sym__no_indented_chunk, - ACTIONS(6478), 1, - anon_sym_DQUOTE, - ACTIONS(6480), 1, - anon_sym_SQUOTE, - ACTIONS(6482), 1, - anon_sym_LPAREN, - STATE(2150), 1, - sym_link_title, - [83148] = 5, - ACTIONS(6717), 1, + [82954] = 2, + ACTIONS(6835), 1, + aux_sym__whitespace_token1, + ACTIONS(6833), 4, + anon_sym_SLASH, + anon_sym_GT, sym__whitespace_ge_2, - ACTIONS(6719), 1, + aux_sym__newline_token1, + [82964] = 5, + ACTIONS(6707), 1, + sym__whitespace_ge_2, + ACTIONS(6709), 1, aux_sym__whitespace_token1, - ACTIONS(6813), 1, + ACTIONS(6812), 1, aux_sym__newline_token1, - STATE(314), 1, + STATE(292), 1, sym__newline, - STATE(2041), 1, + STATE(2038), 1, sym__whitespace, - [83164] = 5, - ACTIONS(1327), 1, - sym__no_indented_chunk, - ACTIONS(6478), 1, + [82980] = 5, + ACTIONS(6470), 1, anon_sym_DQUOTE, - ACTIONS(6480), 1, + ACTIONS(6472), 1, anon_sym_SQUOTE, - ACTIONS(6482), 1, + ACTIONS(6474), 1, anon_sym_LPAREN, - STATE(2300), 1, + ACTIONS(6765), 1, + sym__no_indented_chunk, + STATE(2326), 1, sym_link_title, - [83180] = 5, - ACTIONS(1610), 1, + [82996] = 5, + ACTIONS(1573), 1, sym__no_indented_chunk, - ACTIONS(6478), 1, + ACTIONS(6470), 1, anon_sym_DQUOTE, - ACTIONS(6480), 1, + ACTIONS(6472), 1, anon_sym_SQUOTE, - ACTIONS(6482), 1, + ACTIONS(6474), 1, anon_sym_LPAREN, - STATE(2193), 1, + STATE(2257), 1, sym_link_title, - [83196] = 5, - ACTIONS(6717), 1, + [83012] = 5, + ACTIONS(6707), 1, sym__whitespace_ge_2, - ACTIONS(6719), 1, + ACTIONS(6709), 1, aux_sym__whitespace_token1, - ACTIONS(6811), 1, + ACTIONS(6812), 1, aux_sym__newline_token1, - STATE(283), 1, + STATE(284), 1, sym__newline, - STATE(2038), 1, + STATE(2032), 1, sym__whitespace, - [83212] = 5, - ACTIONS(1304), 1, + [83028] = 5, + ACTIONS(1571), 1, sym__no_indented_chunk, - ACTIONS(6478), 1, + ACTIONS(6470), 1, anon_sym_DQUOTE, - ACTIONS(6480), 1, + ACTIONS(6472), 1, anon_sym_SQUOTE, - ACTIONS(6482), 1, + ACTIONS(6474), 1, anon_sym_LPAREN, - STATE(2298), 1, + STATE(2160), 1, sym_link_title, - [83228] = 5, - ACTIONS(6717), 1, - sym__whitespace_ge_2, - ACTIONS(6719), 1, - aux_sym__whitespace_token1, - ACTIONS(6811), 1, - aux_sym__newline_token1, - STATE(281), 1, - sym__newline, - STATE(2034), 1, - sym__whitespace, - [83244] = 5, - ACTIONS(6478), 1, + [83044] = 5, + ACTIONS(6470), 1, anon_sym_DQUOTE, - ACTIONS(6480), 1, + ACTIONS(6472), 1, anon_sym_SQUOTE, - ACTIONS(6482), 1, + ACTIONS(6474), 1, anon_sym_LPAREN, - ACTIONS(6747), 1, + ACTIONS(6731), 1, sym__no_indented_chunk, - STATE(2296), 1, + STATE(2248), 1, sym_link_title, - [83260] = 5, - ACTIONS(1387), 1, - sym__no_indented_chunk, - ACTIONS(6478), 1, + [83060] = 2, + ACTIONS(6839), 1, + aux_sym__whitespace_token1, + ACTIONS(6837), 4, + anon_sym_SLASH, + anon_sym_GT, + sym__whitespace_ge_2, + aux_sym__newline_token1, + [83070] = 3, + ACTIONS(389), 1, + sym__trigger_error, + STATE(2099), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6798), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + [83082] = 5, + ACTIONS(6470), 1, anon_sym_DQUOTE, - ACTIONS(6480), 1, + ACTIONS(6472), 1, anon_sym_SQUOTE, - ACTIONS(6482), 1, + ACTIONS(6474), 1, anon_sym_LPAREN, - STATE(2151), 1, + ACTIONS(6841), 1, + sym__no_indented_chunk, + STATE(2277), 1, sym_link_title, - [83276] = 4, - ACTIONS(6478), 1, + [83098] = 3, + ACTIONS(403), 1, + sym__trigger_error, + STATE(2099), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6843), 3, + sym__block_continuation, + sym__block_quote_continuation, + sym__last_token_whitespace, + [83110] = 5, + ACTIONS(1606), 1, + sym__no_indented_chunk, + ACTIONS(6470), 1, anon_sym_DQUOTE, - ACTIONS(6480), 1, + ACTIONS(6472), 1, anon_sym_SQUOTE, - ACTIONS(6482), 1, + ACTIONS(6474), 1, anon_sym_LPAREN, - STATE(2300), 1, + STATE(2250), 1, sym_link_title, - [83289] = 4, - ACTIONS(6478), 1, + [83126] = 5, + ACTIONS(1608), 1, + sym__no_indented_chunk, + ACTIONS(6470), 1, anon_sym_DQUOTE, - ACTIONS(6480), 1, + ACTIONS(6472), 1, anon_sym_SQUOTE, - ACTIONS(6482), 1, + ACTIONS(6474), 1, anon_sym_LPAREN, - STATE(2204), 1, + STATE(2249), 1, sym_link_title, - [83302] = 2, - ACTIONS(6856), 1, + [83142] = 2, + ACTIONS(6848), 1, aux_sym__whitespace_token1, - ACTIONS(6854), 3, + ACTIONS(6846), 3, anon_sym_RPAREN, sym__whitespace_ge_2, aux_sym__newline_token1, - [83311] = 4, - ACTIONS(6478), 1, + [83151] = 4, + ACTIONS(6470), 1, anon_sym_DQUOTE, - ACTIONS(6480), 1, + ACTIONS(6472), 1, anon_sym_SQUOTE, - ACTIONS(6482), 1, + ACTIONS(6474), 1, anon_sym_LPAREN, - STATE(2296), 1, + STATE(2160), 1, sym_link_title, - [83324] = 4, - ACTIONS(6478), 1, + [83164] = 4, + ACTIONS(6470), 1, anon_sym_DQUOTE, - ACTIONS(6480), 1, + ACTIONS(6472), 1, anon_sym_SQUOTE, - ACTIONS(6482), 1, + ACTIONS(6474), 1, anon_sym_LPAREN, - STATE(2199), 1, + STATE(2249), 1, sym_link_title, - [83337] = 4, - ACTIONS(6478), 1, + [83177] = 4, + ACTIONS(6470), 1, anon_sym_DQUOTE, - ACTIONS(6480), 1, + ACTIONS(6472), 1, anon_sym_SQUOTE, - ACTIONS(6482), 1, + ACTIONS(6474), 1, anon_sym_LPAREN, - STATE(2193), 1, + STATE(2248), 1, sym_link_title, - [83350] = 2, - ACTIONS(6860), 1, - aux_sym__whitespace_token1, - ACTIONS(6858), 3, - anon_sym_RPAREN, - sym__whitespace_ge_2, - aux_sym__newline_token1, - [83359] = 4, - ACTIONS(6478), 1, + [83190] = 4, + ACTIONS(6470), 1, anon_sym_DQUOTE, - ACTIONS(6480), 1, + ACTIONS(6472), 1, anon_sym_SQUOTE, - ACTIONS(6482), 1, + ACTIONS(6474), 1, anon_sym_LPAREN, - STATE(2298), 1, + STATE(2326), 1, sym_link_title, - [83372] = 4, - ACTIONS(6478), 1, + [83203] = 4, + ACTIONS(6470), 1, anon_sym_DQUOTE, - ACTIONS(6480), 1, + ACTIONS(6472), 1, anon_sym_SQUOTE, - ACTIONS(6482), 1, + ACTIONS(6474), 1, anon_sym_LPAREN, - STATE(2295), 1, + STATE(2277), 1, sym_link_title, - [83385] = 2, - ACTIONS(5049), 1, - aux_sym__whitespace_token1, - ACTIONS(5047), 3, - anon_sym_RPAREN, - sym__whitespace_ge_2, - aux_sym__newline_token1, - [83394] = 4, - ACTIONS(6478), 1, + [83216] = 4, + ACTIONS(6470), 1, anon_sym_DQUOTE, - ACTIONS(6480), 1, + ACTIONS(6472), 1, anon_sym_SQUOTE, - ACTIONS(6482), 1, + ACTIONS(6474), 1, anon_sym_LPAREN, - STATE(2150), 1, + STATE(2250), 1, sym_link_title, - [83407] = 4, - ACTIONS(6478), 1, + [83229] = 4, + ACTIONS(6470), 1, anon_sym_DQUOTE, - ACTIONS(6480), 1, + ACTIONS(6472), 1, anon_sym_SQUOTE, - ACTIONS(6482), 1, + ACTIONS(6474), 1, anon_sym_LPAREN, - STATE(2293), 1, + STATE(2241), 1, sym_link_title, - [83420] = 4, - ACTIONS(6478), 1, + [83242] = 4, + ACTIONS(6470), 1, + anon_sym_DQUOTE, + ACTIONS(6472), 1, + anon_sym_SQUOTE, + ACTIONS(6474), 1, + anon_sym_LPAREN, + STATE(2185), 1, + sym_link_title, + [83255] = 2, + ACTIONS(5225), 1, + aux_sym__whitespace_token1, + ACTIONS(5223), 3, + anon_sym_RPAREN, + sym__whitespace_ge_2, + aux_sym__newline_token1, + [83264] = 2, + ACTIONS(6852), 1, + aux_sym__whitespace_token1, + ACTIONS(6850), 3, + anon_sym_RPAREN, + sym__whitespace_ge_2, + aux_sym__newline_token1, + [83273] = 4, + ACTIONS(6470), 1, anon_sym_DQUOTE, - ACTIONS(6480), 1, + ACTIONS(6472), 1, anon_sym_SQUOTE, - ACTIONS(6482), 1, + ACTIONS(6474), 1, anon_sym_LPAREN, - STATE(2151), 1, + STATE(2234), 1, sym_link_title, - [83433] = 2, - ACTIONS(4984), 1, + [83286] = 2, + ACTIONS(4866), 1, aux_sym__whitespace_token1, - ACTIONS(4980), 3, + ACTIONS(4862), 3, anon_sym_RPAREN, sym__whitespace_ge_2, aux_sym__newline_token1, - [83442] = 4, - ACTIONS(6478), 1, + [83295] = 4, + ACTIONS(6470), 1, anon_sym_DQUOTE, - ACTIONS(6480), 1, + ACTIONS(6472), 1, anon_sym_SQUOTE, - ACTIONS(6482), 1, + ACTIONS(6474), 1, anon_sym_LPAREN, - STATE(2181), 1, + STATE(2201), 1, sym_link_title, - [83455] = 4, - ACTIONS(6478), 1, + [83308] = 4, + ACTIONS(6470), 1, anon_sym_DQUOTE, - ACTIONS(6480), 1, + ACTIONS(6472), 1, anon_sym_SQUOTE, - ACTIONS(6482), 1, + ACTIONS(6474), 1, anon_sym_LPAREN, - STATE(2314), 1, + STATE(2274), 1, sym_link_title, - [83468] = 4, - ACTIONS(6478), 1, + [83321] = 4, + ACTIONS(6470), 1, anon_sym_DQUOTE, - ACTIONS(6480), 1, + ACTIONS(6472), 1, anon_sym_SQUOTE, - ACTIONS(6482), 1, + ACTIONS(6474), 1, anon_sym_LPAREN, - STATE(2202), 1, + STATE(2236), 1, sym_link_title, - [83481] = 4, - ACTIONS(6478), 1, + [83334] = 4, + ACTIONS(6470), 1, anon_sym_DQUOTE, - ACTIONS(6480), 1, + ACTIONS(6472), 1, anon_sym_SQUOTE, - ACTIONS(6482), 1, + ACTIONS(6474), 1, anon_sym_LPAREN, - STATE(2306), 1, + STATE(2215), 1, + sym_link_title, + [83347] = 4, + ACTIONS(6470), 1, + anon_sym_DQUOTE, + ACTIONS(6472), 1, + anon_sym_SQUOTE, + ACTIONS(6474), 1, + anon_sym_LPAREN, + STATE(2257), 1, sym_link_title, - [83494] = 3, + [83360] = 3, + ACTIONS(6854), 1, + anon_sym_LPAREN, + ACTIONS(6856), 1, + anon_sym_LBRACK, + STATE(751), 1, + sym_link_label, + [83370] = 3, + ACTIONS(6858), 1, + sym__split_token, + ACTIONS(6860), 1, + sym__soft_line_break_marker, + STATE(2135), 1, + aux_sym__soft_line_break_repeat1, + [83380] = 3, ACTIONS(6862), 1, sym__split_token, ACTIONS(6864), 1, sym__soft_line_break_marker, - STATE(2141), 1, + STATE(2125), 1, aux_sym__soft_line_break_repeat1, - [83504] = 3, - ACTIONS(6866), 1, + [83390] = 3, + ACTIONS(6858), 1, sym__split_token, - ACTIONS(6868), 1, + ACTIONS(6866), 1, sym__soft_line_break_marker, - STATE(2124), 1, + STATE(2135), 1, aux_sym__soft_line_break_repeat1, - [83514] = 3, - ACTIONS(6870), 1, + [83400] = 3, + ACTIONS(6868), 1, anon_sym_LPAREN, - ACTIONS(6872), 1, + ACTIONS(6870), 1, anon_sym_LBRACK, - STATE(780), 1, + STATE(750), 1, sym_link_label, - [83524] = 3, - ACTIONS(6874), 1, + [83410] = 3, + ACTIONS(6858), 1, sym__split_token, - ACTIONS(6876), 1, + ACTIONS(6872), 1, sym__soft_line_break_marker, - STATE(2136), 1, - aux_sym__soft_line_break_repeat1, - [83534] = 2, - STATE(2124), 1, + STATE(2135), 1, aux_sym__soft_line_break_repeat1, - ACTIONS(6878), 2, - sym__split_token, - sym__soft_line_break_marker, - [83542] = 3, - ACTIONS(6866), 1, + [83420] = 3, + ACTIONS(6874), 1, + anon_sym_LPAREN, + ACTIONS(6876), 1, + anon_sym_LBRACK, + STATE(691), 1, + sym_link_label, + [83430] = 3, + ACTIONS(6878), 1, sym__split_token, - ACTIONS(6881), 1, + ACTIONS(6880), 1, sym__soft_line_break_marker, - STATE(2124), 1, + STATE(2123), 1, aux_sym__soft_line_break_repeat1, - [83552] = 3, - ACTIONS(6883), 1, + [83440] = 3, + ACTIONS(6858), 1, sym__split_token, - ACTIONS(6885), 1, + ACTIONS(6882), 1, sym__soft_line_break_marker, - STATE(2139), 1, + STATE(2135), 1, aux_sym__soft_line_break_repeat1, - [83562] = 3, - ACTIONS(6887), 1, + [83450] = 3, + ACTIONS(6884), 1, sym__split_token, - ACTIONS(6889), 1, + ACTIONS(6886), 1, sym__soft_line_break_marker, - STATE(2128), 1, + STATE(2140), 1, aux_sym__soft_line_break_repeat1, - [83572] = 3, - ACTIONS(6866), 1, + [83460] = 3, + ACTIONS(6888), 1, sym__split_token, - ACTIONS(6891), 1, + ACTIONS(6890), 1, sym__soft_line_break_marker, - STATE(2124), 1, + STATE(2133), 1, aux_sym__soft_line_break_repeat1, - [83582] = 3, - ACTIONS(6893), 1, + [83470] = 3, + ACTIONS(6892), 1, sym__split_token, - ACTIONS(6895), 1, + ACTIONS(6894), 1, sym__soft_line_break_marker, - STATE(2121), 1, + STATE(2132), 1, aux_sym__soft_line_break_repeat1, - [83592] = 3, - ACTIONS(6866), 1, + [83480] = 3, + ACTIONS(6858), 1, sym__split_token, - ACTIONS(6897), 1, + ACTIONS(6896), 1, sym__soft_line_break_marker, - STATE(2124), 1, + STATE(2135), 1, aux_sym__soft_line_break_repeat1, - [83602] = 3, - ACTIONS(6899), 1, + [83490] = 3, + ACTIONS(6858), 1, sym__split_token, - ACTIONS(6901), 1, + ACTIONS(6898), 1, sym__soft_line_break_marker, - STATE(2125), 1, + STATE(2135), 1, aux_sym__soft_line_break_repeat1, - [83612] = 3, - ACTIONS(6903), 1, - anon_sym_LPAREN, - ACTIONS(6905), 1, - anon_sym_LBRACK, - STATE(840), 1, - sym_link_label, - [83622] = 3, - ACTIONS(6907), 1, + [83500] = 3, + ACTIONS(6900), 1, anon_sym_LPAREN, - ACTIONS(6909), 1, + ACTIONS(6902), 1, anon_sym_LBRACK, - STATE(789), 1, + STATE(696), 1, sym_link_label, - [83632] = 3, - ACTIONS(459), 1, + [83510] = 2, + STATE(2135), 1, + aux_sym__soft_line_break_repeat1, + ACTIONS(6904), 2, + sym__split_token, sym__soft_line_break_marker, - ACTIONS(4357), 1, + [83518] = 3, + ACTIONS(6858), 1, sym__split_token, - STATE(2130), 1, + ACTIONS(6907), 1, + sym__soft_line_break_marker, + STATE(2135), 1, aux_sym__soft_line_break_repeat1, - [83642] = 3, + [83528] = 3, + ACTIONS(6909), 1, + sym__split_token, ACTIONS(6911), 1, - anon_sym_LPAREN, - ACTIONS(6913), 1, - anon_sym_LBRACK, - STATE(745), 1, - sym_link_label, - [83652] = 3, - ACTIONS(6866), 1, + sym__soft_line_break_marker, + STATE(2138), 1, + aux_sym__soft_line_break_repeat1, + [83538] = 3, + ACTIONS(6858), 1, sym__split_token, - ACTIONS(6915), 1, + ACTIONS(6913), 1, sym__soft_line_break_marker, - STATE(2124), 1, + STATE(2135), 1, aux_sym__soft_line_break_repeat1, - [83662] = 3, - ACTIONS(6917), 1, + [83548] = 3, + ACTIONS(6915), 1, anon_sym_LPAREN, - ACTIONS(6919), 1, + ACTIONS(6917), 1, anon_sym_LBRACK, - STATE(746), 1, + STATE(840), 1, sym_link_label, - [83672] = 3, - ACTIONS(6921), 1, + [83558] = 3, + ACTIONS(6858), 1, sym__split_token, - ACTIONS(6923), 1, + ACTIONS(6919), 1, sym__soft_line_break_marker, - STATE(2142), 1, + STATE(2135), 1, aux_sym__soft_line_break_repeat1, - [83682] = 3, - ACTIONS(6866), 1, - sym__split_token, - ACTIONS(6925), 1, + [83568] = 3, + ACTIONS(455), 1, sym__soft_line_break_marker, - STATE(2124), 1, + ACTIONS(4339), 1, + sym__split_token, + STATE(2136), 1, aux_sym__soft_line_break_repeat1, - [83692] = 3, - ACTIONS(6866), 1, + [83578] = 3, + ACTIONS(6921), 1, + anon_sym_LPAREN, + ACTIONS(6923), 1, + anon_sym_LBRACK, + STATE(842), 1, + sym_link_label, + [83588] = 3, + ACTIONS(6925), 1, sym__split_token, ACTIONS(6927), 1, sym__soft_line_break_marker, - STATE(2124), 1, + STATE(2121), 1, aux_sym__soft_line_break_repeat1, - [83702] = 3, - ACTIONS(6866), 1, - sym__split_token, + [83598] = 3, ACTIONS(6929), 1, - sym__soft_line_break_marker, - STATE(2124), 1, - aux_sym__soft_line_break_repeat1, - [83712] = 3, - ACTIONS(6866), 1, sym__split_token, ACTIONS(6931), 1, sym__soft_line_break_marker, - STATE(2124), 1, + STATE(2128), 1, aux_sym__soft_line_break_repeat1, - [83722] = 3, + [83608] = 2, ACTIONS(6933), 1, - anon_sym_LPAREN, + sym__block_close, ACTIONS(6935), 1, - anon_sym_LBRACK, - STATE(836), 1, - sym_link_label, - [83732] = 3, - ACTIONS(6937), 1, - sym__split_token, - ACTIONS(6939), 1, - sym__soft_line_break_marker, - STATE(2140), 1, - aux_sym__soft_line_break_repeat1, - [83742] = 2, - ACTIONS(6941), 1, + sym__fenced_code_block_end_tilde, + [83615] = 2, + ACTIONS(4387), 1, sym__block_close, - ACTIONS(6943), 1, + ACTIONS(4389), 1, sym__fenced_code_block_end_tilde, - [83749] = 2, - ACTIONS(5180), 1, - aux_sym__newline_token1, - STATE(2530), 1, - sym__newline, - [83756] = 2, - ACTIONS(4544), 1, + [83622] = 2, + ACTIONS(4538), 1, sym__block_close, - ACTIONS(4546), 1, + ACTIONS(4540), 1, sym__fenced_code_block_end_backtick, - [83763] = 2, - ACTIONS(1622), 1, + [83629] = 2, + ACTIONS(1654), 1, aux_sym__newline_token1, - STATE(415), 1, + STATE(384), 1, sym__newline, - [83770] = 2, - ACTIONS(4544), 1, + [83636] = 2, + ACTIONS(4538), 1, sym__block_close, - ACTIONS(4546), 1, + ACTIONS(4540), 1, sym__fenced_code_block_end_tilde, - [83777] = 2, - ACTIONS(1622), 1, + [83643] = 2, + ACTIONS(4967), 1, aux_sym__newline_token1, - STATE(414), 1, + STATE(2410), 1, sym__newline, - [83784] = 2, - ACTIONS(1622), 1, + [83650] = 2, + ACTIONS(1626), 1, aux_sym__newline_token1, - STATE(382), 1, + STATE(1677), 1, sym__newline, - [83791] = 2, - ACTIONS(1622), 1, + [83657] = 2, + ACTIONS(1614), 1, aux_sym__newline_token1, - STATE(420), 1, + STATE(1827), 1, sym__newline, - [83798] = 2, - ACTIONS(5180), 1, + [83664] = 2, + ACTIONS(6937), 1, + sym__block_close, + ACTIONS(6939), 1, + sym__fenced_code_block_end_backtick, + [83671] = 2, + ACTIONS(4967), 1, aux_sym__newline_token1, - STATE(2404), 1, + STATE(2411), 1, sym__newline, - [83805] = 2, - ACTIONS(5180), 1, + [83678] = 2, + ACTIONS(4967), 1, aux_sym__newline_token1, - STATE(2494), 1, + STATE(2415), 1, sym__newline, - [83812] = 2, - ACTIONS(6945), 1, - sym__block_close, - ACTIONS(6947), 1, - sym__fenced_code_block_end_backtick, - [83819] = 2, - ACTIONS(5180), 1, + [83685] = 2, + ACTIONS(4967), 1, aux_sym__newline_token1, - STATE(2407), 1, + STATE(2422), 1, sym__newline, - [83826] = 2, - ACTIONS(4548), 1, + [83692] = 2, + ACTIONS(4558), 1, sym__block_close, - ACTIONS(4550), 1, + ACTIONS(4560), 1, sym__fenced_code_block_end_backtick, - [83833] = 2, - ACTIONS(5180), 1, + [83699] = 2, + ACTIONS(4031), 1, aux_sym__newline_token1, - STATE(2411), 1, + STATE(1094), 1, sym__newline, - [83840] = 2, - ACTIONS(4548), 1, + [83706] = 2, + ACTIONS(4558), 1, sym__block_close, - ACTIONS(4550), 1, + ACTIONS(4560), 1, sym__fenced_code_block_end_tilde, - [83847] = 2, - ACTIONS(5180), 1, + [83713] = 2, + ACTIONS(1654), 1, aux_sym__newline_token1, - STATE(2415), 1, + STATE(423), 1, sym__newline, - [83854] = 2, - ACTIONS(4041), 1, + [83720] = 2, + ACTIONS(4015), 1, aux_sym__newline_token1, - STATE(1105), 1, + STATE(1039), 1, sym__newline, - [83861] = 2, - ACTIONS(4039), 1, + [83727] = 2, + ACTIONS(4031), 1, aux_sym__newline_token1, - STATE(1111), 1, + STATE(1101), 1, sym__newline, - [83868] = 2, - ACTIONS(6949), 1, + [83734] = 2, + ACTIONS(6941), 1, sym__block_close, - ACTIONS(6951), 1, + ACTIONS(6943), 1, sym__fenced_code_block_end_backtick, - [83875] = 2, - ACTIONS(4041), 1, + [83741] = 2, + ACTIONS(4015), 1, aux_sym__newline_token1, - STATE(1039), 1, + STATE(1100), 1, sym__newline, - [83882] = 2, - ACTIONS(6949), 1, + [83748] = 2, + ACTIONS(6941), 1, sym__block_close, - ACTIONS(6951), 1, + ACTIONS(6943), 1, sym__fenced_code_block_end_tilde, - [83889] = 2, - ACTIONS(1622), 1, - aux_sym__newline_token1, - STATE(394), 1, - sym__newline, - [83896] = 2, - ACTIONS(1656), 1, - aux_sym__newline_token1, - STATE(1653), 1, - sym__newline, - [83903] = 2, - ACTIONS(4039), 1, + [83755] = 2, + ACTIONS(4967), 1, aux_sym__newline_token1, - STATE(1110), 1, + STATE(2486), 1, sym__newline, - [83910] = 2, - ACTIONS(1646), 1, + [83762] = 2, + ACTIONS(4967), 1, aux_sym__newline_token1, - STATE(1838), 1, + STATE(2457), 1, sym__newline, - [83917] = 2, - ACTIONS(5180), 1, + [83769] = 2, + ACTIONS(4967), 1, aux_sym__newline_token1, - STATE(2452), 1, + STATE(2458), 1, sym__newline, - [83924] = 2, - ACTIONS(5180), 1, + [83776] = 2, + ACTIONS(4967), 1, aux_sym__newline_token1, - STATE(2331), 1, + STATE(2459), 1, sym__newline, - [83931] = 2, - ACTIONS(5180), 1, + [83783] = 2, + ACTIONS(4967), 1, aux_sym__newline_token1, - STATE(2458), 1, + STATE(2461), 1, sym__newline, - [83938] = 2, - ACTIONS(5180), 1, + [83790] = 2, + ACTIONS(4031), 1, aux_sym__newline_token1, - STATE(2465), 1, + STATE(1076), 1, sym__newline, - [83945] = 2, - ACTIONS(4041), 1, + [83797] = 2, + ACTIONS(4015), 1, aux_sym__newline_token1, - STATE(1106), 1, + STATE(1071), 1, sym__newline, - [83952] = 2, - ACTIONS(4039), 1, + [83804] = 2, + ACTIONS(4967), 1, aux_sym__newline_token1, - STATE(1104), 1, + STATE(2511), 1, sym__newline, - [83959] = 2, - ACTIONS(1614), 1, + [83811] = 2, + ACTIONS(4031), 1, aux_sym__newline_token1, - STATE(1821), 1, + STATE(1040), 1, sym__newline, - [83966] = 2, - ACTIONS(6953), 1, + [83818] = 2, + ACTIONS(4015), 1, aux_sym__newline_token1, - STATE(2386), 1, + STATE(1069), 1, sym__newline, - [83973] = 2, - ACTIONS(4041), 1, + [83825] = 2, + ACTIONS(1628), 1, aux_sym__newline_token1, - STATE(1102), 1, + STATE(1838), 1, sym__newline, - [83980] = 2, - ACTIONS(4039), 1, + [83832] = 2, + ACTIONS(6945), 1, aux_sym__newline_token1, - STATE(1101), 1, + STATE(2343), 1, sym__newline, - [83987] = 2, - ACTIONS(6945), 1, + [83839] = 2, + ACTIONS(4471), 1, sym__block_close, - ACTIONS(6947), 1, + ACTIONS(4473), 1, sym__fenced_code_block_end_tilde, - [83994] = 2, - ACTIONS(1622), 1, + [83846] = 2, + ACTIONS(4967), 1, aux_sym__newline_token1, - STATE(417), 1, + STATE(2495), 1, sym__newline, - [84001] = 2, - ACTIONS(5180), 1, + [83853] = 2, + ACTIONS(4967), 1, aux_sym__newline_token1, - STATE(2499), 1, + STATE(2498), 1, sym__newline, - [84008] = 2, - ACTIONS(4520), 1, - sym__block_close, - ACTIONS(4522), 1, - sym__fenced_code_block_end_backtick, - [84015] = 2, - ACTIONS(4520), 1, - sym__block_close, - ACTIONS(4522), 1, - sym__fenced_code_block_end_tilde, - [84022] = 2, - ACTIONS(5180), 1, + [83860] = 2, + ACTIONS(4967), 1, aux_sym__newline_token1, STATE(2503), 1, sym__newline, - [84029] = 2, - ACTIONS(5180), 1, + [83867] = 2, + ACTIONS(4967), 1, aux_sym__newline_token1, STATE(2509), 1, sym__newline, - [84036] = 2, - ACTIONS(4516), 1, + [83874] = 2, + ACTIONS(4031), 1, + aux_sym__newline_token1, + STATE(1107), 1, + sym__newline, + [83881] = 2, + ACTIONS(4445), 1, sym__block_close, - ACTIONS(4518), 1, + ACTIONS(4447), 1, sym__fenced_code_block_end_tilde, - [84043] = 2, - ACTIONS(4504), 1, - sym__block_close, - ACTIONS(4506), 1, - sym__fenced_code_block_end_backtick, - [84050] = 2, - ACTIONS(5180), 1, + [83888] = 2, + ACTIONS(1654), 1, aux_sym__newline_token1, - STATE(2511), 1, + STATE(412), 1, sym__newline, - [84057] = 2, - ACTIONS(4041), 1, + [83895] = 2, + ACTIONS(1652), 1, aux_sym__newline_token1, - STATE(1095), 1, + STATE(919), 1, sym__newline, - [84064] = 2, - ACTIONS(4039), 1, + [83902] = 2, + ACTIONS(4445), 1, + sym__block_close, + ACTIONS(4447), 1, + sym__fenced_code_block_end_backtick, + [83909] = 2, + ACTIONS(1644), 1, aux_sym__newline_token1, - STATE(1094), 1, + STATE(413), 1, sym__newline, - [84071] = 2, - ACTIONS(4041), 1, + [83916] = 2, + ACTIONS(4015), 1, aux_sym__newline_token1, - STATE(1092), 1, + STATE(1111), 1, sym__newline, - [84078] = 2, - ACTIONS(1622), 1, + [83923] = 2, + ACTIONS(4031), 1, aux_sym__newline_token1, - STATE(392), 1, + STATE(1109), 1, sym__newline, - [84085] = 2, - ACTIONS(4516), 1, + [83930] = 2, + ACTIONS(4492), 1, sym__block_close, - ACTIONS(4518), 1, + ACTIONS(4494), 1, sym__fenced_code_block_end_backtick, - [84092] = 2, - ACTIONS(4560), 1, + [83937] = 2, + ACTIONS(4015), 1, + aux_sym__newline_token1, + STATE(1098), 1, + sym__newline, + [83944] = 2, + ACTIONS(4967), 1, + aux_sym__newline_token1, + STATE(2492), 1, + sym__newline, + [83951] = 2, + ACTIONS(4967), 1, + aux_sym__newline_token1, + STATE(2514), 1, + sym__newline, + [83958] = 2, + ACTIONS(4383), 1, sym__block_close, - ACTIONS(4562), 1, + ACTIONS(4385), 1, sym__fenced_code_block_end_backtick, - [84099] = 2, - ACTIONS(5180), 1, + [83965] = 2, + ACTIONS(4967), 1, aux_sym__newline_token1, - STATE(2472), 1, + STATE(2484), 1, sym__newline, - [84106] = 2, - ACTIONS(4560), 1, + [83972] = 2, + ACTIONS(4383), 1, sym__block_close, - ACTIONS(4562), 1, + ACTIONS(4385), 1, sym__fenced_code_block_end_tilde, - [84113] = 2, - ACTIONS(6955), 1, + [83979] = 2, + ACTIONS(4453), 1, sym__block_close, - ACTIONS(6957), 1, + ACTIONS(4455), 1, sym__fenced_code_block_end_tilde, - [84120] = 2, - ACTIONS(1622), 1, + [83986] = 2, + ACTIONS(4967), 1, aux_sym__newline_token1, - STATE(386), 1, + STATE(2497), 1, sym__newline, - [84127] = 2, - ACTIONS(4039), 1, + [83993] = 2, + ACTIONS(4967), 1, aux_sym__newline_token1, - STATE(1091), 1, + STATE(2389), 1, sym__newline, - [84134] = 2, - ACTIONS(6955), 1, + [84000] = 2, + ACTIONS(1654), 1, + aux_sym__newline_token1, + STATE(424), 1, + sym__newline, + [84007] = 2, + ACTIONS(4453), 1, sym__block_close, - ACTIONS(6957), 1, + ACTIONS(4455), 1, sym__fenced_code_block_end_backtick, - [84141] = 2, - ACTIONS(1622), 1, + [84014] = 2, + ACTIONS(4031), 1, aux_sym__newline_token1, - STATE(383), 1, + STATE(1082), 1, sym__newline, - [84148] = 2, - ACTIONS(5180), 1, + [84021] = 2, + ACTIONS(6937), 1, + sym__block_close, + ACTIONS(6939), 1, + sym__fenced_code_block_end_tilde, + [84028] = 2, + ACTIONS(4479), 1, + sym__block_close, + ACTIONS(4481), 1, + sym__fenced_code_block_end_backtick, + [84035] = 2, + ACTIONS(4015), 1, aux_sym__newline_token1, - STATE(2531), 1, + STATE(1081), 1, sym__newline, - [84155] = 2, - ACTIONS(1622), 1, + [84042] = 2, + ACTIONS(4479), 1, + sym__block_close, + ACTIONS(4481), 1, + sym__fenced_code_block_end_tilde, + [84049] = 2, + ACTIONS(1644), 1, aux_sym__newline_token1, - STATE(378), 1, + STATE(414), 1, sym__newline, - [84162] = 2, - ACTIONS(4568), 1, + [84056] = 2, + ACTIONS(4496), 1, + sym__block_close, + ACTIONS(4498), 1, + sym__fenced_code_block_end_tilde, + [84063] = 2, + ACTIONS(4496), 1, sym__block_close, - ACTIONS(4570), 1, + ACTIONS(4498), 1, sym__fenced_code_block_end_backtick, - [84169] = 2, - ACTIONS(4504), 1, + [84070] = 2, + ACTIONS(6947), 1, sym__block_close, - ACTIONS(4506), 1, - sym__fenced_code_block_end_tilde, - [84176] = 2, - ACTIONS(4568), 1, + ACTIONS(6949), 1, + sym__fenced_code_block_end_backtick, + [84077] = 2, + ACTIONS(4015), 1, + aux_sym__newline_token1, + STATE(1104), 1, + sym__newline, + [84084] = 2, + ACTIONS(6947), 1, sym__block_close, - ACTIONS(4570), 1, + ACTIONS(6949), 1, sym__fenced_code_block_end_tilde, - [84183] = 2, - ACTIONS(5180), 1, + [84091] = 2, + ACTIONS(6951), 1, aux_sym__newline_token1, - STATE(2514), 1, + STATE(2403), 1, sym__newline, - [84190] = 2, - ACTIONS(1662), 1, + [84098] = 2, + ACTIONS(1654), 1, aux_sym__newline_token1, - STATE(690), 1, + STATE(381), 1, sym__newline, - [84197] = 2, - ACTIONS(1646), 1, + [84105] = 2, + ACTIONS(4031), 1, aux_sym__newline_token1, - STATE(1821), 1, + STATE(1077), 1, sym__newline, - [84204] = 2, - ACTIONS(6941), 1, + [84112] = 2, + ACTIONS(4457), 1, sym__block_close, - ACTIONS(6943), 1, + ACTIONS(4459), 1, sym__fenced_code_block_end_backtick, - [84211] = 2, - ACTIONS(5180), 1, + [84119] = 2, + ACTIONS(4457), 1, + sym__block_close, + ACTIONS(4459), 1, + sym__fenced_code_block_end_tilde, + [84126] = 2, + ACTIONS(4031), 1, aux_sym__newline_token1, - STATE(2492), 1, + STATE(1106), 1, sym__newline, - [84218] = 2, - ACTIONS(4041), 1, + [84133] = 2, + ACTIONS(4483), 1, + sym__block_close, + ACTIONS(4485), 1, + sym__fenced_code_block_end_tilde, + [84140] = 2, + ACTIONS(4015), 1, aux_sym__newline_token1, - STATE(1082), 1, + STATE(1074), 1, sym__newline, - [84225] = 2, - ACTIONS(4039), 1, + [84147] = 2, + ACTIONS(4483), 1, + sym__block_close, + ACTIONS(4485), 1, + sym__fenced_code_block_end_backtick, + [84154] = 2, + ACTIONS(6953), 1, + sym__word_no_digit, + STATE(1976), 1, + sym__tag_name, + [84161] = 2, + ACTIONS(1666), 1, aux_sym__newline_token1, - STATE(1081), 1, + STATE(2047), 1, sym__newline, - [84232] = 2, - ACTIONS(4041), 1, + [84168] = 2, + ACTIONS(1626), 1, aux_sym__newline_token1, - STATE(1077), 1, + STATE(1660), 1, sym__newline, - [84239] = 2, - ACTIONS(4039), 1, + [84175] = 2, + ACTIONS(4967), 1, aux_sym__newline_token1, - STATE(1059), 1, + STATE(2429), 1, sym__newline, - [84246] = 2, - ACTIONS(6959), 1, - sym__block_close, - ACTIONS(6961), 1, - sym__fenced_code_block_end_tilde, - [84253] = 2, - ACTIONS(4039), 1, + [84182] = 2, + ACTIONS(4967), 1, aux_sym__newline_token1, - STATE(1076), 1, + STATE(2427), 1, sym__newline, - [84260] = 2, - ACTIONS(4041), 1, + [84189] = 2, + ACTIONS(4967), 1, aux_sym__newline_token1, - STATE(1062), 1, + STATE(2423), 1, sym__newline, - [84267] = 2, - ACTIONS(6959), 1, - sym__block_close, - ACTIONS(6961), 1, - sym__fenced_code_block_end_backtick, - [84274] = 2, - ACTIONS(5180), 1, + [84196] = 2, + ACTIONS(4967), 1, aux_sym__newline_token1, - STATE(2464), 1, + STATE(2417), 1, sym__newline, - [84281] = 2, - ACTIONS(5180), 1, + [84203] = 2, + ACTIONS(1614), 1, aux_sym__newline_token1, - STATE(2463), 1, + STATE(1838), 1, sym__newline, - [84288] = 2, - ACTIONS(1672), 1, + [84210] = 2, + ACTIONS(1656), 1, aux_sym__newline_token1, - STATE(405), 1, + STATE(798), 1, sym__newline, - [84295] = 2, - ACTIONS(1636), 1, + [84217] = 2, + ACTIONS(4031), 1, aux_sym__newline_token1, - STATE(2061), 1, + STATE(1058), 1, sym__newline, - [84302] = 2, - ACTIONS(1656), 1, + [84224] = 2, + ACTIONS(4015), 1, aux_sym__newline_token1, - STATE(1642), 1, + STATE(1055), 1, sym__newline, - [84309] = 2, - ACTIONS(1672), 1, + [84231] = 2, + ACTIONS(1644), 1, aux_sym__newline_token1, - STATE(408), 1, + STATE(411), 1, sym__newline, - [84316] = 2, - ACTIONS(4432), 1, - sym__block_close, - ACTIONS(4434), 1, - sym__fenced_code_block_end_tilde, - [84323] = 2, - ACTIONS(4432), 1, - sym__block_close, - ACTIONS(4434), 1, - sym__fenced_code_block_end_backtick, - [84330] = 2, - ACTIONS(5180), 1, + [84238] = 2, + ACTIONS(1654), 1, aux_sym__newline_token1, - STATE(2459), 1, + STATE(418), 1, sym__newline, - [84337] = 2, - ACTIONS(5180), 1, + [84245] = 2, + ACTIONS(1644), 1, aux_sym__newline_token1, - STATE(2521), 1, + STATE(409), 1, sym__newline, - [84344] = 2, - ACTIONS(5180), 1, + [84252] = 2, + ACTIONS(4031), 1, aux_sym__newline_token1, - STATE(2457), 1, + STATE(1049), 1, sym__newline, - [84351] = 2, - ACTIONS(4415), 1, + [84259] = 2, + ACTIONS(4492), 1, sym__block_close, - ACTIONS(4417), 1, + ACTIONS(4494), 1, sym__fenced_code_block_end_tilde, - [84358] = 2, - ACTIONS(4415), 1, - sym__block_close, - ACTIONS(4417), 1, - sym__fenced_code_block_end_backtick, - [84365] = 2, - ACTIONS(1672), 1, + [84266] = 2, + ACTIONS(4015), 1, aux_sym__newline_token1, - STATE(425), 1, + STATE(1048), 1, sym__newline, - [84372] = 2, - ACTIONS(4041), 1, + [84273] = 2, + ACTIONS(1654), 1, aux_sym__newline_token1, - STATE(1069), 1, + STATE(416), 1, sym__newline, - [84379] = 2, - ACTIONS(4039), 1, + [84280] = 2, + ACTIONS(1654), 1, aux_sym__newline_token1, - STATE(1056), 1, + STATE(387), 1, sym__newline, - [84386] = 2, - ACTIONS(6963), 1, - sym__word_no_digit, - STATE(1992), 1, - sym__tag_name, - [84393] = 2, - ACTIONS(4540), 1, - sym__block_close, - ACTIONS(4542), 1, - sym__fenced_code_block_end_backtick, - [84400] = 2, - ACTIONS(4041), 1, + [84287] = 2, + ACTIONS(4967), 1, aux_sym__newline_token1, - STATE(1050), 1, + STATE(2342), 1, sym__newline, - [84407] = 2, - ACTIONS(4540), 1, - sym__block_close, + [84294] = 2, ACTIONS(4542), 1, - sym__fenced_code_block_end_tilde, - [84414] = 2, - ACTIONS(4462), 1, sym__block_close, - ACTIONS(4464), 1, + ACTIONS(4544), 1, sym__fenced_code_block_end_backtick, - [84421] = 2, - ACTIONS(4039), 1, + [84301] = 2, + ACTIONS(4967), 1, aux_sym__newline_token1, - STATE(1046), 1, + STATE(2348), 1, sym__newline, - [84428] = 2, - ACTIONS(4389), 1, - sym__block_close, - ACTIONS(4391), 1, - sym__fenced_code_block_end_backtick, - [84435] = 2, - ACTIONS(4564), 1, - sym__block_close, - ACTIONS(4566), 1, - sym__fenced_code_block_end_backtick, - [84442] = 2, - ACTIONS(4389), 1, + [84308] = 2, + ACTIONS(4542), 1, sym__block_close, - ACTIONS(4391), 1, + ACTIONS(4544), 1, sym__fenced_code_block_end_tilde, - [84449] = 2, - ACTIONS(5180), 1, + [84315] = 2, + ACTIONS(4967), 1, aux_sym__newline_token1, - STATE(2409), 1, + STATE(2349), 1, sym__newline, - [84456] = 2, - ACTIONS(5180), 1, + [84322] = 2, + ACTIONS(4967), 1, aux_sym__newline_token1, - STATE(2405), 1, + STATE(2352), 1, sym__newline, - [84463] = 2, - ACTIONS(5180), 1, + [84329] = 2, + ACTIONS(1644), 1, aux_sym__newline_token1, - STATE(2403), 1, + STATE(408), 1, sym__newline, - [84470] = 2, - ACTIONS(5180), 1, + [84336] = 2, + ACTIONS(1644), 1, aux_sym__newline_token1, - STATE(2398), 1, + STATE(407), 1, sym__newline, - [84477] = 2, - ACTIONS(4041), 1, + [84343] = 2, + ACTIONS(1644), 1, aux_sym__newline_token1, - STATE(1065), 1, + STATE(406), 1, sym__newline, - [84484] = 2, - ACTIONS(4039), 1, + [84350] = 2, + ACTIONS(4031), 1, aux_sym__newline_token1, - STATE(1066), 1, + STATE(1045), 1, + sym__newline, + [84357] = 2, + ACTIONS(4015), 1, + aux_sym__newline_token1, + STATE(1044), 1, sym__newline, - [84491] = 2, - ACTIONS(4564), 1, + [84364] = 2, + ACTIONS(4371), 1, sym__block_close, - ACTIONS(4566), 1, - sym__fenced_code_block_end_tilde, - [84498] = 2, - ACTIONS(4572), 1, + ACTIONS(4373), 1, + sym__fenced_code_block_end_backtick, + [84371] = 2, + ACTIONS(6955), 1, sym__block_close, - ACTIONS(4574), 1, + ACTIONS(6957), 1, sym__fenced_code_block_end_backtick, - [84505] = 2, - ACTIONS(4041), 1, - aux_sym__newline_token1, - STATE(1068), 1, - sym__newline, - [84512] = 2, - ACTIONS(4572), 1, + [84378] = 2, + ACTIONS(4371), 1, sym__block_close, - ACTIONS(4574), 1, + ACTIONS(4373), 1, sym__fenced_code_block_end_tilde, - [84519] = 2, - ACTIONS(4039), 1, - aux_sym__newline_token1, - STATE(1070), 1, - sym__newline, - [84526] = 2, - ACTIONS(5180), 1, + [84385] = 2, + ACTIONS(4031), 1, aux_sym__newline_token1, - STATE(2341), 1, + STATE(1042), 1, sym__newline, - [84533] = 2, - ACTIONS(1654), 1, + [84392] = 2, + ACTIONS(1644), 1, aux_sym__newline_token1, - STATE(695), 1, + STATE(401), 1, sym__newline, - [84540] = 2, - ACTIONS(6965), 1, + [84399] = 2, + ACTIONS(6959), 1, + sym__block_close, + ACTIONS(6961), 1, + sym__fenced_code_block_end_tilde, + [84406] = 2, + ACTIONS(6933), 1, sym__block_close, - ACTIONS(6967), 1, + ACTIONS(6935), 1, sym__fenced_code_block_end_backtick, - [84547] = 2, - ACTIONS(5180), 1, - aux_sym__newline_token1, - STATE(2342), 1, - sym__newline, - [84554] = 2, - ACTIONS(6965), 1, + [84413] = 2, + ACTIONS(6955), 1, sym__block_close, - ACTIONS(6967), 1, + ACTIONS(6957), 1, sym__fenced_code_block_end_tilde, - [84561] = 2, - ACTIONS(1662), 1, + [84420] = 2, + ACTIONS(4015), 1, aux_sym__newline_token1, - STATE(796), 1, - sym__newline, - [84568] = 2, - ACTIONS(5180), 1, - aux_sym__newline_token1, - STATE(2343), 1, - sym__newline, - [84575] = 2, - ACTIONS(5180), 1, - aux_sym__newline_token1, - STATE(2348), 1, + STATE(1041), 1, sym__newline, - [84582] = 2, - ACTIONS(4041), 1, + [84427] = 2, + ACTIONS(4504), 1, + sym__block_close, + ACTIONS(4506), 1, + sym__fenced_code_block_end_backtick, + [84434] = 2, + ACTIONS(4967), 1, aux_sym__newline_token1, - STATE(1083), 1, + STATE(2374), 1, sym__newline, - [84589] = 2, - ACTIONS(4039), 1, + [84441] = 2, + ACTIONS(4967), 1, aux_sym__newline_token1, - STATE(1084), 1, + STATE(2378), 1, sym__newline, - [84596] = 2, - ACTIONS(6969), 1, + [84448] = 2, + ACTIONS(6959), 1, sym__block_close, - ACTIONS(6971), 1, + ACTIONS(6961), 1, sym__fenced_code_block_end_backtick, - [84603] = 2, - ACTIONS(4041), 1, + [84455] = 2, + ACTIONS(4967), 1, aux_sym__newline_token1, - STATE(1089), 1, + STATE(2400), 1, sym__newline, - [84610] = 1, - ACTIONS(6973), 2, - anon_sym_LPAREN, - anon_sym_LBRACK, - [84615] = 2, - ACTIONS(4039), 1, + [84462] = 2, + ACTIONS(4967), 1, aux_sym__newline_token1, - STATE(1093), 1, + STATE(2424), 1, sym__newline, - [84622] = 2, - ACTIONS(4385), 1, + [84469] = 2, + ACTIONS(6963), 1, sym__block_close, - ACTIONS(4387), 1, + ACTIONS(6965), 1, sym__fenced_code_block_end_backtick, - [84629] = 2, - ACTIONS(1658), 1, - aux_sym__newline_token1, - STATE(1754), 1, - sym__newline, - [84636] = 2, - ACTIONS(1614), 1, + [84476] = 2, + ACTIONS(4031), 1, aux_sym__newline_token1, - STATE(1838), 1, + STATE(1080), 1, sym__newline, - [84643] = 2, - ACTIONS(6969), 1, - sym__block_close, - ACTIONS(6971), 1, - sym__fenced_code_block_end_tilde, - [84650] = 2, - ACTIONS(6975), 1, + [84483] = 2, + ACTIONS(4449), 1, sym__block_close, - ACTIONS(6977), 1, + ACTIONS(4451), 1, sym__fenced_code_block_end_tilde, - [84657] = 2, - ACTIONS(5180), 1, + [84490] = 2, + ACTIONS(4015), 1, aux_sym__newline_token1, - STATE(2374), 1, + STATE(1096), 1, sym__newline, - [84664] = 2, - ACTIONS(6975), 1, - sym__block_close, - ACTIONS(6977), 1, - sym__fenced_code_block_end_backtick, - [84671] = 2, - ACTIONS(4385), 1, - sym__block_close, - ACTIONS(4387), 1, - sym__fenced_code_block_end_tilde, - [84678] = 2, - ACTIONS(5180), 1, + [84497] = 2, + ACTIONS(1642), 1, aux_sym__newline_token1, - STATE(2377), 1, + STATE(1763), 1, sym__newline, - [84685] = 2, - ACTIONS(4494), 1, - sym__block_close, - ACTIONS(4496), 1, - sym__fenced_code_block_end_tilde, - [84692] = 2, - ACTIONS(5180), 1, + [84504] = 2, + ACTIONS(1628), 1, aux_sym__newline_token1, - STATE(2384), 1, + STATE(1827), 1, sym__newline, - [84699] = 2, - ACTIONS(4494), 1, - sym__block_close, - ACTIONS(4496), 1, - sym__fenced_code_block_end_backtick, - [84706] = 2, - ACTIONS(5180), 1, + [84511] = 2, + ACTIONS(1644), 1, aux_sym__newline_token1, - STATE(2406), 1, + STATE(386), 1, sym__newline, - [84713] = 2, - ACTIONS(4041), 1, + [84518] = 2, + ACTIONS(4449), 1, + sym__block_close, + ACTIONS(4451), 1, + sym__fenced_code_block_end_backtick, + [84525] = 2, + ACTIONS(6963), 1, + sym__block_close, + ACTIONS(6965), 1, + sym__fenced_code_block_end_tilde, + [84532] = 2, + ACTIONS(1654), 1, aux_sym__newline_token1, - STATE(1103), 1, + STATE(395), 1, sym__newline, - [84720] = 2, - ACTIONS(4039), 1, + [84539] = 2, + ACTIONS(4031), 1, aux_sym__newline_token1, - STATE(1107), 1, + STATE(1072), 1, sym__newline, - [84727] = 2, - ACTIONS(6979), 1, + [84546] = 1, + ACTIONS(6967), 2, + anon_sym_LPAREN, + anon_sym_LBRACK, + [84551] = 2, + ACTIONS(4015), 1, aux_sym__newline_token1, - STATE(2378), 1, + STATE(1067), 1, sym__newline, - [84734] = 2, - ACTIONS(4436), 1, + [84558] = 2, + ACTIONS(4391), 1, sym__block_close, - ACTIONS(4438), 1, - sym__fenced_code_block_end_tilde, - [84741] = 2, - ACTIONS(6963), 1, - sym__word_no_digit, - STATE(1956), 1, - sym__tag_name, - [84748] = 2, - ACTIONS(1660), 1, + ACTIONS(4393), 1, + sym__fenced_code_block_end_backtick, + [84565] = 2, + ACTIONS(4967), 1, aux_sym__newline_token1, - STATE(852), 1, + STATE(2357), 1, sym__newline, - [84755] = 2, - ACTIONS(5180), 1, + [84572] = 2, + ACTIONS(4967), 1, aux_sym__newline_token1, - STATE(2447), 1, + STATE(2335), 1, sym__newline, - [84762] = 2, - ACTIONS(4041), 1, + [84579] = 2, + ACTIONS(4967), 1, aux_sym__newline_token1, - STATE(1112), 1, + STATE(2345), 1, sym__newline, - [84769] = 2, - ACTIONS(4039), 1, + [84586] = 2, + ACTIONS(4967), 1, aux_sym__newline_token1, - STATE(1090), 1, + STATE(2409), 1, sym__newline, - [84776] = 2, - ACTIONS(1672), 1, + [84593] = 2, + ACTIONS(4031), 1, aux_sym__newline_token1, - STATE(379), 1, + STATE(1061), 1, sym__newline, - [84783] = 2, - ACTIONS(4041), 1, + [84600] = 2, + ACTIONS(1644), 1, aux_sym__newline_token1, - STATE(1071), 1, + STATE(377), 1, sym__newline, - [84790] = 2, - ACTIONS(1672), 1, + [84607] = 2, + ACTIONS(6969), 1, + sym__block_close, + ACTIONS(6971), 1, + sym__fenced_code_block_end_backtick, + [84614] = 2, + ACTIONS(1644), 1, aux_sym__newline_token1, - STATE(390), 1, + STATE(391), 1, sym__newline, - [84797] = 2, - ACTIONS(1672), 1, + [84621] = 2, + ACTIONS(4015), 1, aux_sym__newline_token1, - STATE(391), 1, + STATE(1062), 1, sym__newline, - [84804] = 2, - ACTIONS(4500), 1, + [84628] = 2, + ACTIONS(4504), 1, sym__block_close, - ACTIONS(4502), 1, + ACTIONS(4506), 1, sym__fenced_code_block_end_tilde, - [84811] = 2, - ACTIONS(1672), 1, - aux_sym__newline_token1, - STATE(393), 1, - sym__newline, - [84818] = 2, - ACTIONS(4500), 1, + [84635] = 2, + ACTIONS(6969), 1, + sym__block_close, + ACTIONS(6971), 1, + sym__fenced_code_block_end_tilde, + [84642] = 2, + ACTIONS(4407), 1, + sym__block_close, + ACTIONS(4409), 1, + sym__fenced_code_block_end_tilde, + [84649] = 2, + ACTIONS(6953), 1, + sym__word_no_digit, + STATE(1969), 1, + sym__tag_name, + [84656] = 2, + ACTIONS(4407), 1, sym__block_close, - ACTIONS(4502), 1, + ACTIONS(4409), 1, sym__fenced_code_block_end_backtick, - [84825] = 2, - ACTIONS(1672), 1, + [84663] = 2, + ACTIONS(4391), 1, + sym__block_close, + ACTIONS(4393), 1, + sym__fenced_code_block_end_tilde, + [84670] = 2, + ACTIONS(1654), 1, aux_sym__newline_token1, - STATE(395), 1, + STATE(397), 1, sym__newline, - [84832] = 2, - ACTIONS(1630), 1, + [84677] = 2, + ACTIONS(4031), 1, aux_sym__newline_token1, - STATE(1724), 1, + STATE(1110), 1, sym__newline, - [84839] = 2, - ACTIONS(1636), 1, + [84684] = 2, + ACTIONS(4015), 1, aux_sym__newline_token1, - STATE(2054), 1, + STATE(1054), 1, sym__newline, - [84846] = 2, - ACTIONS(1658), 1, + [84691] = 2, + ACTIONS(6973), 1, + sym__block_close, + ACTIONS(6975), 1, + sym__fenced_code_block_end_tilde, + [84698] = 2, + ACTIONS(1646), 1, aux_sym__newline_token1, - STATE(1759), 1, + STATE(746), 1, sym__newline, - [84853] = 2, - ACTIONS(1660), 1, + [84705] = 2, + ACTIONS(1666), 1, aux_sym__newline_token1, - STATE(884), 1, + STATE(2057), 1, + sym__newline, + [84712] = 2, + ACTIONS(1642), 1, + aux_sym__newline_token1, + STATE(1756), 1, + sym__newline, + [84719] = 2, + ACTIONS(1630), 1, + aux_sym__newline_token1, + STATE(1722), 1, sym__newline, - [84860] = 2, - ACTIONS(4436), 1, + [84726] = 2, + ACTIONS(6973), 1, sym__block_close, - ACTIONS(4438), 1, + ACTIONS(6975), 1, + sym__fenced_code_block_end_backtick, + [84733] = 2, + ACTIONS(4471), 1, + sym__block_close, + ACTIONS(4473), 1, sym__fenced_code_block_end_backtick, - [84867] = 2, - ACTIONS(1672), 1, + [84740] = 2, + ACTIONS(1652), 1, aux_sym__newline_token1, - STATE(398), 1, + STATE(884), 1, sym__newline, - [84874] = 2, - ACTIONS(4536), 1, + [84747] = 2, + ACTIONS(4387), 1, sym__block_close, - ACTIONS(4538), 1, + ACTIONS(4389), 1, sym__fenced_code_block_end_backtick, - [84881] = 2, - ACTIONS(4039), 1, + [84754] = 2, + ACTIONS(1630), 1, aux_sym__newline_token1, - STATE(1075), 1, + STATE(1741), 1, sym__newline, - [84888] = 2, - ACTIONS(5180), 1, + [84761] = 2, + ACTIONS(4967), 1, aux_sym__newline_token1, - STATE(2369), 1, + STATE(2428), 1, sym__newline, - [84895] = 2, - ACTIONS(4536), 1, + [84768] = 2, + ACTIONS(4395), 1, sym__block_close, - ACTIONS(4538), 1, + ACTIONS(4397), 1, + sym__fenced_code_block_end_backtick, + [84775] = 2, + ACTIONS(4395), 1, + sym__block_close, + ACTIONS(4397), 1, sym__fenced_code_block_end_tilde, - [84902] = 2, - ACTIONS(1672), 1, - aux_sym__newline_token1, - STATE(411), 1, - sym__newline, - [84909] = 2, - ACTIONS(6981), 1, + [84782] = 2, + ACTIONS(4554), 1, sym__block_close, - ACTIONS(6983), 1, + ACTIONS(4556), 1, sym__fenced_code_block_end_tilde, - [84916] = 2, - ACTIONS(5180), 1, + [84789] = 2, + ACTIONS(4031), 1, aux_sym__newline_token1, - STATE(2367), 1, + STATE(1060), 1, sym__newline, - [84923] = 2, - ACTIONS(1672), 1, + [84796] = 2, + ACTIONS(4967), 1, aux_sym__newline_token1, - STATE(406), 1, + STATE(2413), 1, sym__newline, - [84930] = 2, - ACTIONS(4524), 1, + [84803] = 2, + ACTIONS(6977), 1, sym__block_close, - ACTIONS(4526), 1, + ACTIONS(6979), 1, sym__fenced_code_block_end_backtick, - [84937] = 2, - ACTIONS(4524), 1, - sym__block_close, - ACTIONS(4526), 1, - sym__fenced_code_block_end_tilde, - [84944] = 2, - ACTIONS(6981), 1, + [84810] = 2, + ACTIONS(4554), 1, sym__block_close, - ACTIONS(6983), 1, + ACTIONS(4556), 1, sym__fenced_code_block_end_backtick, - [84951] = 2, - ACTIONS(4039), 1, + [84817] = 2, + ACTIONS(4015), 1, aux_sym__newline_token1, - STATE(1058), 1, + STATE(1043), 1, sym__newline, - [84958] = 2, - ACTIONS(6985), 1, + [84824] = 2, + ACTIONS(6977), 1, sym__block_close, - ACTIONS(6987), 1, - sym__fenced_code_block_end_backtick, - [84965] = 2, - ACTIONS(4041), 1, + ACTIONS(6979), 1, + sym__fenced_code_block_end_tilde, + [84831] = 2, + ACTIONS(4031), 1, aux_sym__newline_token1, - STATE(1038), 1, + STATE(1093), 1, sym__newline, - [84972] = 2, - ACTIONS(5180), 1, + [84838] = 2, + ACTIONS(4015), 1, aux_sym__newline_token1, - STATE(2359), 1, + STATE(1057), 1, sym__newline, - [84979] = 2, - ACTIONS(6985), 1, - sym__block_close, - ACTIONS(6987), 1, - sym__fenced_code_block_end_tilde, - [84986] = 2, - ACTIONS(6963), 1, + [84845] = 2, + ACTIONS(4967), 1, + aux_sym__newline_token1, + STATE(2398), 1, + sym__newline, + [84852] = 2, + ACTIONS(6953), 1, sym__word_no_digit, - STATE(2009), 1, + STATE(2001), 1, sym__tag_name, - [84993] = 2, - ACTIONS(4462), 1, - sym__block_close, - ACTIONS(4464), 1, - sym__fenced_code_block_end_tilde, - [85000] = 2, - ACTIONS(5180), 1, + [84859] = 2, + ACTIONS(4967), 1, aux_sym__newline_token1, - STATE(2352), 1, + STATE(2478), 1, + sym__newline, + [84866] = 2, + ACTIONS(4967), 1, + aux_sym__newline_token1, + STATE(2373), 1, sym__newline, - [85007] = 2, + [84873] = 2, ACTIONS(1654), 1, aux_sym__newline_token1, - STATE(721), 1, + STATE(398), 1, sym__newline, - [85014] = 2, - ACTIONS(1630), 1, + [84880] = 2, + ACTIONS(4031), 1, aux_sym__newline_token1, - STATE(1736), 1, + STATE(1088), 1, sym__newline, - [85021] = 2, - ACTIONS(4041), 1, + [84887] = 2, + ACTIONS(1646), 1, aux_sym__newline_token1, - STATE(1080), 1, + STATE(721), 1, sym__newline, - [85028] = 2, - ACTIONS(4039), 1, + [84894] = 2, + ACTIONS(1656), 1, aux_sym__newline_token1, - STATE(1061), 1, + STATE(720), 1, sym__newline, - [85035] = 2, - ACTIONS(1622), 1, + [84901] = 2, + ACTIONS(4015), 1, aux_sym__newline_token1, - STATE(402), 1, + STATE(1085), 1, sym__newline, - [85042] = 1, + [84908] = 1, + ACTIONS(6981), 1, + sym__block_close, + [84912] = 1, + ACTIONS(6983), 1, + anon_sym_GT, + [84916] = 1, + ACTIONS(6985), 1, + anon_sym_COLON, + [84920] = 1, + ACTIONS(6987), 1, + sym__close_block, + [84924] = 1, ACTIONS(6989), 1, sym__block_close, - [85046] = 1, + [84928] = 1, ACTIONS(6991), 1, - sym__trigger_error, - [85050] = 1, + sym__line_ending, + [84932] = 1, + ACTIONS(3177), 1, + sym__open_block, + [84936] = 1, ACTIONS(6993), 1, - sym__block_close, - [85054] = 1, + sym__line_ending, + [84940] = 1, ACTIONS(6995), 1, - sym__block_close, - [85058] = 1, + sym__close_block, + [84944] = 1, ACTIONS(6997), 1, - sym__block_close, - [85062] = 1, + sym__close_block, + [84948] = 1, ACTIONS(6999), 1, - sym__line_ending, - [85066] = 1, - ACTIONS(6675), 1, - anon_sym_GT, - [85070] = 1, + sym__close_block, + [84952] = 1, ACTIONS(7001), 1, - sym__line_ending, - [85074] = 1, + sym__block_close, + [84956] = 1, + ACTIONS(2060), 1, + sym__trigger_error, + [84960] = 1, + ACTIONS(6660), 1, + anon_sym_GT, + [84964] = 1, ACTIONS(7003), 1, - sym__close_block, - [85078] = 1, + sym__block_close, + [84968] = 1, ACTIONS(7005), 1, sym__close_block, - [85082] = 1, + [84972] = 1, ACTIONS(7007), 1, - sym__block_close, - [85086] = 1, + sym__close_block, + [84976] = 1, ACTIONS(7009), 1, sym__block_close, - [85090] = 1, + [84980] = 1, ACTIONS(7011), 1, sym__block_close, - [85094] = 1, - ACTIONS(3201), 1, - sym__open_block, - [85098] = 1, - ACTIONS(3145), 1, - sym__open_block, - [85102] = 1, + [84984] = 1, + ACTIONS(6513), 1, + anon_sym_GT, + [84988] = 1, ACTIONS(7013), 1, sym__close_block, - [85106] = 1, - ACTIONS(7015), 1, - sym__close_block, - [85110] = 1, - ACTIONS(6985), 1, + [84992] = 1, + ACTIONS(6977), 1, sym__block_close, - [85114] = 1, - ACTIONS(3553), 1, - sym__open_block, - [85118] = 1, - ACTIONS(3052), 1, + [84996] = 1, + ACTIONS(7015), 1, sym__open_block, - [85122] = 1, + [85000] = 1, ACTIONS(7017), 1, - anon_sym_COLON, - [85126] = 1, - ACTIONS(6981), 1, - sym__block_close, - [85130] = 1, + sym__open_block, + [85004] = 1, ACTIONS(7019), 1, - sym__trigger_error, - [85134] = 1, + sym__open_block_dont_interrupt_paragraph, + [85008] = 1, ACTIONS(7021), 1, sym__open_block, - [85138] = 1, + [85012] = 1, ACTIONS(7023), 1, - sym__open_block_dont_interrupt_paragraph, - [85142] = 1, + sym__block_close, + [85016] = 1, ACTIONS(7025), 1, - anon_sym_GT, - [85146] = 1, + sym__close_block, + [85020] = 1, ACTIONS(7027), 1, - sym__open_block, - [85150] = 1, + sym__trigger_error, + [85024] = 1, ACTIONS(7029), 1, - sym__open_block, - [85154] = 1, + sym__line_ending, + [85028] = 1, ACTIONS(7031), 1, - sym__block_close, - [85158] = 1, - ACTIONS(7033), 1, sym__open_block, - [85162] = 1, + [85032] = 1, + ACTIONS(7033), 1, + sym__block_close, + [85036] = 1, ACTIONS(7035), 1, - sym__close_block, - [85166] = 1, + sym__trigger_error, + [85040] = 1, + ACTIONS(6547), 1, + anon_sym_GT, + [85044] = 1, ACTIONS(7037), 1, sym__open_block, - [85170] = 1, + [85048] = 1, ACTIONS(7039), 1, - sym__open_block, - [85174] = 1, + sym__trigger_error, + [85052] = 1, ACTIONS(7041), 1, sym__open_block, - [85178] = 1, + [85056] = 1, ACTIONS(7043), 1, sym__open_block, - [85182] = 1, - ACTIONS(6558), 1, - anon_sym_GT, - [85186] = 1, + [85060] = 1, ACTIONS(7045), 1, - sym__block_close, - [85190] = 1, + sym__open_block, + [85064] = 1, ACTIONS(7047), 1, sym__open_block, - [85194] = 1, + [85068] = 1, + ACTIONS(2981), 1, + sym__open_block, + [85072] = 1, + ACTIONS(3787), 1, + anon_sym_COLON, + [85076] = 1, + ACTIONS(6973), 1, + sym__block_close, + [85080] = 1, ACTIONS(7049), 1, sym__block_close, - [85198] = 1, - ACTIONS(7051), 1, + [85084] = 1, + ACTIONS(3343), 1, sym__open_block, - [85202] = 1, - ACTIONS(7053), 1, + [85088] = 1, + ACTIONS(7051), 1, sym__block_close, - [85206] = 1, + [85092] = 1, + ACTIONS(7053), 1, + sym__open_block, + [85096] = 1, ACTIONS(7055), 1, sym__block_close, - [85210] = 1, + [85100] = 1, ACTIONS(7057), 1, sym__block_close, - [85214] = 1, + [85104] = 1, ACTIONS(7059), 1, sym__block_close, - [85218] = 1, + [85108] = 1, ACTIONS(7061), 1, - sym__close_block, - [85222] = 1, + sym__open_block, + [85112] = 1, ACTIONS(7063), 1, - sym__line_ending, - [85226] = 1, + sym__open_block, + [85116] = 1, ACTIONS(7065), 1, - sym__block_close, - [85230] = 1, - ACTIONS(2144), 1, - sym__close_block, - [85234] = 1, + anon_sym_GT, + [85120] = 1, ACTIONS(7067), 1, sym__block_close, - [85238] = 1, + [85124] = 1, ACTIONS(7069), 1, - sym__line_ending, - [85242] = 1, + sym__block_close, + [85128] = 1, ACTIONS(7071), 1, - sym__open_block, - [85246] = 1, + sym__block_close, + [85132] = 1, ACTIONS(7073), 1, sym__open_block, - [85250] = 1, - ACTIONS(7075), 1, + [85136] = 1, + ACTIONS(6314), 1, + sym__close_block, + [85140] = 1, + ACTIONS(6969), 1, sym__block_close, - [85254] = 1, + [85144] = 1, + ACTIONS(7075), 1, + sym__line_ending, + [85148] = 1, + ACTIONS(6308), 1, + sym__close_block, + [85152] = 1, ACTIONS(7077), 1, - sym__block_close, - [85258] = 1, + sym__open_block, + [85156] = 1, ACTIONS(7079), 1, - sym__block_close, - [85262] = 1, - ACTIONS(2144), 1, - sym__trigger_error, - [85266] = 1, - ACTIONS(7081), 1, sym__open_block, - [85270] = 1, + [85160] = 1, + ACTIONS(7081), 1, + sym__close_block, + [85164] = 1, ACTIONS(7083), 1, - sym__trigger_error, - [85274] = 1, - ACTIONS(7085), 1, sym__open_block, - [85278] = 1, + [85168] = 1, + ACTIONS(7085), 1, + sym__close_block, + [85172] = 1, ACTIONS(7087), 1, - sym__line_ending, - [85282] = 1, - ACTIONS(7089), 1, sym__open_block, - [85286] = 1, + [85176] = 1, + ACTIONS(7089), 1, + sym__block_close, + [85180] = 1, ACTIONS(7091), 1, sym__open_block, - [85290] = 1, + [85184] = 1, ACTIONS(7093), 1, - sym__open_block, - [85294] = 1, + sym__block_close, + [85188] = 1, ACTIONS(7095), 1, - sym__close_block, - [85298] = 1, - ACTIONS(6554), 1, - anon_sym_GT, - [85302] = 1, + sym__open_block, + [85192] = 1, ACTIONS(7097), 1, + sym__open_block, + [85196] = 1, + ACTIONS(2060), 1, sym__close_block, - [85306] = 1, + [85200] = 1, ACTIONS(7099), 1, sym__close_block, - [85310] = 1, - ACTIONS(6975), 1, - sym__block_close, - [85314] = 1, + [85204] = 1, + ACTIONS(6302), 1, + sym__close_block, + [85208] = 1, ACTIONS(7101), 1, anon_sym_GT, - [85318] = 1, - ACTIONS(6524), 1, - anon_sym_GT, - [85322] = 1, + [85212] = 1, ACTIONS(7103), 1, - sym__open_block, - [85326] = 1, + sym__line_ending, + [85216] = 1, ACTIONS(7105), 1, - sym__open_block, - [85330] = 1, + sym__line_ending, + [85220] = 1, + ACTIONS(6963), 1, + sym__block_close, + [85224] = 1, ACTIONS(7107), 1, sym__block_close, - [85334] = 1, + [85228] = 1, ACTIONS(7109), 1, sym__block_close, - [85338] = 1, + [85232] = 1, ACTIONS(7111), 1, - sym__block_close, - [85342] = 1, - ACTIONS(6969), 1, - sym__block_close, - [85346] = 1, + sym__close_block, + [85236] = 1, ACTIONS(7113), 1, sym__block_close, - [85350] = 1, + [85240] = 1, ACTIONS(7115), 1, - sym__line_ending, - [85354] = 1, + sym__close_block, + [85244] = 1, ACTIONS(7117), 1, sym__block_close, - [85358] = 1, + [85248] = 1, + ACTIONS(3157), 1, + sym__open_block, + [85252] = 1, + ACTIONS(6959), 1, + sym__block_close, + [85256] = 1, ACTIONS(7119), 1, - sym__close_block, - [85362] = 1, + sym__open_block, + [85260] = 1, ACTIONS(7121), 1, - sym__block_close, - [85366] = 1, + sym__open_block, + [85264] = 1, ACTIONS(7123), 1, - sym__close_block, - [85370] = 1, - ACTIONS(3167), 1, sym__open_block, - [85374] = 1, + [85268] = 1, ACTIONS(7125), 1, sym__close_block, - [85378] = 1, - ACTIONS(6965), 1, + [85272] = 1, + ACTIONS(6933), 1, sym__block_close, - [85382] = 1, - ACTIONS(3638), 1, - anon_sym_COLON, - [85386] = 1, + [85276] = 1, ACTIONS(7127), 1, + sym__block_close, + [85280] = 1, + ACTIONS(6955), 1, + sym__block_close, + [85284] = 1, + ACTIONS(6290), 1, sym__close_block, - [85390] = 1, + [85288] = 1, ACTIONS(7129), 1, - sym__close_block, - [85394] = 1, + sym__line_ending, + [85292] = 1, ACTIONS(7131), 1, - sym__open_block, - [85398] = 1, + sym__block_close, + [85296] = 1, ACTIONS(7133), 1, - sym__open_block, - [85402] = 1, - ACTIONS(3570), 1, - sym__open_block, - [85406] = 1, + sym__block_close, + [85300] = 1, ACTIONS(7135), 1, - sym__close_block, - [85410] = 1, - ACTIONS(6259), 1, - sym__close_block, - [85414] = 1, - ACTIONS(6575), 1, - anon_sym_GT, - [85418] = 1, - ACTIONS(3269), 1, - sym__open_block, - [85422] = 1, + sym__block_close, + [85304] = 1, ACTIONS(7137), 1, - sym__line_ending, - [85426] = 1, - ACTIONS(3311), 1, - sym__open_block, - [85430] = 1, + sym__close_block, + [85308] = 1, ACTIONS(7139), 1, - sym__block_close, - [85434] = 1, + sym__open_block, + [85312] = 1, ACTIONS(7141), 1, - sym__block_close, - [85438] = 1, + sym__close_block, + [85316] = 1, ACTIONS(7143), 1, sym__close_block, - [85442] = 1, + [85320] = 1, ACTIONS(7145), 1, sym__block_close, - [85446] = 1, + [85324] = 1, ACTIONS(7147), 1, - sym__close_block, - [85450] = 1, - ACTIONS(7149), 1, sym__block_close, - [85454] = 1, + [85328] = 1, + ACTIONS(7149), 1, + sym__open_block, + [85332] = 1, ACTIONS(7151), 1, - sym__block_close, - [85458] = 1, + sym__open_block, + [85336] = 1, ACTIONS(7153), 1, sym__open_block, - [85462] = 1, + [85340] = 1, ACTIONS(7155), 1, - anon_sym_GT, - [85466] = 1, + sym__open_block, + [85344] = 1, ACTIONS(7157), 1, sym__open_block, - [85470] = 1, + [85348] = 1, ACTIONS(7159), 1, sym__open_block, - [85474] = 1, - ACTIONS(6251), 1, - sym__close_block, - [85478] = 1, + [85352] = 1, ACTIONS(7161), 1, - sym__open_block, - [85482] = 1, + sym__block_close, + [85356] = 1, ACTIONS(7163), 1, - sym__open_block, - [85486] = 1, + sym__block_close, + [85360] = 1, ACTIONS(7165), 1, - sym__open_block, - [85490] = 1, + sym__line_ending, + [85364] = 1, ACTIONS(7167), 1, - sym__open_block, - [85494] = 1, + sym__block_close, + [85368] = 1, ACTIONS(7169), 1, - sym__line_ending, - [85498] = 1, + sym__block_close, + [85372] = 1, + ACTIONS(6599), 1, + anon_sym_GT, + [85376] = 1, ACTIONS(7171), 1, - sym__open_block, - [85502] = 1, + sym__close_block, + [85380] = 1, ACTIONS(7173), 1, sym__open_block, - [85506] = 1, + [85384] = 1, ACTIONS(7175), 1, - sym__block_close, - [85510] = 1, - ACTIONS(7177), 1, sym__close_block, - [85514] = 1, + [85388] = 1, + ACTIONS(7177), 1, + sym__open_block, + [85392] = 1, ACTIONS(7179), 1, - sym__close_block, - [85518] = 1, + sym__open_block, + [85396] = 1, ACTIONS(7181), 1, - sym__close_block, - [85522] = 1, - ACTIONS(6218), 1, - sym__close_block, - [85526] = 1, + sym__open_block, + [85400] = 1, + ACTIONS(3552), 1, + sym__open_block, + [85404] = 1, ACTIONS(7183), 1, - sym__block_close, - [85530] = 1, + sym__open_block, + [85408] = 1, ACTIONS(7185), 1, - sym__close_block, - [85534] = 1, + sym__open_block, + [85412] = 1, ACTIONS(7187), 1, sym__block_close, - [85538] = 1, + [85416] = 1, ACTIONS(7189), 1, sym__block_close, - [85542] = 1, + [85420] = 1, ACTIONS(7191), 1, - sym__open_block, - [85546] = 1, - ACTIONS(6959), 1, sym__block_close, - [85550] = 1, + [85424] = 1, ACTIONS(7193), 1, sym__block_close, - [85554] = 1, - ACTIONS(7195), 1, + [85428] = 1, + ACTIONS(6947), 1, sym__block_close, - [85558] = 1, + [85432] = 1, + ACTIONS(7195), 1, + sym__line_ending, + [85436] = 1, ACTIONS(7197), 1, - sym__open_block, - [85562] = 1, - ACTIONS(7199), 1, sym__close_block, - [85566] = 1, + [85440] = 1, + ACTIONS(7199), 1, + sym__open_block, + [85444] = 1, ACTIONS(7201), 1, - sym__line_ending, - [85570] = 1, + sym__open_block, + [85448] = 1, ACTIONS(7203), 1, - sym__block_close, - [85574] = 1, + sym__close_block, + [85452] = 1, ACTIONS(7205), 1, - sym__block_close, - [85578] = 1, - ACTIONS(6941), 1, - sym__block_close, - [85582] = 1, + sym__open_block, + [85456] = 1, ACTIONS(7207), 1, sym__close_block, - [85586] = 1, - ACTIONS(6679), 1, - anon_sym_GT, - [85590] = 1, + [85460] = 1, ACTIONS(7209), 1, - sym__close_block, - [85594] = 1, - ACTIONS(7211), 1, sym__open_block, - [85598] = 1, + [85464] = 1, + ACTIONS(6686), 1, + anon_sym_GT, + [85468] = 1, + ACTIONS(7211), 1, + sym__block_close, + [85472] = 1, ACTIONS(7213), 1, sym__block_close, - [85602] = 1, + [85476] = 1, ACTIONS(7215), 1, sym__open_block, - [85606] = 1, - ACTIONS(6955), 1, - sym__block_close, - [85610] = 1, + [85480] = 1, ACTIONS(7217), 1, sym__open_block, - [85614] = 1, + [85484] = 1, ACTIONS(7219), 1, sym__open_block, - [85618] = 1, + [85488] = 1, ACTIONS(7221), 1, sym__open_block, - [85622] = 1, + [85492] = 1, ACTIONS(7223), 1, sym__open_block, - [85626] = 1, + [85496] = 1, ACTIONS(7225), 1, - sym__open_block, - [85630] = 1, + sym__block_close, + [85500] = 1, ACTIONS(7227), 1, - anon_sym_COLON, - [85634] = 1, - ACTIONS(7229), 1, sym__line_ending, - [85638] = 1, - ACTIONS(7231), 1, + [85504] = 1, + ACTIONS(7229), 1, sym__open_block, - [85642] = 1, - ACTIONS(7233), 1, + [85508] = 1, + ACTIONS(3550), 1, sym__open_block, - [85646] = 1, - ACTIONS(7235), 1, + [85512] = 1, + ACTIONS(3088), 1, sym__open_block, - [85650] = 1, - ACTIONS(7237), 1, + [85516] = 1, + ACTIONS(7231), 1, sym__close_block, - [85654] = 1, - ACTIONS(7239), 1, + [85520] = 1, + ACTIONS(7233), 1, sym__block_close, - [85658] = 1, - ACTIONS(7241), 1, + [85524] = 1, + ACTIONS(7235), 1, + sym__close_block, + [85528] = 1, + ACTIONS(7237), 1, + sym__block_close, + [85532] = 1, + ACTIONS(7239), 1, sym__close_block, - [85662] = 1, + [85536] = 1, + ACTIONS(7241), 1, + anon_sym_COLON, + [85540] = 1, + ACTIONS(3339), 1, + sym__open_block, + [85544] = 1, ACTIONS(7243), 1, sym__open_block, - [85666] = 1, - ACTIONS(6200), 1, - sym__close_block, - [85670] = 1, + [85548] = 1, ACTIONS(7245), 1, sym__open_block, - [85674] = 1, + [85552] = 1, ACTIONS(7247), 1, - ts_builtin_sym_end, - [85678] = 1, + sym__block_close, + [85556] = 1, ACTIONS(7249), 1, - sym__open_block, - [85682] = 1, + ts_builtin_sym_end, + [85560] = 1, ACTIONS(7251), 1, - sym__open_block, - [85686] = 1, - ACTIONS(6945), 1, sym__block_close, - [85690] = 1, + [85564] = 1, ACTIONS(7253), 1, - sym__open_block, - [85694] = 1, + sym__block_close, + [85568] = 1, ACTIONS(7255), 1, + sym__line_ending, + [85572] = 1, + ACTIONS(6937), 1, sym__block_close, - [85698] = 1, + [85576] = 1, ACTIONS(7257), 1, - sym__open_block_dont_interrupt_paragraph, - [85702] = 1, + sym__block_close, + [85580] = 1, ACTIONS(7259), 1, - sym__line_ending, - [85706] = 1, + sym__block_close, + [85584] = 1, ACTIONS(7261), 1, - sym__open_block, - [85710] = 1, + sym__close_block, + [85588] = 1, ACTIONS(7263), 1, - sym__open_block, - [85714] = 1, - ACTIONS(7265), 1, sym__block_close, - [85718] = 1, - ACTIONS(7267), 1, + [85592] = 1, + ACTIONS(7265), 1, sym__close_block, - [85722] = 1, + [85596] = 1, + ACTIONS(7267), 1, + sym__block_close, + [85600] = 1, + ACTIONS(6555), 1, + anon_sym_GT, + [85604] = 1, ACTIONS(7269), 1, - sym__open_block, - [85726] = 1, + sym__open_block_dont_interrupt_paragraph, + [85608] = 1, ACTIONS(7271), 1, - sym__close_block, - [85730] = 1, + sym__open_block_dont_interrupt_paragraph, + [85612] = 1, ACTIONS(7273), 1, - sym__block_close, - [85734] = 1, + sym__open_block, + [85616] = 1, ACTIONS(7275), 1, sym__open_block, - [85738] = 1, + [85620] = 1, + ACTIONS(6941), 1, + sym__block_close, + [85624] = 1, ACTIONS(7277), 1, - sym__open_block_dont_interrupt_paragraph, - [85742] = 1, - ACTIONS(7279), 1, sym__open_block, - [85746] = 1, + [85628] = 1, + ACTIONS(7279), 1, + sym__block_close, + [85632] = 1, ACTIONS(7281), 1, sym__open_block, - [85750] = 1, + [85636] = 1, ACTIONS(7283), 1, - sym__open_block, - [85754] = 1, + sym__line_ending, + [85640] = 1, ACTIONS(7285), 1, sym__block_close, - [85758] = 1, + [85644] = 1, ACTIONS(7287), 1, sym__open_block, - [85762] = 1, - ACTIONS(6949), 1, - sym__block_close, - [85766] = 1, + [85648] = 1, ACTIONS(7289), 1, sym__open_block, - [85770] = 1, + [85652] = 1, ACTIONS(7291), 1, - sym__line_ending, - [85774] = 1, + sym__close_block, + [85656] = 1, ACTIONS(7293), 1, - sym__block_close, - [85778] = 1, + sym__open_block, + [85660] = 1, ACTIONS(7295), 1, sym__close_block, - [85782] = 1, + [85664] = 1, ACTIONS(7297), 1, - sym__block_close, - [85786] = 1, + sym__open_block, + [85668] = 1, ACTIONS(7299), 1, sym__close_block, - [85790] = 1, + [85672] = 1, ACTIONS(7301), 1, - sym__block_close, - [85794] = 1, + sym__open_block, + [85676] = 1, ACTIONS(7303), 1, - sym__close_block, - [85798] = 1, - ACTIONS(7305), 1, sym__open_block, - [85802] = 1, + [85680] = 1, + ACTIONS(7305), 1, + sym__line_ending, + [85684] = 1, ACTIONS(7307), 1, - sym__block_close, - [85806] = 1, + sym__close_block, + [85688] = 1, ACTIONS(7309), 1, - sym__open_block, - [85810] = 1, + sym__close_block, + [85692] = 1, ACTIONS(7311), 1, sym__open_block, - [85814] = 1, + [85696] = 1, ACTIONS(7313), 1, - sym__line_ending, - [85818] = 1, + sym__open_block_dont_interrupt_paragraph, + [85700] = 1, ACTIONS(7315), 1, - sym__close_block, - [85822] = 1, + anon_sym_COLON, + [85704] = 1, ACTIONS(7317), 1, - sym__close_block, - [85826] = 1, - ACTIONS(7319), 1, sym__open_block, - [85830] = 1, + [85708] = 1, + ACTIONS(7319), 1, + sym__close_block, + [85712] = 1, ACTIONS(7321), 1, - sym__open_block_dont_interrupt_paragraph, - [85834] = 1, - ACTIONS(7323), 1, anon_sym_COLON, - [85838] = 1, + [85716] = 1, + ACTIONS(7323), 1, + sym__close_block, + [85720] = 1, ACTIONS(7325), 1, - sym__block_close, - [85842] = 1, + sym__close_block, + [85724] = 1, ACTIONS(7327), 1, - sym__block_close, - [85846] = 1, + sym__close_block, + [85728] = 1, ACTIONS(7329), 1, - anon_sym_COLON, - [85850] = 1, - ACTIONS(7331), 1, sym__close_block, - [85854] = 1, + [85732] = 1, + ACTIONS(7331), 1, + sym__open_block, + [85736] = 1, ACTIONS(7333), 1, sym__close_block, - [85858] = 1, + [85740] = 1, ACTIONS(7335), 1, sym__close_block, - [85862] = 1, + [85744] = 1, ACTIONS(7337), 1, sym__close_block, - [85866] = 1, + [85748] = 1, ACTIONS(7339), 1, - sym__open_block, - [85870] = 1, - ACTIONS(7341), 1, sym__close_block, - [85874] = 1, + [85752] = 1, + ACTIONS(7341), 1, + sym__open_block, + [85756] = 1, ACTIONS(7343), 1, sym__close_block, - [85878] = 1, + [85760] = 1, ACTIONS(7345), 1, sym__close_block, - [85882] = 1, + [85764] = 1, ACTIONS(7347), 1, sym__close_block, - [85886] = 1, + [85768] = 1, ACTIONS(7349), 1, - sym__open_block, - [85890] = 1, - ACTIONS(7351), 1, sym__close_block, - [85894] = 1, + [85772] = 1, + ACTIONS(7351), 1, + sym__open_block, + [85776] = 1, ACTIONS(7353), 1, sym__close_block, - [85898] = 1, + [85780] = 1, ACTIONS(7355), 1, sym__close_block, - [85902] = 1, + [85784] = 1, ACTIONS(7357), 1, sym__close_block, - [85906] = 1, + [85788] = 1, ACTIONS(7359), 1, - sym__open_block, - [85910] = 1, - ACTIONS(7361), 1, sym__close_block, - [85914] = 1, + [85792] = 1, + ACTIONS(7361), 1, + sym__open_block, + [85796] = 1, ACTIONS(7363), 1, sym__close_block, - [85918] = 1, + [85800] = 1, ACTIONS(7365), 1, sym__close_block, - [85922] = 1, + [85804] = 1, ACTIONS(7367), 1, sym__close_block, - [85926] = 1, + [85808] = 1, ACTIONS(7369), 1, - sym__open_block, - [85930] = 1, - ACTIONS(7371), 1, sym__close_block, - [85934] = 1, + [85812] = 1, + ACTIONS(7371), 1, + sym__open_block, + [85816] = 1, ACTIONS(7373), 1, sym__close_block, - [85938] = 1, + [85820] = 1, ACTIONS(7375), 1, sym__close_block, - [85942] = 1, + [85824] = 1, ACTIONS(7377), 1, sym__close_block, - [85946] = 1, + [85828] = 1, ACTIONS(7379), 1, - sym__open_block, - [85950] = 1, - ACTIONS(7381), 1, sym__close_block, - [85954] = 1, + [85832] = 1, + ACTIONS(7381), 1, + sym__open_block, + [85836] = 1, ACTIONS(7383), 1, sym__close_block, - [85958] = 1, + [85840] = 1, ACTIONS(7385), 1, sym__close_block, - [85962] = 1, + [85844] = 1, ACTIONS(7387), 1, sym__close_block, - [85966] = 1, + [85848] = 1, ACTIONS(7389), 1, - sym__open_block, - [85970] = 1, - ACTIONS(7391), 1, sym__close_block, - [85974] = 1, + [85852] = 1, + ACTIONS(7391), 1, + sym__open_block, + [85856] = 1, ACTIONS(7393), 1, sym__close_block, - [85978] = 1, + [85860] = 1, ACTIONS(7395), 1, sym__close_block, - [85982] = 1, + [85864] = 1, ACTIONS(7397), 1, sym__close_block, - [85986] = 1, + [85868] = 1, ACTIONS(7399), 1, - sym__open_block, - [85990] = 1, - ACTIONS(7401), 1, sym__close_block, - [85994] = 1, + [85872] = 1, + ACTIONS(7401), 1, + sym__open_block, + [85876] = 1, ACTIONS(7403), 1, sym__close_block, - [85998] = 1, + [85880] = 1, ACTIONS(7405), 1, sym__close_block, - [86002] = 1, + [85884] = 1, ACTIONS(7407), 1, sym__close_block, - [86006] = 1, + [85888] = 1, ACTIONS(7409), 1, - sym__open_block, - [86010] = 1, - ACTIONS(7411), 1, sym__close_block, - [86014] = 1, - ACTIONS(7413), 1, - sym__close_block, - [86018] = 1, - ACTIONS(7415), 1, - sym__close_block, - [86022] = 1, - ACTIONS(7417), 1, - sym__close_block, - [86026] = 1, - ACTIONS(7419), 1, + [85892] = 1, + ACTIONS(7411), 1, sym__open_block, }; @@ -146965,5406 +146883,5405 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(455)] = 93, [SMALL_STATE(456)] = 186, [SMALL_STATE(457)] = 258, - [SMALL_STATE(458)] = 338, - [SMALL_STATE(459)] = 420, + [SMALL_STATE(458)] = 340, + [SMALL_STATE(459)] = 404, [SMALL_STATE(460)] = 484, [SMALL_STATE(461)] = 566, [SMALL_STATE(462)] = 646, [SMALL_STATE(463)] = 725, - [SMALL_STATE(464)] = 806, + [SMALL_STATE(464)] = 786, [SMALL_STATE(465)] = 867, - [SMALL_STATE(466)] = 943, - [SMALL_STATE(467)] = 1019, - [SMALL_STATE(468)] = 1085, - [SMALL_STATE(469)] = 1167, - [SMALL_STATE(470)] = 1243, - [SMALL_STATE(471)] = 1321, - [SMALL_STATE(472)] = 1405, - [SMALL_STATE(473)] = 1489, - [SMALL_STATE(474)] = 1565, - [SMALL_STATE(475)] = 1643, - [SMALL_STATE(476)] = 1721, - [SMALL_STATE(477)] = 1799, - [SMALL_STATE(478)] = 1875, - [SMALL_STATE(479)] = 1951, - [SMALL_STATE(480)] = 2035, - [SMALL_STATE(481)] = 2113, - [SMALL_STATE(482)] = 2193, - [SMALL_STATE(483)] = 2275, - [SMALL_STATE(484)] = 2353, - [SMALL_STATE(485)] = 2429, - [SMALL_STATE(486)] = 2511, - [SMALL_STATE(487)] = 2587, - [SMALL_STATE(488)] = 2667, - [SMALL_STATE(489)] = 2749, - [SMALL_STATE(490)] = 2815, - [SMALL_STATE(491)] = 2899, - [SMALL_STATE(492)] = 2962, - [SMALL_STATE(493)] = 3025, - [SMALL_STATE(494)] = 3088, - [SMALL_STATE(495)] = 3151, - [SMALL_STATE(496)] = 3214, - [SMALL_STATE(497)] = 3277, - [SMALL_STATE(498)] = 3350, - [SMALL_STATE(499)] = 3413, - [SMALL_STATE(500)] = 3476, - [SMALL_STATE(501)] = 3539, - [SMALL_STATE(502)] = 3602, - [SMALL_STATE(503)] = 3675, - [SMALL_STATE(504)] = 3748, - [SMALL_STATE(505)] = 3811, - [SMALL_STATE(506)] = 3874, - [SMALL_STATE(507)] = 3937, - [SMALL_STATE(508)] = 4000, - [SMALL_STATE(509)] = 4063, - [SMALL_STATE(510)] = 4126, - [SMALL_STATE(511)] = 4189, - [SMALL_STATE(512)] = 4252, - [SMALL_STATE(513)] = 4335, - [SMALL_STATE(514)] = 4398, - [SMALL_STATE(515)] = 4461, - [SMALL_STATE(516)] = 4524, - [SMALL_STATE(517)] = 4587, - [SMALL_STATE(518)] = 4650, - [SMALL_STATE(519)] = 4713, - [SMALL_STATE(520)] = 4776, - [SMALL_STATE(521)] = 4839, - [SMALL_STATE(522)] = 4902, - [SMALL_STATE(523)] = 4967, - [SMALL_STATE(524)] = 5030, - [SMALL_STATE(525)] = 5093, - [SMALL_STATE(526)] = 5156, - [SMALL_STATE(527)] = 5219, - [SMALL_STATE(528)] = 5282, - [SMALL_STATE(529)] = 5345, - [SMALL_STATE(530)] = 5408, - [SMALL_STATE(531)] = 5471, - [SMALL_STATE(532)] = 5534, - [SMALL_STATE(533)] = 5597, - [SMALL_STATE(534)] = 5660, - [SMALL_STATE(535)] = 5723, - [SMALL_STATE(536)] = 5786, - [SMALL_STATE(537)] = 5849, - [SMALL_STATE(538)] = 5912, - [SMALL_STATE(539)] = 5975, - [SMALL_STATE(540)] = 6038, - [SMALL_STATE(541)] = 6101, - [SMALL_STATE(542)] = 6164, - [SMALL_STATE(543)] = 6227, - [SMALL_STATE(544)] = 6290, - [SMALL_STATE(545)] = 6353, - [SMALL_STATE(546)] = 6416, - [SMALL_STATE(547)] = 6479, - [SMALL_STATE(548)] = 6542, - [SMALL_STATE(549)] = 6605, - [SMALL_STATE(550)] = 6668, - [SMALL_STATE(551)] = 6731, - [SMALL_STATE(552)] = 6794, - [SMALL_STATE(553)] = 6857, - [SMALL_STATE(554)] = 6920, - [SMALL_STATE(555)] = 6983, - [SMALL_STATE(556)] = 7046, - [SMALL_STATE(557)] = 7109, - [SMALL_STATE(558)] = 7172, - [SMALL_STATE(559)] = 7235, - [SMALL_STATE(560)] = 7298, - [SMALL_STATE(561)] = 7361, - [SMALL_STATE(562)] = 7424, - [SMALL_STATE(563)] = 7487, - [SMALL_STATE(564)] = 7550, - [SMALL_STATE(565)] = 7613, - [SMALL_STATE(566)] = 7676, - [SMALL_STATE(567)] = 7739, - [SMALL_STATE(568)] = 7802, - [SMALL_STATE(569)] = 7865, - [SMALL_STATE(570)] = 7946, - [SMALL_STATE(571)] = 8009, - [SMALL_STATE(572)] = 8072, - [SMALL_STATE(573)] = 8135, - [SMALL_STATE(574)] = 8210, - [SMALL_STATE(575)] = 8273, - [SMALL_STATE(576)] = 8348, - [SMALL_STATE(577)] = 8411, - [SMALL_STATE(578)] = 8474, - [SMALL_STATE(579)] = 8537, - [SMALL_STATE(580)] = 8600, - [SMALL_STATE(581)] = 8677, - [SMALL_STATE(582)] = 8740, - [SMALL_STATE(583)] = 8817, - [SMALL_STATE(584)] = 8880, - [SMALL_STATE(585)] = 8943, - [SMALL_STATE(586)] = 9005, - [SMALL_STATE(587)] = 9067, - [SMALL_STATE(588)] = 9129, - [SMALL_STATE(589)] = 9191, - [SMALL_STATE(590)] = 9253, - [SMALL_STATE(591)] = 9319, - [SMALL_STATE(592)] = 9381, - [SMALL_STATE(593)] = 9443, - [SMALL_STATE(594)] = 9505, - [SMALL_STATE(595)] = 9567, - [SMALL_STATE(596)] = 9629, - [SMALL_STATE(597)] = 9691, - [SMALL_STATE(598)] = 9757, - [SMALL_STATE(599)] = 9819, - [SMALL_STATE(600)] = 9881, - [SMALL_STATE(601)] = 9943, - [SMALL_STATE(602)] = 10005, - [SMALL_STATE(603)] = 10067, - [SMALL_STATE(604)] = 10129, - [SMALL_STATE(605)] = 10195, - [SMALL_STATE(606)] = 10257, - [SMALL_STATE(607)] = 10319, - [SMALL_STATE(608)] = 10381, - [SMALL_STATE(609)] = 10443, - [SMALL_STATE(610)] = 10505, - [SMALL_STATE(611)] = 10567, - [SMALL_STATE(612)] = 10629, - [SMALL_STATE(613)] = 10691, - [SMALL_STATE(614)] = 10753, - [SMALL_STATE(615)] = 10815, - [SMALL_STATE(616)] = 10881, - [SMALL_STATE(617)] = 10943, - [SMALL_STATE(618)] = 11005, - [SMALL_STATE(619)] = 11067, - [SMALL_STATE(620)] = 11129, - [SMALL_STATE(621)] = 11191, - [SMALL_STATE(622)] = 11257, - [SMALL_STATE(623)] = 11319, - [SMALL_STATE(624)] = 11381, - [SMALL_STATE(625)] = 11447, - [SMALL_STATE(626)] = 11509, - [SMALL_STATE(627)] = 11575, - [SMALL_STATE(628)] = 11637, - [SMALL_STATE(629)] = 11699, - [SMALL_STATE(630)] = 11761, - [SMALL_STATE(631)] = 11827, - [SMALL_STATE(632)] = 11889, - [SMALL_STATE(633)] = 11951, - [SMALL_STATE(634)] = 12013, - [SMALL_STATE(635)] = 12075, - [SMALL_STATE(636)] = 12140, - [SMALL_STATE(637)] = 12205, - [SMALL_STATE(638)] = 12272, - [SMALL_STATE(639)] = 12337, - [SMALL_STATE(640)] = 12402, - [SMALL_STATE(641)] = 12467, - [SMALL_STATE(642)] = 12532, - [SMALL_STATE(643)] = 12597, - [SMALL_STATE(644)] = 12664, - [SMALL_STATE(645)] = 12729, - [SMALL_STATE(646)] = 12793, - [SMALL_STATE(647)] = 12851, - [SMALL_STATE(648)] = 12911, - [SMALL_STATE(649)] = 12975, - [SMALL_STATE(650)] = 13039, - [SMALL_STATE(651)] = 13097, - [SMALL_STATE(652)] = 13157, - [SMALL_STATE(653)] = 13217, - [SMALL_STATE(654)] = 13277, - [SMALL_STATE(655)] = 13335, - [SMALL_STATE(656)] = 13395, - [SMALL_STATE(657)] = 13457, - [SMALL_STATE(658)] = 13515, - [SMALL_STATE(659)] = 13575, - [SMALL_STATE(660)] = 13633, - [SMALL_STATE(661)] = 13697, - [SMALL_STATE(662)] = 13761, - [SMALL_STATE(663)] = 13819, - [SMALL_STATE(664)] = 13878, - [SMALL_STATE(665)] = 13933, - [SMALL_STATE(666)] = 13988, - [SMALL_STATE(667)] = 14043, - [SMALL_STATE(668)] = 14098, - [SMALL_STATE(669)] = 14153, - [SMALL_STATE(670)] = 14208, - [SMALL_STATE(671)] = 14263, - [SMALL_STATE(672)] = 14318, - [SMALL_STATE(673)] = 14373, - [SMALL_STATE(674)] = 14428, - [SMALL_STATE(675)] = 14483, - [SMALL_STATE(676)] = 14538, - [SMALL_STATE(677)] = 14593, - [SMALL_STATE(678)] = 14648, - [SMALL_STATE(679)] = 14707, - [SMALL_STATE(680)] = 14762, - [SMALL_STATE(681)] = 14817, - [SMALL_STATE(682)] = 14872, - [SMALL_STATE(683)] = 14927, - [SMALL_STATE(684)] = 14982, - [SMALL_STATE(685)] = 15037, - [SMALL_STATE(686)] = 15092, - [SMALL_STATE(687)] = 15147, - [SMALL_STATE(688)] = 15202, - [SMALL_STATE(689)] = 15257, - [SMALL_STATE(690)] = 15312, - [SMALL_STATE(691)] = 15367, - [SMALL_STATE(692)] = 15422, - [SMALL_STATE(693)] = 15477, - [SMALL_STATE(694)] = 15536, - [SMALL_STATE(695)] = 15593, - [SMALL_STATE(696)] = 15648, - [SMALL_STATE(697)] = 15703, - [SMALL_STATE(698)] = 15758, - [SMALL_STATE(699)] = 15817, - [SMALL_STATE(700)] = 15872, - [SMALL_STATE(701)] = 15927, - [SMALL_STATE(702)] = 15982, - [SMALL_STATE(703)] = 16037, - [SMALL_STATE(704)] = 16092, - [SMALL_STATE(705)] = 16149, - [SMALL_STATE(706)] = 16204, - [SMALL_STATE(707)] = 16261, - [SMALL_STATE(708)] = 16318, - [SMALL_STATE(709)] = 16373, - [SMALL_STATE(710)] = 16430, - [SMALL_STATE(711)] = 16485, - [SMALL_STATE(712)] = 16540, - [SMALL_STATE(713)] = 16595, - [SMALL_STATE(714)] = 16658, - [SMALL_STATE(715)] = 16717, - [SMALL_STATE(716)] = 16772, - [SMALL_STATE(717)] = 16827, - [SMALL_STATE(718)] = 16890, - [SMALL_STATE(719)] = 16945, - [SMALL_STATE(720)] = 17000, - [SMALL_STATE(721)] = 17055, - [SMALL_STATE(722)] = 17110, - [SMALL_STATE(723)] = 17165, - [SMALL_STATE(724)] = 17220, - [SMALL_STATE(725)] = 17275, - [SMALL_STATE(726)] = 17330, - [SMALL_STATE(727)] = 17385, - [SMALL_STATE(728)] = 17440, - [SMALL_STATE(729)] = 17495, - [SMALL_STATE(730)] = 17550, - [SMALL_STATE(731)] = 17605, - [SMALL_STATE(732)] = 17660, - [SMALL_STATE(733)] = 17717, - [SMALL_STATE(734)] = 17772, - [SMALL_STATE(735)] = 17835, - [SMALL_STATE(736)] = 17890, - [SMALL_STATE(737)] = 17945, - [SMALL_STATE(738)] = 18000, - [SMALL_STATE(739)] = 18055, - [SMALL_STATE(740)] = 18110, - [SMALL_STATE(741)] = 18165, - [SMALL_STATE(742)] = 18220, - [SMALL_STATE(743)] = 18275, - [SMALL_STATE(744)] = 18330, - [SMALL_STATE(745)] = 18385, - [SMALL_STATE(746)] = 18440, - [SMALL_STATE(747)] = 18495, - [SMALL_STATE(748)] = 18558, - [SMALL_STATE(749)] = 18613, - [SMALL_STATE(750)] = 18672, - [SMALL_STATE(751)] = 18729, - [SMALL_STATE(752)] = 18784, - [SMALL_STATE(753)] = 18847, - [SMALL_STATE(754)] = 18904, - [SMALL_STATE(755)] = 18967, - [SMALL_STATE(756)] = 19024, - [SMALL_STATE(757)] = 19083, - [SMALL_STATE(758)] = 19142, - [SMALL_STATE(759)] = 19197, - [SMALL_STATE(760)] = 19252, - [SMALL_STATE(761)] = 19311, - [SMALL_STATE(762)] = 19366, - [SMALL_STATE(763)] = 19421, - [SMALL_STATE(764)] = 19476, - [SMALL_STATE(765)] = 19531, - [SMALL_STATE(766)] = 19586, - [SMALL_STATE(767)] = 19641, - [SMALL_STATE(768)] = 19696, - [SMALL_STATE(769)] = 19751, - [SMALL_STATE(770)] = 19806, - [SMALL_STATE(771)] = 19861, - [SMALL_STATE(772)] = 19916, - [SMALL_STATE(773)] = 19971, - [SMALL_STATE(774)] = 20026, - [SMALL_STATE(775)] = 20081, - [SMALL_STATE(776)] = 20136, - [SMALL_STATE(777)] = 20191, - [SMALL_STATE(778)] = 20246, - [SMALL_STATE(779)] = 20301, - [SMALL_STATE(780)] = 20360, - [SMALL_STATE(781)] = 20415, - [SMALL_STATE(782)] = 20470, - [SMALL_STATE(783)] = 20525, - [SMALL_STATE(784)] = 20580, - [SMALL_STATE(785)] = 20635, - [SMALL_STATE(786)] = 20690, - [SMALL_STATE(787)] = 20745, - [SMALL_STATE(788)] = 20800, - [SMALL_STATE(789)] = 20855, - [SMALL_STATE(790)] = 20910, - [SMALL_STATE(791)] = 20967, - [SMALL_STATE(792)] = 21022, - [SMALL_STATE(793)] = 21079, - [SMALL_STATE(794)] = 21134, - [SMALL_STATE(795)] = 21193, - [SMALL_STATE(796)] = 21250, - [SMALL_STATE(797)] = 21305, - [SMALL_STATE(798)] = 21360, - [SMALL_STATE(799)] = 21415, - [SMALL_STATE(800)] = 21470, - [SMALL_STATE(801)] = 21525, - [SMALL_STATE(802)] = 21580, - [SMALL_STATE(803)] = 21637, - [SMALL_STATE(804)] = 21692, - [SMALL_STATE(805)] = 21747, - [SMALL_STATE(806)] = 21802, - [SMALL_STATE(807)] = 21857, - [SMALL_STATE(808)] = 21912, - [SMALL_STATE(809)] = 21967, - [SMALL_STATE(810)] = 22022, - [SMALL_STATE(811)] = 22077, - [SMALL_STATE(812)] = 22132, - [SMALL_STATE(813)] = 22187, - [SMALL_STATE(814)] = 22241, - [SMALL_STATE(815)] = 22295, - [SMALL_STATE(816)] = 22351, - [SMALL_STATE(817)] = 22405, - [SMALL_STATE(818)] = 22459, - [SMALL_STATE(819)] = 22513, - [SMALL_STATE(820)] = 22567, - [SMALL_STATE(821)] = 22621, - [SMALL_STATE(822)] = 22675, - [SMALL_STATE(823)] = 22729, - [SMALL_STATE(824)] = 22783, - [SMALL_STATE(825)] = 22839, - [SMALL_STATE(826)] = 22895, - [SMALL_STATE(827)] = 22949, - [SMALL_STATE(828)] = 23003, - [SMALL_STATE(829)] = 23057, - [SMALL_STATE(830)] = 23111, - [SMALL_STATE(831)] = 23165, - [SMALL_STATE(832)] = 23219, - [SMALL_STATE(833)] = 23273, - [SMALL_STATE(834)] = 23327, - [SMALL_STATE(835)] = 23383, - [SMALL_STATE(836)] = 23437, - [SMALL_STATE(837)] = 23491, - [SMALL_STATE(838)] = 23557, - [SMALL_STATE(839)] = 23613, - [SMALL_STATE(840)] = 23667, - [SMALL_STATE(841)] = 23721, - [SMALL_STATE(842)] = 23787, - [SMALL_STATE(843)] = 23841, - [SMALL_STATE(844)] = 23895, - [SMALL_STATE(845)] = 23949, - [SMALL_STATE(846)] = 24015, - [SMALL_STATE(847)] = 24069, - [SMALL_STATE(848)] = 24127, - [SMALL_STATE(849)] = 24181, - [SMALL_STATE(850)] = 24235, - [SMALL_STATE(851)] = 24289, - [SMALL_STATE(852)] = 24343, - [SMALL_STATE(853)] = 24397, - [SMALL_STATE(854)] = 24451, - [SMALL_STATE(855)] = 24505, - [SMALL_STATE(856)] = 24565, - [SMALL_STATE(857)] = 24619, - [SMALL_STATE(858)] = 24673, - [SMALL_STATE(859)] = 24727, - [SMALL_STATE(860)] = 24785, - [SMALL_STATE(861)] = 24839, - [SMALL_STATE(862)] = 24893, - [SMALL_STATE(863)] = 24947, - [SMALL_STATE(864)] = 25001, - [SMALL_STATE(865)] = 25055, + [SMALL_STATE(466)] = 945, + [SMALL_STATE(467)] = 1021, + [SMALL_STATE(468)] = 1097, + [SMALL_STATE(469)] = 1175, + [SMALL_STATE(470)] = 1251, + [SMALL_STATE(471)] = 1327, + [SMALL_STATE(472)] = 1393, + [SMALL_STATE(473)] = 1471, + [SMALL_STATE(474)] = 1547, + [SMALL_STATE(475)] = 1623, + [SMALL_STATE(476)] = 1701, + [SMALL_STATE(477)] = 1777, + [SMALL_STATE(478)] = 1843, + [SMALL_STATE(479)] = 1923, + [SMALL_STATE(480)] = 2001, + [SMALL_STATE(481)] = 2081, + [SMALL_STATE(482)] = 2157, + [SMALL_STATE(483)] = 2235, + [SMALL_STATE(484)] = 2298, + [SMALL_STATE(485)] = 2361, + [SMALL_STATE(486)] = 2438, + [SMALL_STATE(487)] = 2501, + [SMALL_STATE(488)] = 2564, + [SMALL_STATE(489)] = 2627, + [SMALL_STATE(490)] = 2690, + [SMALL_STATE(491)] = 2767, + [SMALL_STATE(492)] = 2844, + [SMALL_STATE(493)] = 2907, + [SMALL_STATE(494)] = 2970, + [SMALL_STATE(495)] = 3033, + [SMALL_STATE(496)] = 3096, + [SMALL_STATE(497)] = 3159, + [SMALL_STATE(498)] = 3222, + [SMALL_STATE(499)] = 3285, + [SMALL_STATE(500)] = 3348, + [SMALL_STATE(501)] = 3411, + [SMALL_STATE(502)] = 3474, + [SMALL_STATE(503)] = 3537, + [SMALL_STATE(504)] = 3600, + [SMALL_STATE(505)] = 3663, + [SMALL_STATE(506)] = 3726, + [SMALL_STATE(507)] = 3789, + [SMALL_STATE(508)] = 3852, + [SMALL_STATE(509)] = 3915, + [SMALL_STATE(510)] = 3978, + [SMALL_STATE(511)] = 4041, + [SMALL_STATE(512)] = 4104, + [SMALL_STATE(513)] = 4167, + [SMALL_STATE(514)] = 4230, + [SMALL_STATE(515)] = 4307, + [SMALL_STATE(516)] = 4370, + [SMALL_STATE(517)] = 4447, + [SMALL_STATE(518)] = 4510, + [SMALL_STATE(519)] = 4573, + [SMALL_STATE(520)] = 4636, + [SMALL_STATE(521)] = 4699, + [SMALL_STATE(522)] = 4762, + [SMALL_STATE(523)] = 4825, + [SMALL_STATE(524)] = 4888, + [SMALL_STATE(525)] = 4951, + [SMALL_STATE(526)] = 5024, + [SMALL_STATE(527)] = 5087, + [SMALL_STATE(528)] = 5150, + [SMALL_STATE(529)] = 5223, + [SMALL_STATE(530)] = 5286, + [SMALL_STATE(531)] = 5349, + [SMALL_STATE(532)] = 5412, + [SMALL_STATE(533)] = 5475, + [SMALL_STATE(534)] = 5538, + [SMALL_STATE(535)] = 5601, + [SMALL_STATE(536)] = 5664, + [SMALL_STATE(537)] = 5727, + [SMALL_STATE(538)] = 5790, + [SMALL_STATE(539)] = 5853, + [SMALL_STATE(540)] = 5916, + [SMALL_STATE(541)] = 5979, + [SMALL_STATE(542)] = 6042, + [SMALL_STATE(543)] = 6121, + [SMALL_STATE(544)] = 6184, + [SMALL_STATE(545)] = 6247, + [SMALL_STATE(546)] = 6310, + [SMALL_STATE(547)] = 6389, + [SMALL_STATE(548)] = 6452, + [SMALL_STATE(549)] = 6531, + [SMALL_STATE(550)] = 6608, + [SMALL_STATE(551)] = 6671, + [SMALL_STATE(552)] = 6734, + [SMALL_STATE(553)] = 6813, + [SMALL_STATE(554)] = 6876, + [SMALL_STATE(555)] = 6939, + [SMALL_STATE(556)] = 7002, + [SMALL_STATE(557)] = 7065, + [SMALL_STATE(558)] = 7128, + [SMALL_STATE(559)] = 7191, + [SMALL_STATE(560)] = 7254, + [SMALL_STATE(561)] = 7317, + [SMALL_STATE(562)] = 7380, + [SMALL_STATE(563)] = 7443, + [SMALL_STATE(564)] = 7506, + [SMALL_STATE(565)] = 7569, + [SMALL_STATE(566)] = 7632, + [SMALL_STATE(567)] = 7695, + [SMALL_STATE(568)] = 7758, + [SMALL_STATE(569)] = 7821, + [SMALL_STATE(570)] = 7884, + [SMALL_STATE(571)] = 7947, + [SMALL_STATE(572)] = 8022, + [SMALL_STATE(573)] = 8097, + [SMALL_STATE(574)] = 8160, + [SMALL_STATE(575)] = 8225, + [SMALL_STATE(576)] = 8288, + [SMALL_STATE(577)] = 8351, + [SMALL_STATE(578)] = 8414, + [SMALL_STATE(579)] = 8477, + [SMALL_STATE(580)] = 8540, + [SMALL_STATE(581)] = 8603, + [SMALL_STATE(582)] = 8676, + [SMALL_STATE(583)] = 8739, + [SMALL_STATE(584)] = 8801, + [SMALL_STATE(585)] = 8863, + [SMALL_STATE(586)] = 8925, + [SMALL_STATE(587)] = 8987, + [SMALL_STATE(588)] = 9049, + [SMALL_STATE(589)] = 9111, + [SMALL_STATE(590)] = 9173, + [SMALL_STATE(591)] = 9239, + [SMALL_STATE(592)] = 9301, + [SMALL_STATE(593)] = 9363, + [SMALL_STATE(594)] = 9425, + [SMALL_STATE(595)] = 9487, + [SMALL_STATE(596)] = 9553, + [SMALL_STATE(597)] = 9615, + [SMALL_STATE(598)] = 9677, + [SMALL_STATE(599)] = 9755, + [SMALL_STATE(600)] = 9817, + [SMALL_STATE(601)] = 9879, + [SMALL_STATE(602)] = 9941, + [SMALL_STATE(603)] = 10003, + [SMALL_STATE(604)] = 10065, + [SMALL_STATE(605)] = 10127, + [SMALL_STATE(606)] = 10189, + [SMALL_STATE(607)] = 10251, + [SMALL_STATE(608)] = 10313, + [SMALL_STATE(609)] = 10375, + [SMALL_STATE(610)] = 10451, + [SMALL_STATE(611)] = 10513, + [SMALL_STATE(612)] = 10575, + [SMALL_STATE(613)] = 10637, + [SMALL_STATE(614)] = 10699, + [SMALL_STATE(615)] = 10761, + [SMALL_STATE(616)] = 10827, + [SMALL_STATE(617)] = 10889, + [SMALL_STATE(618)] = 10951, + [SMALL_STATE(619)] = 11013, + [SMALL_STATE(620)] = 11075, + [SMALL_STATE(621)] = 11137, + [SMALL_STATE(622)] = 11199, + [SMALL_STATE(623)] = 11261, + [SMALL_STATE(624)] = 11327, + [SMALL_STATE(625)] = 11393, + [SMALL_STATE(626)] = 11455, + [SMALL_STATE(627)] = 11517, + [SMALL_STATE(628)] = 11579, + [SMALL_STATE(629)] = 11645, + [SMALL_STATE(630)] = 11707, + [SMALL_STATE(631)] = 11773, + [SMALL_STATE(632)] = 11839, + [SMALL_STATE(633)] = 11901, + [SMALL_STATE(634)] = 11963, + [SMALL_STATE(635)] = 12025, + [SMALL_STATE(636)] = 12090, + [SMALL_STATE(637)] = 12155, + [SMALL_STATE(638)] = 12220, + [SMALL_STATE(639)] = 12285, + [SMALL_STATE(640)] = 12350, + [SMALL_STATE(641)] = 12415, + [SMALL_STATE(642)] = 12480, + [SMALL_STATE(643)] = 12547, + [SMALL_STATE(644)] = 12614, + [SMALL_STATE(645)] = 12679, + [SMALL_STATE(646)] = 12739, + [SMALL_STATE(647)] = 12803, + [SMALL_STATE(648)] = 12863, + [SMALL_STATE(649)] = 12923, + [SMALL_STATE(650)] = 12981, + [SMALL_STATE(651)] = 13043, + [SMALL_STATE(652)] = 13103, + [SMALL_STATE(653)] = 13167, + [SMALL_STATE(654)] = 13225, + [SMALL_STATE(655)] = 13283, + [SMALL_STATE(656)] = 13347, + [SMALL_STATE(657)] = 13407, + [SMALL_STATE(658)] = 13467, + [SMALL_STATE(659)] = 13531, + [SMALL_STATE(660)] = 13589, + [SMALL_STATE(661)] = 13653, + [SMALL_STATE(662)] = 13711, + [SMALL_STATE(663)] = 13769, + [SMALL_STATE(664)] = 13824, + [SMALL_STATE(665)] = 13879, + [SMALL_STATE(666)] = 13942, + [SMALL_STATE(667)] = 13997, + [SMALL_STATE(668)] = 14052, + [SMALL_STATE(669)] = 14107, + [SMALL_STATE(670)] = 14166, + [SMALL_STATE(671)] = 14221, + [SMALL_STATE(672)] = 14284, + [SMALL_STATE(673)] = 14339, + [SMALL_STATE(674)] = 14394, + [SMALL_STATE(675)] = 14457, + [SMALL_STATE(676)] = 14516, + [SMALL_STATE(677)] = 14575, + [SMALL_STATE(678)] = 14632, + [SMALL_STATE(679)] = 14689, + [SMALL_STATE(680)] = 14744, + [SMALL_STATE(681)] = 14803, + [SMALL_STATE(682)] = 14858, + [SMALL_STATE(683)] = 14913, + [SMALL_STATE(684)] = 14968, + [SMALL_STATE(685)] = 15023, + [SMALL_STATE(686)] = 15078, + [SMALL_STATE(687)] = 15133, + [SMALL_STATE(688)] = 15188, + [SMALL_STATE(689)] = 15243, + [SMALL_STATE(690)] = 15298, + [SMALL_STATE(691)] = 15353, + [SMALL_STATE(692)] = 15408, + [SMALL_STATE(693)] = 15463, + [SMALL_STATE(694)] = 15518, + [SMALL_STATE(695)] = 15573, + [SMALL_STATE(696)] = 15628, + [SMALL_STATE(697)] = 15683, + [SMALL_STATE(698)] = 15738, + [SMALL_STATE(699)] = 15793, + [SMALL_STATE(700)] = 15848, + [SMALL_STATE(701)] = 15903, + [SMALL_STATE(702)] = 15958, + [SMALL_STATE(703)] = 16013, + [SMALL_STATE(704)] = 16068, + [SMALL_STATE(705)] = 16123, + [SMALL_STATE(706)] = 16180, + [SMALL_STATE(707)] = 16235, + [SMALL_STATE(708)] = 16290, + [SMALL_STATE(709)] = 16345, + [SMALL_STATE(710)] = 16400, + [SMALL_STATE(711)] = 16455, + [SMALL_STATE(712)] = 16510, + [SMALL_STATE(713)] = 16567, + [SMALL_STATE(714)] = 16622, + [SMALL_STATE(715)] = 16679, + [SMALL_STATE(716)] = 16734, + [SMALL_STATE(717)] = 16791, + [SMALL_STATE(718)] = 16846, + [SMALL_STATE(719)] = 16901, + [SMALL_STATE(720)] = 16956, + [SMALL_STATE(721)] = 17011, + [SMALL_STATE(722)] = 17066, + [SMALL_STATE(723)] = 17121, + [SMALL_STATE(724)] = 17180, + [SMALL_STATE(725)] = 17239, + [SMALL_STATE(726)] = 17296, + [SMALL_STATE(727)] = 17351, + [SMALL_STATE(728)] = 17406, + [SMALL_STATE(729)] = 17461, + [SMALL_STATE(730)] = 17516, + [SMALL_STATE(731)] = 17571, + [SMALL_STATE(732)] = 17626, + [SMALL_STATE(733)] = 17681, + [SMALL_STATE(734)] = 17736, + [SMALL_STATE(735)] = 17791, + [SMALL_STATE(736)] = 17846, + [SMALL_STATE(737)] = 17901, + [SMALL_STATE(738)] = 17956, + [SMALL_STATE(739)] = 18019, + [SMALL_STATE(740)] = 18074, + [SMALL_STATE(741)] = 18129, + [SMALL_STATE(742)] = 18184, + [SMALL_STATE(743)] = 18239, + [SMALL_STATE(744)] = 18294, + [SMALL_STATE(745)] = 18349, + [SMALL_STATE(746)] = 18404, + [SMALL_STATE(747)] = 18459, + [SMALL_STATE(748)] = 18514, + [SMALL_STATE(749)] = 18569, + [SMALL_STATE(750)] = 18624, + [SMALL_STATE(751)] = 18679, + [SMALL_STATE(752)] = 18734, + [SMALL_STATE(753)] = 18789, + [SMALL_STATE(754)] = 18848, + [SMALL_STATE(755)] = 18907, + [SMALL_STATE(756)] = 18962, + [SMALL_STATE(757)] = 19021, + [SMALL_STATE(758)] = 19076, + [SMALL_STATE(759)] = 19131, + [SMALL_STATE(760)] = 19186, + [SMALL_STATE(761)] = 19241, + [SMALL_STATE(762)] = 19296, + [SMALL_STATE(763)] = 19351, + [SMALL_STATE(764)] = 19406, + [SMALL_STATE(765)] = 19461, + [SMALL_STATE(766)] = 19516, + [SMALL_STATE(767)] = 19571, + [SMALL_STATE(768)] = 19626, + [SMALL_STATE(769)] = 19681, + [SMALL_STATE(770)] = 19736, + [SMALL_STATE(771)] = 19791, + [SMALL_STATE(772)] = 19846, + [SMALL_STATE(773)] = 19901, + [SMALL_STATE(774)] = 19956, + [SMALL_STATE(775)] = 20011, + [SMALL_STATE(776)] = 20066, + [SMALL_STATE(777)] = 20121, + [SMALL_STATE(778)] = 20176, + [SMALL_STATE(779)] = 20231, + [SMALL_STATE(780)] = 20286, + [SMALL_STATE(781)] = 20341, + [SMALL_STATE(782)] = 20396, + [SMALL_STATE(783)] = 20451, + [SMALL_STATE(784)] = 20506, + [SMALL_STATE(785)] = 20569, + [SMALL_STATE(786)] = 20624, + [SMALL_STATE(787)] = 20679, + [SMALL_STATE(788)] = 20734, + [SMALL_STATE(789)] = 20791, + [SMALL_STATE(790)] = 20846, + [SMALL_STATE(791)] = 20901, + [SMALL_STATE(792)] = 20956, + [SMALL_STATE(793)] = 21013, + [SMALL_STATE(794)] = 21076, + [SMALL_STATE(795)] = 21131, + [SMALL_STATE(796)] = 21190, + [SMALL_STATE(797)] = 21245, + [SMALL_STATE(798)] = 21300, + [SMALL_STATE(799)] = 21355, + [SMALL_STATE(800)] = 21412, + [SMALL_STATE(801)] = 21467, + [SMALL_STATE(802)] = 21526, + [SMALL_STATE(803)] = 21581, + [SMALL_STATE(804)] = 21636, + [SMALL_STATE(805)] = 21691, + [SMALL_STATE(806)] = 21746, + [SMALL_STATE(807)] = 21803, + [SMALL_STATE(808)] = 21858, + [SMALL_STATE(809)] = 21913, + [SMALL_STATE(810)] = 21970, + [SMALL_STATE(811)] = 22025, + [SMALL_STATE(812)] = 22080, + [SMALL_STATE(813)] = 22137, + [SMALL_STATE(814)] = 22191, + [SMALL_STATE(815)] = 22245, + [SMALL_STATE(816)] = 22299, + [SMALL_STATE(817)] = 22353, + [SMALL_STATE(818)] = 22407, + [SMALL_STATE(819)] = 22461, + [SMALL_STATE(820)] = 22517, + [SMALL_STATE(821)] = 22571, + [SMALL_STATE(822)] = 22627, + [SMALL_STATE(823)] = 22681, + [SMALL_STATE(824)] = 22735, + [SMALL_STATE(825)] = 22795, + [SMALL_STATE(826)] = 22849, + [SMALL_STATE(827)] = 22903, + [SMALL_STATE(828)] = 22957, + [SMALL_STATE(829)] = 23011, + [SMALL_STATE(830)] = 23065, + [SMALL_STATE(831)] = 23119, + [SMALL_STATE(832)] = 23173, + [SMALL_STATE(833)] = 23239, + [SMALL_STATE(834)] = 23293, + [SMALL_STATE(835)] = 23347, + [SMALL_STATE(836)] = 23401, + [SMALL_STATE(837)] = 23455, + [SMALL_STATE(838)] = 23509, + [SMALL_STATE(839)] = 23565, + [SMALL_STATE(840)] = 23631, + [SMALL_STATE(841)] = 23685, + [SMALL_STATE(842)] = 23751, + [SMALL_STATE(843)] = 23805, + [SMALL_STATE(844)] = 23863, + [SMALL_STATE(845)] = 23917, + [SMALL_STATE(846)] = 23973, + [SMALL_STATE(847)] = 24027, + [SMALL_STATE(848)] = 24081, + [SMALL_STATE(849)] = 24135, + [SMALL_STATE(850)] = 24191, + [SMALL_STATE(851)] = 24245, + [SMALL_STATE(852)] = 24299, + [SMALL_STATE(853)] = 24365, + [SMALL_STATE(854)] = 24419, + [SMALL_STATE(855)] = 24473, + [SMALL_STATE(856)] = 24527, + [SMALL_STATE(857)] = 24581, + [SMALL_STATE(858)] = 24635, + [SMALL_STATE(859)] = 24691, + [SMALL_STATE(860)] = 24747, + [SMALL_STATE(861)] = 24801, + [SMALL_STATE(862)] = 24867, + [SMALL_STATE(863)] = 24933, + [SMALL_STATE(864)] = 24999, + [SMALL_STATE(865)] = 25053, [SMALL_STATE(866)] = 25109, - [SMALL_STATE(867)] = 25163, - [SMALL_STATE(868)] = 25217, - [SMALL_STATE(869)] = 25271, - [SMALL_STATE(870)] = 25325, - [SMALL_STATE(871)] = 25379, - [SMALL_STATE(872)] = 25433, - [SMALL_STATE(873)] = 25487, - [SMALL_STATE(874)] = 25543, - [SMALL_STATE(875)] = 25597, - [SMALL_STATE(876)] = 25651, - [SMALL_STATE(877)] = 25705, - [SMALL_STATE(878)] = 25759, - [SMALL_STATE(879)] = 25813, - [SMALL_STATE(880)] = 25867, - [SMALL_STATE(881)] = 25933, - [SMALL_STATE(882)] = 25987, - [SMALL_STATE(883)] = 26041, - [SMALL_STATE(884)] = 26095, - [SMALL_STATE(885)] = 26149, - [SMALL_STATE(886)] = 26215, - [SMALL_STATE(887)] = 26269, - [SMALL_STATE(888)] = 26335, - [SMALL_STATE(889)] = 26389, - [SMALL_STATE(890)] = 26443, - [SMALL_STATE(891)] = 26497, - [SMALL_STATE(892)] = 26563, - [SMALL_STATE(893)] = 26621, - [SMALL_STATE(894)] = 26675, - [SMALL_STATE(895)] = 26731, - [SMALL_STATE(896)] = 26785, + [SMALL_STATE(867)] = 25165, + [SMALL_STATE(868)] = 25219, + [SMALL_STATE(869)] = 25273, + [SMALL_STATE(870)] = 25327, + [SMALL_STATE(871)] = 25385, + [SMALL_STATE(872)] = 25439, + [SMALL_STATE(873)] = 25493, + [SMALL_STATE(874)] = 25547, + [SMALL_STATE(875)] = 25601, + [SMALL_STATE(876)] = 25655, + [SMALL_STATE(877)] = 25709, + [SMALL_STATE(878)] = 25763, + [SMALL_STATE(879)] = 25817, + [SMALL_STATE(880)] = 25871, + [SMALL_STATE(881)] = 25925, + [SMALL_STATE(882)] = 25979, + [SMALL_STATE(883)] = 26033, + [SMALL_STATE(884)] = 26099, + [SMALL_STATE(885)] = 26153, + [SMALL_STATE(886)] = 26219, + [SMALL_STATE(887)] = 26273, + [SMALL_STATE(888)] = 26327, + [SMALL_STATE(889)] = 26393, + [SMALL_STATE(890)] = 26459, + [SMALL_STATE(891)] = 26517, + [SMALL_STATE(892)] = 26571, + [SMALL_STATE(893)] = 26625, + [SMALL_STATE(894)] = 26679, + [SMALL_STATE(895)] = 26733, + [SMALL_STATE(896)] = 26787, [SMALL_STATE(897)] = 26841, [SMALL_STATE(898)] = 26895, - [SMALL_STATE(899)] = 26951, - [SMALL_STATE(900)] = 27005, - [SMALL_STATE(901)] = 27059, - [SMALL_STATE(902)] = 27113, - [SMALL_STATE(903)] = 27167, - [SMALL_STATE(904)] = 27221, - [SMALL_STATE(905)] = 27275, - [SMALL_STATE(906)] = 27331, - [SMALL_STATE(907)] = 27385, - [SMALL_STATE(908)] = 27439, - [SMALL_STATE(909)] = 27505, - [SMALL_STATE(910)] = 27571, - [SMALL_STATE(911)] = 27625, - [SMALL_STATE(912)] = 27679, - [SMALL_STATE(913)] = 27745, - [SMALL_STATE(914)] = 27801, - [SMALL_STATE(915)] = 27855, - [SMALL_STATE(916)] = 27909, - [SMALL_STATE(917)] = 27963, - [SMALL_STATE(918)] = 28017, - [SMALL_STATE(919)] = 28083, - [SMALL_STATE(920)] = 28137, - [SMALL_STATE(921)] = 28191, - [SMALL_STATE(922)] = 28245, - [SMALL_STATE(923)] = 28300, - [SMALL_STATE(924)] = 28371, - [SMALL_STATE(925)] = 28444, - [SMALL_STATE(926)] = 28497, - [SMALL_STATE(927)] = 28568, - [SMALL_STATE(928)] = 28639, - [SMALL_STATE(929)] = 28692, - [SMALL_STATE(930)] = 28745, - [SMALL_STATE(931)] = 28818, - [SMALL_STATE(932)] = 28871, - [SMALL_STATE(933)] = 28944, - [SMALL_STATE(934)] = 29015, - [SMALL_STATE(935)] = 29086, - [SMALL_STATE(936)] = 29159, - [SMALL_STATE(937)] = 29232, - [SMALL_STATE(938)] = 29303, - [SMALL_STATE(939)] = 29374, - [SMALL_STATE(940)] = 29447, - [SMALL_STATE(941)] = 29520, - [SMALL_STATE(942)] = 29591, - [SMALL_STATE(943)] = 29662, - [SMALL_STATE(944)] = 29735, - [SMALL_STATE(945)] = 29806, - [SMALL_STATE(946)] = 29879, - [SMALL_STATE(947)] = 29950, - [SMALL_STATE(948)] = 30021, - [SMALL_STATE(949)] = 30092, - [SMALL_STATE(950)] = 30165, - [SMALL_STATE(951)] = 30238, - [SMALL_STATE(952)] = 30295, - [SMALL_STATE(953)] = 30352, - [SMALL_STATE(954)] = 30409, - [SMALL_STATE(955)] = 30466, - [SMALL_STATE(956)] = 30539, - [SMALL_STATE(957)] = 30592, - [SMALL_STATE(958)] = 30645, - [SMALL_STATE(959)] = 30716, - [SMALL_STATE(960)] = 30787, - [SMALL_STATE(961)] = 30860, - [SMALL_STATE(962)] = 30933, - [SMALL_STATE(963)] = 31004, - [SMALL_STATE(964)] = 31075, - [SMALL_STATE(965)] = 31156, - [SMALL_STATE(966)] = 31229, - [SMALL_STATE(967)] = 31302, - [SMALL_STATE(968)] = 31373, - [SMALL_STATE(969)] = 31444, - [SMALL_STATE(970)] = 31517, - [SMALL_STATE(971)] = 31590, - [SMALL_STATE(972)] = 31675, - [SMALL_STATE(973)] = 31760, - [SMALL_STATE(974)] = 31841, - [SMALL_STATE(975)] = 31922, - [SMALL_STATE(976)] = 32003, - [SMALL_STATE(977)] = 32084, - [SMALL_STATE(978)] = 32147, - [SMALL_STATE(979)] = 32218, - [SMALL_STATE(980)] = 32291, - [SMALL_STATE(981)] = 32364, - [SMALL_STATE(982)] = 32417, - [SMALL_STATE(983)] = 32470, - [SMALL_STATE(984)] = 32523, + [SMALL_STATE(899)] = 26949, + [SMALL_STATE(900)] = 27003, + [SMALL_STATE(901)] = 27057, + [SMALL_STATE(902)] = 27111, + [SMALL_STATE(903)] = 27165, + [SMALL_STATE(904)] = 27219, + [SMALL_STATE(905)] = 27273, + [SMALL_STATE(906)] = 27327, + [SMALL_STATE(907)] = 27381, + [SMALL_STATE(908)] = 27435, + [SMALL_STATE(909)] = 27489, + [SMALL_STATE(910)] = 27543, + [SMALL_STATE(911)] = 27597, + [SMALL_STATE(912)] = 27651, + [SMALL_STATE(913)] = 27705, + [SMALL_STATE(914)] = 27759, + [SMALL_STATE(915)] = 27813, + [SMALL_STATE(916)] = 27867, + [SMALL_STATE(917)] = 27923, + [SMALL_STATE(918)] = 27977, + [SMALL_STATE(919)] = 28031, + [SMALL_STATE(920)] = 28085, + [SMALL_STATE(921)] = 28141, + [SMALL_STATE(922)] = 28195, + [SMALL_STATE(923)] = 28268, + [SMALL_STATE(924)] = 28341, + [SMALL_STATE(925)] = 28414, + [SMALL_STATE(926)] = 28487, + [SMALL_STATE(927)] = 28558, + [SMALL_STATE(928)] = 28629, + [SMALL_STATE(929)] = 28702, + [SMALL_STATE(930)] = 28775, + [SMALL_STATE(931)] = 28846, + [SMALL_STATE(932)] = 28917, + [SMALL_STATE(933)] = 28990, + [SMALL_STATE(934)] = 29063, + [SMALL_STATE(935)] = 29136, + [SMALL_STATE(936)] = 29207, + [SMALL_STATE(937)] = 29262, + [SMALL_STATE(938)] = 29333, + [SMALL_STATE(939)] = 29406, + [SMALL_STATE(940)] = 29459, + [SMALL_STATE(941)] = 29532, + [SMALL_STATE(942)] = 29585, + [SMALL_STATE(943)] = 29642, + [SMALL_STATE(944)] = 29699, + [SMALL_STATE(945)] = 29756, + [SMALL_STATE(946)] = 29813, + [SMALL_STATE(947)] = 29886, + [SMALL_STATE(948)] = 29939, + [SMALL_STATE(949)] = 29992, + [SMALL_STATE(950)] = 30065, + [SMALL_STATE(951)] = 30146, + [SMALL_STATE(952)] = 30217, + [SMALL_STATE(953)] = 30288, + [SMALL_STATE(954)] = 30359, + [SMALL_STATE(955)] = 30432, + [SMALL_STATE(956)] = 30503, + [SMALL_STATE(957)] = 30558, + [SMALL_STATE(958)] = 30631, + [SMALL_STATE(959)] = 30704, + [SMALL_STATE(960)] = 30775, + [SMALL_STATE(961)] = 30846, + [SMALL_STATE(962)] = 30901, + [SMALL_STATE(963)] = 30974, + [SMALL_STATE(964)] = 31027, + [SMALL_STATE(965)] = 31080, + [SMALL_STATE(966)] = 31153, + [SMALL_STATE(967)] = 31224, + [SMALL_STATE(968)] = 31295, + [SMALL_STATE(969)] = 31368, + [SMALL_STATE(970)] = 31441, + [SMALL_STATE(971)] = 31512, + [SMALL_STATE(972)] = 31583, + [SMALL_STATE(973)] = 31656, + [SMALL_STATE(974)] = 31729, + [SMALL_STATE(975)] = 31802, + [SMALL_STATE(976)] = 31873, + [SMALL_STATE(977)] = 31944, + [SMALL_STATE(978)] = 32017, + [SMALL_STATE(979)] = 32090, + [SMALL_STATE(980)] = 32171, + [SMALL_STATE(981)] = 32256, + [SMALL_STATE(982)] = 32341, + [SMALL_STATE(983)] = 32422, + [SMALL_STATE(984)] = 32495, [SMALL_STATE(985)] = 32576, - [SMALL_STATE(986)] = 32649, - [SMALL_STATE(987)] = 32704, - [SMALL_STATE(988)] = 32777, - [SMALL_STATE(989)] = 32832, - [SMALL_STATE(990)] = 32905, - [SMALL_STATE(991)] = 32978, - [SMALL_STATE(992)] = 33051, - [SMALL_STATE(993)] = 33132, - [SMALL_STATE(994)] = 33213, - [SMALL_STATE(995)] = 33268, - [SMALL_STATE(996)] = 33323, - [SMALL_STATE(997)] = 33396, - [SMALL_STATE(998)] = 33469, - [SMALL_STATE(999)] = 33522, - [SMALL_STATE(1000)] = 33575, - [SMALL_STATE(1001)] = 33628, - [SMALL_STATE(1002)] = 33709, - [SMALL_STATE(1003)] = 33762, - [SMALL_STATE(1004)] = 33835, - [SMALL_STATE(1005)] = 33908, - [SMALL_STATE(1006)] = 33963, - [SMALL_STATE(1007)] = 34018, - [SMALL_STATE(1008)] = 34091, - [SMALL_STATE(1009)] = 34172, - [SMALL_STATE(1010)] = 34253, - [SMALL_STATE(1011)] = 34326, - [SMALL_STATE(1012)] = 34399, - [SMALL_STATE(1013)] = 34472, - [SMALL_STATE(1014)] = 34545, - [SMALL_STATE(1015)] = 34618, - [SMALL_STATE(1016)] = 34691, - [SMALL_STATE(1017)] = 34772, - [SMALL_STATE(1018)] = 34845, - [SMALL_STATE(1019)] = 34898, - [SMALL_STATE(1020)] = 34971, - [SMALL_STATE(1021)] = 35024, - [SMALL_STATE(1022)] = 35097, - [SMALL_STATE(1023)] = 35178, - [SMALL_STATE(1024)] = 35251, - [SMALL_STATE(1025)] = 35324, - [SMALL_STATE(1026)] = 35397, - [SMALL_STATE(1027)] = 35470, - [SMALL_STATE(1028)] = 35543, - [SMALL_STATE(1029)] = 35616, - [SMALL_STATE(1030)] = 35669, - [SMALL_STATE(1031)] = 35722, - [SMALL_STATE(1032)] = 35795, - [SMALL_STATE(1033)] = 35848, - [SMALL_STATE(1034)] = 35924, - [SMALL_STATE(1035)] = 36000, - [SMALL_STATE(1036)] = 36058, - [SMALL_STATE(1037)] = 36115, - [SMALL_STATE(1038)] = 36188, - [SMALL_STATE(1039)] = 36252, - [SMALL_STATE(1040)] = 36316, - [SMALL_STATE(1041)] = 36370, - [SMALL_STATE(1042)] = 36434, - [SMALL_STATE(1043)] = 36498, - [SMALL_STATE(1044)] = 36550, - [SMALL_STATE(1045)] = 36614, - [SMALL_STATE(1046)] = 36666, - [SMALL_STATE(1047)] = 36730, - [SMALL_STATE(1048)] = 36784, - [SMALL_STATE(1049)] = 36838, - [SMALL_STATE(1050)] = 36892, - [SMALL_STATE(1051)] = 36956, - [SMALL_STATE(1052)] = 37012, - [SMALL_STATE(1053)] = 37076, - [SMALL_STATE(1054)] = 37140, - [SMALL_STATE(1055)] = 37212, - [SMALL_STATE(1056)] = 37284, - [SMALL_STATE(1057)] = 37348, - [SMALL_STATE(1058)] = 37420, - [SMALL_STATE(1059)] = 37484, - [SMALL_STATE(1060)] = 37548, - [SMALL_STATE(1061)] = 37630, - [SMALL_STATE(1062)] = 37694, - [SMALL_STATE(1063)] = 37758, - [SMALL_STATE(1064)] = 37840, - [SMALL_STATE(1065)] = 37904, - [SMALL_STATE(1066)] = 37968, - [SMALL_STATE(1067)] = 38032, - [SMALL_STATE(1068)] = 38114, - [SMALL_STATE(1069)] = 38178, - [SMALL_STATE(1070)] = 38242, - [SMALL_STATE(1071)] = 38306, - [SMALL_STATE(1072)] = 38370, - [SMALL_STATE(1073)] = 38434, - [SMALL_STATE(1074)] = 38498, - [SMALL_STATE(1075)] = 38562, - [SMALL_STATE(1076)] = 38626, - [SMALL_STATE(1077)] = 38690, - [SMALL_STATE(1078)] = 38754, - [SMALL_STATE(1079)] = 38818, - [SMALL_STATE(1080)] = 38890, - [SMALL_STATE(1081)] = 38954, - [SMALL_STATE(1082)] = 39018, - [SMALL_STATE(1083)] = 39082, - [SMALL_STATE(1084)] = 39146, - [SMALL_STATE(1085)] = 39210, - [SMALL_STATE(1086)] = 39274, - [SMALL_STATE(1087)] = 39338, - [SMALL_STATE(1088)] = 39402, - [SMALL_STATE(1089)] = 39466, - [SMALL_STATE(1090)] = 39530, - [SMALL_STATE(1091)] = 39594, - [SMALL_STATE(1092)] = 39658, - [SMALL_STATE(1093)] = 39722, - [SMALL_STATE(1094)] = 39786, - [SMALL_STATE(1095)] = 39850, - [SMALL_STATE(1096)] = 39914, - [SMALL_STATE(1097)] = 39996, - [SMALL_STATE(1098)] = 40060, - [SMALL_STATE(1099)] = 40124, - [SMALL_STATE(1100)] = 40188, - [SMALL_STATE(1101)] = 40252, - [SMALL_STATE(1102)] = 40316, - [SMALL_STATE(1103)] = 40380, - [SMALL_STATE(1104)] = 40444, - [SMALL_STATE(1105)] = 40508, - [SMALL_STATE(1106)] = 40572, - [SMALL_STATE(1107)] = 40636, - [SMALL_STATE(1108)] = 40700, - [SMALL_STATE(1109)] = 40764, - [SMALL_STATE(1110)] = 40828, - [SMALL_STATE(1111)] = 40892, - [SMALL_STATE(1112)] = 40956, - [SMALL_STATE(1113)] = 41020, - [SMALL_STATE(1114)] = 41073, - [SMALL_STATE(1115)] = 41126, - [SMALL_STATE(1116)] = 41189, - [SMALL_STATE(1117)] = 41250, - [SMALL_STATE(1118)] = 41311, - [SMALL_STATE(1119)] = 41370, - [SMALL_STATE(1120)] = 41433, - [SMALL_STATE(1121)] = 41492, - [SMALL_STATE(1122)] = 41553, - [SMALL_STATE(1123)] = 41606, - [SMALL_STATE(1124)] = 41659, - [SMALL_STATE(1125)] = 41722, - [SMALL_STATE(1126)] = 41781, - [SMALL_STATE(1127)] = 41840, - [SMALL_STATE(1128)] = 41903, - [SMALL_STATE(1129)] = 41956, - [SMALL_STATE(1130)] = 42015, - [SMALL_STATE(1131)] = 42074, - [SMALL_STATE(1132)] = 42127, - [SMALL_STATE(1133)] = 42180, - [SMALL_STATE(1134)] = 42233, - [SMALL_STATE(1135)] = 42296, - [SMALL_STATE(1136)] = 42359, - [SMALL_STATE(1137)] = 42412, - [SMALL_STATE(1138)] = 42473, - [SMALL_STATE(1139)] = 42526, - [SMALL_STATE(1140)] = 42579, - [SMALL_STATE(1141)] = 42632, - [SMALL_STATE(1142)] = 42685, - [SMALL_STATE(1143)] = 42738, - [SMALL_STATE(1144)] = 42791, - [SMALL_STATE(1145)] = 42844, - [SMALL_STATE(1146)] = 42897, - [SMALL_STATE(1147)] = 42950, - [SMALL_STATE(1148)] = 43003, - [SMALL_STATE(1149)] = 43056, - [SMALL_STATE(1150)] = 43115, - [SMALL_STATE(1151)] = 43170, - [SMALL_STATE(1152)] = 43225, - [SMALL_STATE(1153)] = 43280, - [SMALL_STATE(1154)] = 43335, - [SMALL_STATE(1155)] = 43384, - [SMALL_STATE(1156)] = 43439, - [SMALL_STATE(1157)] = 43492, - [SMALL_STATE(1158)] = 43545, - [SMALL_STATE(1159)] = 43598, - [SMALL_STATE(1160)] = 43651, - [SMALL_STATE(1161)] = 43704, - [SMALL_STATE(1162)] = 43757, - [SMALL_STATE(1163)] = 43818, - [SMALL_STATE(1164)] = 43871, - [SMALL_STATE(1165)] = 43924, - [SMALL_STATE(1166)] = 43979, - [SMALL_STATE(1167)] = 44038, - [SMALL_STATE(1168)] = 44091, - [SMALL_STATE(1169)] = 44144, - [SMALL_STATE(1170)] = 44203, - [SMALL_STATE(1171)] = 44256, - [SMALL_STATE(1172)] = 44309, - [SMALL_STATE(1173)] = 44362, - [SMALL_STATE(1174)] = 44421, - [SMALL_STATE(1175)] = 44474, - [SMALL_STATE(1176)] = 44523, - [SMALL_STATE(1177)] = 44578, - [SMALL_STATE(1178)] = 44631, - [SMALL_STATE(1179)] = 44684, - [SMALL_STATE(1180)] = 44737, - [SMALL_STATE(1181)] = 44790, - [SMALL_STATE(1182)] = 44849, - [SMALL_STATE(1183)] = 44902, - [SMALL_STATE(1184)] = 44955, - [SMALL_STATE(1185)] = 45008, - [SMALL_STATE(1186)] = 45061, - [SMALL_STATE(1187)] = 45123, - [SMALL_STATE(1188)] = 45177, - [SMALL_STATE(1189)] = 45239, - [SMALL_STATE(1190)] = 45301, - [SMALL_STATE(1191)] = 45363, - [SMALL_STATE(1192)] = 45415, - [SMALL_STATE(1193)] = 45477, - [SMALL_STATE(1194)] = 45539, - [SMALL_STATE(1195)] = 45591, - [SMALL_STATE(1196)] = 45643, - [SMALL_STATE(1197)] = 45695, - [SMALL_STATE(1198)] = 45757, - [SMALL_STATE(1199)] = 45819, - [SMALL_STATE(1200)] = 45881, - [SMALL_STATE(1201)] = 45943, - [SMALL_STATE(1202)] = 46005, - [SMALL_STATE(1203)] = 46057, - [SMALL_STATE(1204)] = 46115, - [SMALL_STATE(1205)] = 46177, - [SMALL_STATE(1206)] = 46239, - [SMALL_STATE(1207)] = 46301, - [SMALL_STATE(1208)] = 46363, - [SMALL_STATE(1209)] = 46425, - [SMALL_STATE(1210)] = 46487, - [SMALL_STATE(1211)] = 46549, - [SMALL_STATE(1212)] = 46611, - [SMALL_STATE(1213)] = 46673, - [SMALL_STATE(1214)] = 46731, - [SMALL_STATE(1215)] = 46789, - [SMALL_STATE(1216)] = 46847, - [SMALL_STATE(1217)] = 46909, - [SMALL_STATE(1218)] = 46971, - [SMALL_STATE(1219)] = 47033, - [SMALL_STATE(1220)] = 47095, - [SMALL_STATE(1221)] = 47157, - [SMALL_STATE(1222)] = 47219, - [SMALL_STATE(1223)] = 47281, - [SMALL_STATE(1224)] = 47343, - [SMALL_STATE(1225)] = 47405, - [SMALL_STATE(1226)] = 47467, - [SMALL_STATE(1227)] = 47529, - [SMALL_STATE(1228)] = 47591, - [SMALL_STATE(1229)] = 47653, - [SMALL_STATE(1230)] = 47715, - [SMALL_STATE(1231)] = 47777, - [SMALL_STATE(1232)] = 47839, - [SMALL_STATE(1233)] = 47893, - [SMALL_STATE(1234)] = 47955, - [SMALL_STATE(1235)] = 48017, - [SMALL_STATE(1236)] = 48079, - [SMALL_STATE(1237)] = 48141, - [SMALL_STATE(1238)] = 48203, - [SMALL_STATE(1239)] = 48265, - [SMALL_STATE(1240)] = 48327, - [SMALL_STATE(1241)] = 48389, - [SMALL_STATE(1242)] = 48451, - [SMALL_STATE(1243)] = 48509, - [SMALL_STATE(1244)] = 48571, - [SMALL_STATE(1245)] = 48633, - [SMALL_STATE(1246)] = 48695, - [SMALL_STATE(1247)] = 48757, - [SMALL_STATE(1248)] = 48815, - [SMALL_STATE(1249)] = 48873, - [SMALL_STATE(1250)] = 48935, - [SMALL_STATE(1251)] = 48997, - [SMALL_STATE(1252)] = 49059, - [SMALL_STATE(1253)] = 49121, - [SMALL_STATE(1254)] = 49183, - [SMALL_STATE(1255)] = 49241, - [SMALL_STATE(1256)] = 49303, - [SMALL_STATE(1257)] = 49365, - [SMALL_STATE(1258)] = 49427, - [SMALL_STATE(1259)] = 49479, - [SMALL_STATE(1260)] = 49541, - [SMALL_STATE(1261)] = 49603, - [SMALL_STATE(1262)] = 49665, - [SMALL_STATE(1263)] = 49727, - [SMALL_STATE(1264)] = 49789, - [SMALL_STATE(1265)] = 49851, - [SMALL_STATE(1266)] = 49913, - [SMALL_STATE(1267)] = 49967, - [SMALL_STATE(1268)] = 50025, - [SMALL_STATE(1269)] = 50087, - [SMALL_STATE(1270)] = 50149, - [SMALL_STATE(1271)] = 50211, - [SMALL_STATE(1272)] = 50273, - [SMALL_STATE(1273)] = 50335, - [SMALL_STATE(1274)] = 50397, - [SMALL_STATE(1275)] = 50459, - [SMALL_STATE(1276)] = 50521, - [SMALL_STATE(1277)] = 50573, - [SMALL_STATE(1278)] = 50625, - [SMALL_STATE(1279)] = 50677, - [SMALL_STATE(1280)] = 50735, - [SMALL_STATE(1281)] = 50787, - [SMALL_STATE(1282)] = 50839, - [SMALL_STATE(1283)] = 50891, - [SMALL_STATE(1284)] = 50943, - [SMALL_STATE(1285)] = 50995, - [SMALL_STATE(1286)] = 51047, - [SMALL_STATE(1287)] = 51099, - [SMALL_STATE(1288)] = 51151, - [SMALL_STATE(1289)] = 51203, - [SMALL_STATE(1290)] = 51255, - [SMALL_STATE(1291)] = 51307, - [SMALL_STATE(1292)] = 51359, - [SMALL_STATE(1293)] = 51411, - [SMALL_STATE(1294)] = 51465, - [SMALL_STATE(1295)] = 51517, - [SMALL_STATE(1296)] = 51569, - [SMALL_STATE(1297)] = 51621, - [SMALL_STATE(1298)] = 51673, - [SMALL_STATE(1299)] = 51735, - [SMALL_STATE(1300)] = 51797, - [SMALL_STATE(1301)] = 51859, - [SMALL_STATE(1302)] = 51921, - [SMALL_STATE(1303)] = 51983, - [SMALL_STATE(1304)] = 52045, - [SMALL_STATE(1305)] = 52107, - [SMALL_STATE(1306)] = 52169, - [SMALL_STATE(1307)] = 52231, - [SMALL_STATE(1308)] = 52285, - [SMALL_STATE(1309)] = 52347, - [SMALL_STATE(1310)] = 52409, - [SMALL_STATE(1311)] = 52471, - [SMALL_STATE(1312)] = 52533, - [SMALL_STATE(1313)] = 52595, - [SMALL_STATE(1314)] = 52657, - [SMALL_STATE(1315)] = 52719, - [SMALL_STATE(1316)] = 52781, - [SMALL_STATE(1317)] = 52843, - [SMALL_STATE(1318)] = 52895, - [SMALL_STATE(1319)] = 52957, - [SMALL_STATE(1320)] = 53009, - [SMALL_STATE(1321)] = 53071, - [SMALL_STATE(1322)] = 53133, - [SMALL_STATE(1323)] = 53195, - [SMALL_STATE(1324)] = 53257, - [SMALL_STATE(1325)] = 53319, - [SMALL_STATE(1326)] = 53381, - [SMALL_STATE(1327)] = 53443, - [SMALL_STATE(1328)] = 53505, - [SMALL_STATE(1329)] = 53567, - [SMALL_STATE(1330)] = 53629, - [SMALL_STATE(1331)] = 53688, - [SMALL_STATE(1332)] = 53747, - [SMALL_STATE(1333)] = 53806, - [SMALL_STATE(1334)] = 53865, - [SMALL_STATE(1335)] = 53924, - [SMALL_STATE(1336)] = 53983, - [SMALL_STATE(1337)] = 54046, - [SMALL_STATE(1338)] = 54109, - [SMALL_STATE(1339)] = 54160, - [SMALL_STATE(1340)] = 54219, - [SMALL_STATE(1341)] = 54278, - [SMALL_STATE(1342)] = 54337, - [SMALL_STATE(1343)] = 54396, - [SMALL_STATE(1344)] = 54447, - [SMALL_STATE(1345)] = 54506, - [SMALL_STATE(1346)] = 54557, - [SMALL_STATE(1347)] = 54616, - [SMALL_STATE(1348)] = 54675, - [SMALL_STATE(1349)] = 54726, - [SMALL_STATE(1350)] = 54785, - [SMALL_STATE(1351)] = 54844, - [SMALL_STATE(1352)] = 54895, - [SMALL_STATE(1353)] = 54946, - [SMALL_STATE(1354)] = 54999, - [SMALL_STATE(1355)] = 55054, - [SMALL_STATE(1356)] = 55113, - [SMALL_STATE(1357)] = 55172, - [SMALL_STATE(1358)] = 55231, - [SMALL_STATE(1359)] = 55290, - [SMALL_STATE(1360)] = 55349, - [SMALL_STATE(1361)] = 55408, - [SMALL_STATE(1362)] = 55459, - [SMALL_STATE(1363)] = 55518, - [SMALL_STATE(1364)] = 55577, - [SMALL_STATE(1365)] = 55636, - [SMALL_STATE(1366)] = 55695, - [SMALL_STATE(1367)] = 55754, - [SMALL_STATE(1368)] = 55805, - [SMALL_STATE(1369)] = 55864, - [SMALL_STATE(1370)] = 55923, - [SMALL_STATE(1371)] = 55982, - [SMALL_STATE(1372)] = 56041, - [SMALL_STATE(1373)] = 56100, - [SMALL_STATE(1374)] = 56159, - [SMALL_STATE(1375)] = 56218, - [SMALL_STATE(1376)] = 56277, - [SMALL_STATE(1377)] = 56336, - [SMALL_STATE(1378)] = 56395, - [SMALL_STATE(1379)] = 56454, - [SMALL_STATE(1380)] = 56505, - [SMALL_STATE(1381)] = 56564, - [SMALL_STATE(1382)] = 56623, - [SMALL_STATE(1383)] = 56682, - [SMALL_STATE(1384)] = 56741, - [SMALL_STATE(1385)] = 56800, - [SMALL_STATE(1386)] = 56851, - [SMALL_STATE(1387)] = 56902, - [SMALL_STATE(1388)] = 56953, - [SMALL_STATE(1389)] = 57012, - [SMALL_STATE(1390)] = 57071, - [SMALL_STATE(1391)] = 57130, - [SMALL_STATE(1392)] = 57181, - [SMALL_STATE(1393)] = 57232, - [SMALL_STATE(1394)] = 57291, - [SMALL_STATE(1395)] = 57350, - [SMALL_STATE(1396)] = 57409, - [SMALL_STATE(1397)] = 57460, - [SMALL_STATE(1398)] = 57519, - [SMALL_STATE(1399)] = 57578, - [SMALL_STATE(1400)] = 57629, - [SMALL_STATE(1401)] = 57688, - [SMALL_STATE(1402)] = 57747, - [SMALL_STATE(1403)] = 57806, - [SMALL_STATE(1404)] = 57865, - [SMALL_STATE(1405)] = 57924, - [SMALL_STATE(1406)] = 57983, - [SMALL_STATE(1407)] = 58042, - [SMALL_STATE(1408)] = 58101, - [SMALL_STATE(1409)] = 58160, - [SMALL_STATE(1410)] = 58211, - [SMALL_STATE(1411)] = 58270, - [SMALL_STATE(1412)] = 58329, - [SMALL_STATE(1413)] = 58380, - [SMALL_STATE(1414)] = 58431, - [SMALL_STATE(1415)] = 58490, - [SMALL_STATE(1416)] = 58541, - [SMALL_STATE(1417)] = 58592, - [SMALL_STATE(1418)] = 58651, - [SMALL_STATE(1419)] = 58710, - [SMALL_STATE(1420)] = 58769, - [SMALL_STATE(1421)] = 58828, - [SMALL_STATE(1422)] = 58887, - [SMALL_STATE(1423)] = 58938, - [SMALL_STATE(1424)] = 58997, - [SMALL_STATE(1425)] = 59048, - [SMALL_STATE(1426)] = 59107, - [SMALL_STATE(1427)] = 59166, - [SMALL_STATE(1428)] = 59225, - [SMALL_STATE(1429)] = 59276, - [SMALL_STATE(1430)] = 59335, - [SMALL_STATE(1431)] = 59394, - [SMALL_STATE(1432)] = 59453, - [SMALL_STATE(1433)] = 59504, - [SMALL_STATE(1434)] = 59563, - [SMALL_STATE(1435)] = 59622, - [SMALL_STATE(1436)] = 59681, - [SMALL_STATE(1437)] = 59740, - [SMALL_STATE(1438)] = 59791, - [SMALL_STATE(1439)] = 59842, - [SMALL_STATE(1440)] = 59901, - [SMALL_STATE(1441)] = 59952, - [SMALL_STATE(1442)] = 60003, - [SMALL_STATE(1443)] = 60054, - [SMALL_STATE(1444)] = 60113, - [SMALL_STATE(1445)] = 60172, - [SMALL_STATE(1446)] = 60231, - [SMALL_STATE(1447)] = 60282, - [SMALL_STATE(1448)] = 60333, - [SMALL_STATE(1449)] = 60392, - [SMALL_STATE(1450)] = 60443, - [SMALL_STATE(1451)] = 60502, - [SMALL_STATE(1452)] = 60553, - [SMALL_STATE(1453)] = 60612, - [SMALL_STATE(1454)] = 60663, - [SMALL_STATE(1455)] = 60714, - [SMALL_STATE(1456)] = 60773, - [SMALL_STATE(1457)] = 60832, - [SMALL_STATE(1458)] = 60883, - [SMALL_STATE(1459)] = 60934, - [SMALL_STATE(1460)] = 60993, - [SMALL_STATE(1461)] = 61044, - [SMALL_STATE(1462)] = 61103, - [SMALL_STATE(1463)] = 61162, - [SMALL_STATE(1464)] = 61213, - [SMALL_STATE(1465)] = 61272, - [SMALL_STATE(1466)] = 61331, - [SMALL_STATE(1467)] = 61390, - [SMALL_STATE(1468)] = 61441, - [SMALL_STATE(1469)] = 61500, - [SMALL_STATE(1470)] = 61559, - [SMALL_STATE(1471)] = 61610, - [SMALL_STATE(1472)] = 61669, - [SMALL_STATE(1473)] = 61728, - [SMALL_STATE(1474)] = 61787, - [SMALL_STATE(1475)] = 61846, - [SMALL_STATE(1476)] = 61905, - [SMALL_STATE(1477)] = 61956, - [SMALL_STATE(1478)] = 62007, - [SMALL_STATE(1479)] = 62066, - [SMALL_STATE(1480)] = 62117, - [SMALL_STATE(1481)] = 62176, - [SMALL_STATE(1482)] = 62235, - [SMALL_STATE(1483)] = 62294, - [SMALL_STATE(1484)] = 62353, - [SMALL_STATE(1485)] = 62404, - [SMALL_STATE(1486)] = 62463, - [SMALL_STATE(1487)] = 62514, - [SMALL_STATE(1488)] = 62565, - [SMALL_STATE(1489)] = 62616, - [SMALL_STATE(1490)] = 62667, - [SMALL_STATE(1491)] = 62726, - [SMALL_STATE(1492)] = 62777, - [SMALL_STATE(1493)] = 62836, - [SMALL_STATE(1494)] = 62895, - [SMALL_STATE(1495)] = 62954, - [SMALL_STATE(1496)] = 63013, - [SMALL_STATE(1497)] = 63072, - [SMALL_STATE(1498)] = 63123, - [SMALL_STATE(1499)] = 63182, - [SMALL_STATE(1500)] = 63241, - [SMALL_STATE(1501)] = 63292, - [SMALL_STATE(1502)] = 63351, - [SMALL_STATE(1503)] = 63410, - [SMALL_STATE(1504)] = 63469, - [SMALL_STATE(1505)] = 63520, - [SMALL_STATE(1506)] = 63583, - [SMALL_STATE(1507)] = 63642, - [SMALL_STATE(1508)] = 63697, - [SMALL_STATE(1509)] = 63748, - [SMALL_STATE(1510)] = 63807, - [SMALL_STATE(1511)] = 63866, - [SMALL_STATE(1512)] = 63925, - [SMALL_STATE(1513)] = 63984, - [SMALL_STATE(1514)] = 64043, - [SMALL_STATE(1515)] = 64102, - [SMALL_STATE(1516)] = 64161, - [SMALL_STATE(1517)] = 64220, - [SMALL_STATE(1518)] = 64279, - [SMALL_STATE(1519)] = 64338, - [SMALL_STATE(1520)] = 64389, - [SMALL_STATE(1521)] = 64448, - [SMALL_STATE(1522)] = 64507, - [SMALL_STATE(1523)] = 64566, - [SMALL_STATE(1524)] = 64625, - [SMALL_STATE(1525)] = 64684, - [SMALL_STATE(1526)] = 64743, - [SMALL_STATE(1527)] = 64802, - [SMALL_STATE(1528)] = 64861, - [SMALL_STATE(1529)] = 64920, - [SMALL_STATE(1530)] = 64979, - [SMALL_STATE(1531)] = 65038, - [SMALL_STATE(1532)] = 65097, - [SMALL_STATE(1533)] = 65156, - [SMALL_STATE(1534)] = 65215, - [SMALL_STATE(1535)] = 65274, - [SMALL_STATE(1536)] = 65333, - [SMALL_STATE(1537)] = 65396, - [SMALL_STATE(1538)] = 65455, - [SMALL_STATE(1539)] = 65518, - [SMALL_STATE(1540)] = 65577, - [SMALL_STATE(1541)] = 65636, - [SMALL_STATE(1542)] = 65695, - [SMALL_STATE(1543)] = 65754, - [SMALL_STATE(1544)] = 65817, - [SMALL_STATE(1545)] = 65876, - [SMALL_STATE(1546)] = 65935, - [SMALL_STATE(1547)] = 65998, - [SMALL_STATE(1548)] = 66057, - [SMALL_STATE(1549)] = 66116, - [SMALL_STATE(1550)] = 66175, - [SMALL_STATE(1551)] = 66234, - [SMALL_STATE(1552)] = 66293, - [SMALL_STATE(1553)] = 66356, - [SMALL_STATE(1554)] = 66415, - [SMALL_STATE(1555)] = 66474, - [SMALL_STATE(1556)] = 66537, - [SMALL_STATE(1557)] = 66596, - [SMALL_STATE(1558)] = 66659, - [SMALL_STATE(1559)] = 66718, - [SMALL_STATE(1560)] = 66777, - [SMALL_STATE(1561)] = 66836, - [SMALL_STATE(1562)] = 66887, - [SMALL_STATE(1563)] = 66938, - [SMALL_STATE(1564)] = 66989, - [SMALL_STATE(1565)] = 67040, - [SMALL_STATE(1566)] = 67099, - [SMALL_STATE(1567)] = 67158, - [SMALL_STATE(1568)] = 67217, - [SMALL_STATE(1569)] = 67267, - [SMALL_STATE(1570)] = 67323, - [SMALL_STATE(1571)] = 67379, - [SMALL_STATE(1572)] = 67433, - [SMALL_STATE(1573)] = 67489, - [SMALL_STATE(1574)] = 67539, - [SMALL_STATE(1575)] = 67589, - [SMALL_STATE(1576)] = 67637, - [SMALL_STATE(1577)] = 67687, - [SMALL_STATE(1578)] = 67737, - [SMALL_STATE(1579)] = 67787, - [SMALL_STATE(1580)] = 67841, - [SMALL_STATE(1581)] = 67889, - [SMALL_STATE(1582)] = 67939, - [SMALL_STATE(1583)] = 67989, - [SMALL_STATE(1584)] = 68039, - [SMALL_STATE(1585)] = 68095, - [SMALL_STATE(1586)] = 68145, - [SMALL_STATE(1587)] = 68195, - [SMALL_STATE(1588)] = 68245, - [SMALL_STATE(1589)] = 68293, - [SMALL_STATE(1590)] = 68341, - [SMALL_STATE(1591)] = 68391, - [SMALL_STATE(1592)] = 68441, - [SMALL_STATE(1593)] = 68491, - [SMALL_STATE(1594)] = 68545, - [SMALL_STATE(1595)] = 68595, - [SMALL_STATE(1596)] = 68645, - [SMALL_STATE(1597)] = 68695, - [SMALL_STATE(1598)] = 68745, - [SMALL_STATE(1599)] = 68795, - [SMALL_STATE(1600)] = 68845, - [SMALL_STATE(1601)] = 68895, - [SMALL_STATE(1602)] = 68943, - [SMALL_STATE(1603)] = 68993, - [SMALL_STATE(1604)] = 69045, - [SMALL_STATE(1605)] = 69093, - [SMALL_STATE(1606)] = 69141, - [SMALL_STATE(1607)] = 69191, - [SMALL_STATE(1608)] = 69247, - [SMALL_STATE(1609)] = 69297, - [SMALL_STATE(1610)] = 69347, - [SMALL_STATE(1611)] = 69397, - [SMALL_STATE(1612)] = 69447, - [SMALL_STATE(1613)] = 69497, - [SMALL_STATE(1614)] = 69553, - [SMALL_STATE(1615)] = 69603, - [SMALL_STATE(1616)] = 69653, - [SMALL_STATE(1617)] = 69703, - [SMALL_STATE(1618)] = 69753, - [SMALL_STATE(1619)] = 69803, - [SMALL_STATE(1620)] = 69853, - [SMALL_STATE(1621)] = 69903, - [SMALL_STATE(1622)] = 69953, - [SMALL_STATE(1623)] = 70009, - [SMALL_STATE(1624)] = 70059, - [SMALL_STATE(1625)] = 70107, - [SMALL_STATE(1626)] = 70157, - [SMALL_STATE(1627)] = 70207, - [SMALL_STATE(1628)] = 70255, - [SMALL_STATE(1629)] = 70309, - [SMALL_STATE(1630)] = 70359, - [SMALL_STATE(1631)] = 70409, - [SMALL_STATE(1632)] = 70459, - [SMALL_STATE(1633)] = 70506, - [SMALL_STATE(1634)] = 70553, - [SMALL_STATE(1635)] = 70602, - [SMALL_STATE(1636)] = 70649, - [SMALL_STATE(1637)] = 70696, - [SMALL_STATE(1638)] = 70741, - [SMALL_STATE(1639)] = 70788, - [SMALL_STATE(1640)] = 70833, - [SMALL_STATE(1641)] = 70880, - [SMALL_STATE(1642)] = 70929, - [SMALL_STATE(1643)] = 70974, - [SMALL_STATE(1644)] = 71019, - [SMALL_STATE(1645)] = 71074, - [SMALL_STATE(1646)] = 71119, - [SMALL_STATE(1647)] = 71164, - [SMALL_STATE(1648)] = 71211, - [SMALL_STATE(1649)] = 71256, - [SMALL_STATE(1650)] = 71301, - [SMALL_STATE(1651)] = 71348, - [SMALL_STATE(1652)] = 71393, - [SMALL_STATE(1653)] = 71438, - [SMALL_STATE(1654)] = 71483, - [SMALL_STATE(1655)] = 71530, - [SMALL_STATE(1656)] = 71575, - [SMALL_STATE(1657)] = 71630, - [SMALL_STATE(1658)] = 71675, - [SMALL_STATE(1659)] = 71724, - [SMALL_STATE(1660)] = 71771, - [SMALL_STATE(1661)] = 71818, - [SMALL_STATE(1662)] = 71863, - [SMALL_STATE(1663)] = 71910, - [SMALL_STATE(1664)] = 71955, - [SMALL_STATE(1665)] = 72000, - [SMALL_STATE(1666)] = 72045, - [SMALL_STATE(1667)] = 72090, - [SMALL_STATE(1668)] = 72135, - [SMALL_STATE(1669)] = 72180, - [SMALL_STATE(1670)] = 72225, - [SMALL_STATE(1671)] = 72270, - [SMALL_STATE(1672)] = 72319, - [SMALL_STATE(1673)] = 72364, - [SMALL_STATE(1674)] = 72409, - [SMALL_STATE(1675)] = 72454, - [SMALL_STATE(1676)] = 72499, - [SMALL_STATE(1677)] = 72546, - [SMALL_STATE(1678)] = 72591, - [SMALL_STATE(1679)] = 72646, - [SMALL_STATE(1680)] = 72691, - [SMALL_STATE(1681)] = 72738, - [SMALL_STATE(1682)] = 72784, - [SMALL_STATE(1683)] = 72830, - [SMALL_STATE(1684)] = 72874, - [SMALL_STATE(1685)] = 72918, - [SMALL_STATE(1686)] = 72964, - [SMALL_STATE(1687)] = 73010, - [SMALL_STATE(1688)] = 73056, - [SMALL_STATE(1689)] = 73102, - [SMALL_STATE(1690)] = 73146, - [SMALL_STATE(1691)] = 73190, - [SMALL_STATE(1692)] = 73236, - [SMALL_STATE(1693)] = 73286, - [SMALL_STATE(1694)] = 73330, - [SMALL_STATE(1695)] = 73374, - [SMALL_STATE(1696)] = 73428, - [SMALL_STATE(1697)] = 73472, - [SMALL_STATE(1698)] = 73516, - [SMALL_STATE(1699)] = 73562, - [SMALL_STATE(1700)] = 73608, - [SMALL_STATE(1701)] = 73654, - [SMALL_STATE(1702)] = 73698, - [SMALL_STATE(1703)] = 73752, - [SMALL_STATE(1704)] = 73796, - [SMALL_STATE(1705)] = 73840, - [SMALL_STATE(1706)] = 73886, - [SMALL_STATE(1707)] = 73930, - [SMALL_STATE(1708)] = 73980, - [SMALL_STATE(1709)] = 74026, - [SMALL_STATE(1710)] = 74070, - [SMALL_STATE(1711)] = 74124, - [SMALL_STATE(1712)] = 74174, - [SMALL_STATE(1713)] = 74228, - [SMALL_STATE(1714)] = 74272, - [SMALL_STATE(1715)] = 74326, - [SMALL_STATE(1716)] = 74372, - [SMALL_STATE(1717)] = 74426, - [SMALL_STATE(1718)] = 74469, - [SMALL_STATE(1719)] = 74512, - [SMALL_STATE(1720)] = 74555, - [SMALL_STATE(1721)] = 74598, - [SMALL_STATE(1722)] = 74643, - [SMALL_STATE(1723)] = 74686, - [SMALL_STATE(1724)] = 74729, - [SMALL_STATE(1725)] = 74772, - [SMALL_STATE(1726)] = 74817, - [SMALL_STATE(1727)] = 74860, - [SMALL_STATE(1728)] = 74905, - [SMALL_STATE(1729)] = 74948, - [SMALL_STATE(1730)] = 74991, - [SMALL_STATE(1731)] = 75034, - [SMALL_STATE(1732)] = 75077, - [SMALL_STATE(1733)] = 75120, - [SMALL_STATE(1734)] = 75163, - [SMALL_STATE(1735)] = 75206, - [SMALL_STATE(1736)] = 75249, - [SMALL_STATE(1737)] = 75292, - [SMALL_STATE(1738)] = 75335, - [SMALL_STATE(1739)] = 75378, - [SMALL_STATE(1740)] = 75421, - [SMALL_STATE(1741)] = 75466, - [SMALL_STATE(1742)] = 75509, - [SMALL_STATE(1743)] = 75552, - [SMALL_STATE(1744)] = 75595, - [SMALL_STATE(1745)] = 75638, - [SMALL_STATE(1746)] = 75681, - [SMALL_STATE(1747)] = 75724, - [SMALL_STATE(1748)] = 75767, - [SMALL_STATE(1749)] = 75810, - [SMALL_STATE(1750)] = 75852, - [SMALL_STATE(1751)] = 75894, - [SMALL_STATE(1752)] = 75936, - [SMALL_STATE(1753)] = 75978, - [SMALL_STATE(1754)] = 76022, - [SMALL_STATE(1755)] = 76064, - [SMALL_STATE(1756)] = 76106, - [SMALL_STATE(1757)] = 76148, - [SMALL_STATE(1758)] = 76190, - [SMALL_STATE(1759)] = 76232, - [SMALL_STATE(1760)] = 76274, - [SMALL_STATE(1761)] = 76316, - [SMALL_STATE(1762)] = 76358, - [SMALL_STATE(1763)] = 76400, - [SMALL_STATE(1764)] = 76442, - [SMALL_STATE(1765)] = 76484, - [SMALL_STATE(1766)] = 76528, - [SMALL_STATE(1767)] = 76570, - [SMALL_STATE(1768)] = 76612, - [SMALL_STATE(1769)] = 76653, - [SMALL_STATE(1770)] = 76694, - [SMALL_STATE(1771)] = 76716, - [SMALL_STATE(1772)] = 76738, - [SMALL_STATE(1773)] = 76760, - [SMALL_STATE(1774)] = 76782, - [SMALL_STATE(1775)] = 76804, - [SMALL_STATE(1776)] = 76826, - [SMALL_STATE(1777)] = 76848, - [SMALL_STATE(1778)] = 76870, - [SMALL_STATE(1779)] = 76892, - [SMALL_STATE(1780)] = 76914, - [SMALL_STATE(1781)] = 76936, - [SMALL_STATE(1782)] = 76958, - [SMALL_STATE(1783)] = 76980, - [SMALL_STATE(1784)] = 77002, - [SMALL_STATE(1785)] = 77024, - [SMALL_STATE(1786)] = 77046, - [SMALL_STATE(1787)] = 77068, - [SMALL_STATE(1788)] = 77090, - [SMALL_STATE(1789)] = 77112, - [SMALL_STATE(1790)] = 77134, - [SMALL_STATE(1791)] = 77156, - [SMALL_STATE(1792)] = 77178, - [SMALL_STATE(1793)] = 77200, - [SMALL_STATE(1794)] = 77222, - [SMALL_STATE(1795)] = 77244, - [SMALL_STATE(1796)] = 77266, - [SMALL_STATE(1797)] = 77288, - [SMALL_STATE(1798)] = 77310, - [SMALL_STATE(1799)] = 77332, - [SMALL_STATE(1800)] = 77354, - [SMALL_STATE(1801)] = 77376, - [SMALL_STATE(1802)] = 77398, - [SMALL_STATE(1803)] = 77420, - [SMALL_STATE(1804)] = 77442, - [SMALL_STATE(1805)] = 77464, - [SMALL_STATE(1806)] = 77486, - [SMALL_STATE(1807)] = 77508, - [SMALL_STATE(1808)] = 77534, - [SMALL_STATE(1809)] = 77556, - [SMALL_STATE(1810)] = 77589, - [SMALL_STATE(1811)] = 77622, - [SMALL_STATE(1812)] = 77655, - [SMALL_STATE(1813)] = 77688, - [SMALL_STATE(1814)] = 77721, - [SMALL_STATE(1815)] = 77754, - [SMALL_STATE(1816)] = 77787, - [SMALL_STATE(1817)] = 77820, - [SMALL_STATE(1818)] = 77853, - [SMALL_STATE(1819)] = 77886, - [SMALL_STATE(1820)] = 77919, - [SMALL_STATE(1821)] = 77952, - [SMALL_STATE(1822)] = 77968, - [SMALL_STATE(1823)] = 77998, - [SMALL_STATE(1824)] = 78020, - [SMALL_STATE(1825)] = 78036, - [SMALL_STATE(1826)] = 78064, - [SMALL_STATE(1827)] = 78080, - [SMALL_STATE(1828)] = 78096, - [SMALL_STATE(1829)] = 78126, - [SMALL_STATE(1830)] = 78154, - [SMALL_STATE(1831)] = 78176, - [SMALL_STATE(1832)] = 78204, - [SMALL_STATE(1833)] = 78232, - [SMALL_STATE(1834)] = 78254, - [SMALL_STATE(1835)] = 78282, - [SMALL_STATE(1836)] = 78298, - [SMALL_STATE(1837)] = 78326, - [SMALL_STATE(1838)] = 78356, - [SMALL_STATE(1839)] = 78372, - [SMALL_STATE(1840)] = 78388, - [SMALL_STATE(1841)] = 78414, - [SMALL_STATE(1842)] = 78430, - [SMALL_STATE(1843)] = 78446, - [SMALL_STATE(1844)] = 78462, - [SMALL_STATE(1845)] = 78478, - [SMALL_STATE(1846)] = 78508, - [SMALL_STATE(1847)] = 78524, - [SMALL_STATE(1848)] = 78540, - [SMALL_STATE(1849)] = 78567, - [SMALL_STATE(1850)] = 78586, - [SMALL_STATE(1851)] = 78605, - [SMALL_STATE(1852)] = 78624, - [SMALL_STATE(1853)] = 78651, - [SMALL_STATE(1854)] = 78670, - [SMALL_STATE(1855)] = 78689, - [SMALL_STATE(1856)] = 78708, - [SMALL_STATE(1857)] = 78727, - [SMALL_STATE(1858)] = 78746, - [SMALL_STATE(1859)] = 78765, - [SMALL_STATE(1860)] = 78784, - [SMALL_STATE(1861)] = 78803, - [SMALL_STATE(1862)] = 78822, - [SMALL_STATE(1863)] = 78841, - [SMALL_STATE(1864)] = 78860, - [SMALL_STATE(1865)] = 78879, - [SMALL_STATE(1866)] = 78898, - [SMALL_STATE(1867)] = 78917, - [SMALL_STATE(1868)] = 78936, - [SMALL_STATE(1869)] = 78955, - [SMALL_STATE(1870)] = 78974, - [SMALL_STATE(1871)] = 78993, - [SMALL_STATE(1872)] = 79012, - [SMALL_STATE(1873)] = 79031, - [SMALL_STATE(1874)] = 79050, - [SMALL_STATE(1875)] = 79069, - [SMALL_STATE(1876)] = 79088, - [SMALL_STATE(1877)] = 79107, - [SMALL_STATE(1878)] = 79126, - [SMALL_STATE(1879)] = 79145, - [SMALL_STATE(1880)] = 79164, - [SMALL_STATE(1881)] = 79183, - [SMALL_STATE(1882)] = 79202, - [SMALL_STATE(1883)] = 79221, - [SMALL_STATE(1884)] = 79240, - [SMALL_STATE(1885)] = 79259, - [SMALL_STATE(1886)] = 79278, - [SMALL_STATE(1887)] = 79305, - [SMALL_STATE(1888)] = 79324, - [SMALL_STATE(1889)] = 79343, - [SMALL_STATE(1890)] = 79362, - [SMALL_STATE(1891)] = 79381, - [SMALL_STATE(1892)] = 79400, - [SMALL_STATE(1893)] = 79419, - [SMALL_STATE(1894)] = 79446, - [SMALL_STATE(1895)] = 79465, - [SMALL_STATE(1896)] = 79484, - [SMALL_STATE(1897)] = 79503, - [SMALL_STATE(1898)] = 79522, - [SMALL_STATE(1899)] = 79541, - [SMALL_STATE(1900)] = 79560, - [SMALL_STATE(1901)] = 79579, - [SMALL_STATE(1902)] = 79598, - [SMALL_STATE(1903)] = 79617, - [SMALL_STATE(1904)] = 79636, - [SMALL_STATE(1905)] = 79655, - [SMALL_STATE(1906)] = 79674, - [SMALL_STATE(1907)] = 79693, - [SMALL_STATE(1908)] = 79712, - [SMALL_STATE(1909)] = 79731, - [SMALL_STATE(1910)] = 79754, - [SMALL_STATE(1911)] = 79773, - [SMALL_STATE(1912)] = 79792, - [SMALL_STATE(1913)] = 79811, - [SMALL_STATE(1914)] = 79830, - [SMALL_STATE(1915)] = 79849, - [SMALL_STATE(1916)] = 79868, - [SMALL_STATE(1917)] = 79887, - [SMALL_STATE(1918)] = 79906, - [SMALL_STATE(1919)] = 79925, - [SMALL_STATE(1920)] = 79944, - [SMALL_STATE(1921)] = 79963, - [SMALL_STATE(1922)] = 79982, - [SMALL_STATE(1923)] = 80001, - [SMALL_STATE(1924)] = 80020, - [SMALL_STATE(1925)] = 80039, - [SMALL_STATE(1926)] = 80058, - [SMALL_STATE(1927)] = 80077, - [SMALL_STATE(1928)] = 80096, - [SMALL_STATE(1929)] = 80115, - [SMALL_STATE(1930)] = 80134, - [SMALL_STATE(1931)] = 80153, - [SMALL_STATE(1932)] = 80172, - [SMALL_STATE(1933)] = 80199, - [SMALL_STATE(1934)] = 80218, - [SMALL_STATE(1935)] = 80245, - [SMALL_STATE(1936)] = 80264, - [SMALL_STATE(1937)] = 80283, - [SMALL_STATE(1938)] = 80306, - [SMALL_STATE(1939)] = 80325, - [SMALL_STATE(1940)] = 80344, - [SMALL_STATE(1941)] = 80363, - [SMALL_STATE(1942)] = 80382, - [SMALL_STATE(1943)] = 80401, - [SMALL_STATE(1944)] = 80420, - [SMALL_STATE(1945)] = 80438, - [SMALL_STATE(1946)] = 80456, - [SMALL_STATE(1947)] = 80474, - [SMALL_STATE(1948)] = 80495, - [SMALL_STATE(1949)] = 80520, - [SMALL_STATE(1950)] = 80545, - [SMALL_STATE(1951)] = 80566, - [SMALL_STATE(1952)] = 80587, - [SMALL_STATE(1953)] = 80608, - [SMALL_STATE(1954)] = 80629, - [SMALL_STATE(1955)] = 80650, - [SMALL_STATE(1956)] = 80675, - [SMALL_STATE(1957)] = 80696, - [SMALL_STATE(1958)] = 80721, - [SMALL_STATE(1959)] = 80742, - [SMALL_STATE(1960)] = 80763, - [SMALL_STATE(1961)] = 80784, - [SMALL_STATE(1962)] = 80805, - [SMALL_STATE(1963)] = 80830, - [SMALL_STATE(1964)] = 80851, - [SMALL_STATE(1965)] = 80876, - [SMALL_STATE(1966)] = 80897, - [SMALL_STATE(1967)] = 80918, - [SMALL_STATE(1968)] = 80939, - [SMALL_STATE(1969)] = 80960, - [SMALL_STATE(1970)] = 80981, - [SMALL_STATE(1971)] = 81002, - [SMALL_STATE(1972)] = 81023, - [SMALL_STATE(1973)] = 81044, - [SMALL_STATE(1974)] = 81065, - [SMALL_STATE(1975)] = 81090, - [SMALL_STATE(1976)] = 81111, - [SMALL_STATE(1977)] = 81132, - [SMALL_STATE(1978)] = 81149, - [SMALL_STATE(1979)] = 81174, - [SMALL_STATE(1980)] = 81195, - [SMALL_STATE(1981)] = 81220, - [SMALL_STATE(1982)] = 81241, - [SMALL_STATE(1983)] = 81262, - [SMALL_STATE(1984)] = 81283, - [SMALL_STATE(1985)] = 81304, - [SMALL_STATE(1986)] = 81325, - [SMALL_STATE(1987)] = 81346, - [SMALL_STATE(1988)] = 81367, - [SMALL_STATE(1989)] = 81388, - [SMALL_STATE(1990)] = 81409, - [SMALL_STATE(1991)] = 81434, - [SMALL_STATE(1992)] = 81455, - [SMALL_STATE(1993)] = 81476, - [SMALL_STATE(1994)] = 81497, - [SMALL_STATE(1995)] = 81518, - [SMALL_STATE(1996)] = 81539, - [SMALL_STATE(1997)] = 81560, - [SMALL_STATE(1998)] = 81581, - [SMALL_STATE(1999)] = 81602, - [SMALL_STATE(2000)] = 81623, - [SMALL_STATE(2001)] = 81644, - [SMALL_STATE(2002)] = 81665, - [SMALL_STATE(2003)] = 81682, - [SMALL_STATE(2004)] = 81699, - [SMALL_STATE(2005)] = 81720, - [SMALL_STATE(2006)] = 81741, - [SMALL_STATE(2007)] = 81762, - [SMALL_STATE(2008)] = 81783, - [SMALL_STATE(2009)] = 81804, - [SMALL_STATE(2010)] = 81825, - [SMALL_STATE(2011)] = 81846, - [SMALL_STATE(2012)] = 81867, - [SMALL_STATE(2013)] = 81888, - [SMALL_STATE(2014)] = 81909, - [SMALL_STATE(2015)] = 81930, - [SMALL_STATE(2016)] = 81951, - [SMALL_STATE(2017)] = 81972, - [SMALL_STATE(2018)] = 81993, - [SMALL_STATE(2019)] = 82014, - [SMALL_STATE(2020)] = 82035, - [SMALL_STATE(2021)] = 82056, - [SMALL_STATE(2022)] = 82077, - [SMALL_STATE(2023)] = 82098, - [SMALL_STATE(2024)] = 82119, - [SMALL_STATE(2025)] = 82140, - [SMALL_STATE(2026)] = 82161, - [SMALL_STATE(2027)] = 82182, - [SMALL_STATE(2028)] = 82203, - [SMALL_STATE(2029)] = 82224, - [SMALL_STATE(2030)] = 82246, - [SMALL_STATE(2031)] = 82260, - [SMALL_STATE(2032)] = 82282, - [SMALL_STATE(2033)] = 82304, - [SMALL_STATE(2034)] = 82326, - [SMALL_STATE(2035)] = 82348, - [SMALL_STATE(2036)] = 82370, - [SMALL_STATE(2037)] = 82384, - [SMALL_STATE(2038)] = 82406, - [SMALL_STATE(2039)] = 82428, - [SMALL_STATE(2040)] = 82444, - [SMALL_STATE(2041)] = 82466, - [SMALL_STATE(2042)] = 82488, - [SMALL_STATE(2043)] = 82499, - [SMALL_STATE(2044)] = 82510, - [SMALL_STATE(2045)] = 82521, - [SMALL_STATE(2046)] = 82532, - [SMALL_STATE(2047)] = 82545, - [SMALL_STATE(2048)] = 82556, - [SMALL_STATE(2049)] = 82569, - [SMALL_STATE(2050)] = 82584, - [SMALL_STATE(2051)] = 82595, - [SMALL_STATE(2052)] = 82610, - [SMALL_STATE(2053)] = 82621, - [SMALL_STATE(2054)] = 82632, - [SMALL_STATE(2055)] = 82643, - [SMALL_STATE(2056)] = 82654, - [SMALL_STATE(2057)] = 82665, - [SMALL_STATE(2058)] = 82678, - [SMALL_STATE(2059)] = 82689, - [SMALL_STATE(2060)] = 82700, - [SMALL_STATE(2061)] = 82711, - [SMALL_STATE(2062)] = 82722, - [SMALL_STATE(2063)] = 82733, - [SMALL_STATE(2064)] = 82746, - [SMALL_STATE(2065)] = 82758, - [SMALL_STATE(2066)] = 82770, - [SMALL_STATE(2067)] = 82786, - [SMALL_STATE(2068)] = 82802, - [SMALL_STATE(2069)] = 82814, - [SMALL_STATE(2070)] = 82826, - [SMALL_STATE(2071)] = 82838, - [SMALL_STATE(2072)] = 82854, - [SMALL_STATE(2073)] = 82864, - [SMALL_STATE(2074)] = 82874, - [SMALL_STATE(2075)] = 82890, - [SMALL_STATE(2076)] = 82898, - [SMALL_STATE(2077)] = 82914, - [SMALL_STATE(2078)] = 82924, - [SMALL_STATE(2079)] = 82940, - [SMALL_STATE(2080)] = 82952, - [SMALL_STATE(2081)] = 82964, - [SMALL_STATE(2082)] = 82974, - [SMALL_STATE(2083)] = 82990, - [SMALL_STATE(2084)] = 83006, - [SMALL_STATE(2085)] = 83018, - [SMALL_STATE(2086)] = 83028, - [SMALL_STATE(2087)] = 83044, - [SMALL_STATE(2088)] = 83060, - [SMALL_STATE(2089)] = 83072, - [SMALL_STATE(2090)] = 83088, - [SMALL_STATE(2091)] = 83104, - [SMALL_STATE(2092)] = 83116, - [SMALL_STATE(2093)] = 83132, - [SMALL_STATE(2094)] = 83148, - [SMALL_STATE(2095)] = 83164, - [SMALL_STATE(2096)] = 83180, - [SMALL_STATE(2097)] = 83196, - [SMALL_STATE(2098)] = 83212, - [SMALL_STATE(2099)] = 83228, - [SMALL_STATE(2100)] = 83244, - [SMALL_STATE(2101)] = 83260, - [SMALL_STATE(2102)] = 83276, - [SMALL_STATE(2103)] = 83289, - [SMALL_STATE(2104)] = 83302, - [SMALL_STATE(2105)] = 83311, - [SMALL_STATE(2106)] = 83324, - [SMALL_STATE(2107)] = 83337, - [SMALL_STATE(2108)] = 83350, - [SMALL_STATE(2109)] = 83359, - [SMALL_STATE(2110)] = 83372, - [SMALL_STATE(2111)] = 83385, - [SMALL_STATE(2112)] = 83394, - [SMALL_STATE(2113)] = 83407, - [SMALL_STATE(2114)] = 83420, - [SMALL_STATE(2115)] = 83433, - [SMALL_STATE(2116)] = 83442, - [SMALL_STATE(2117)] = 83455, - [SMALL_STATE(2118)] = 83468, - [SMALL_STATE(2119)] = 83481, - [SMALL_STATE(2120)] = 83494, - [SMALL_STATE(2121)] = 83504, - [SMALL_STATE(2122)] = 83514, - [SMALL_STATE(2123)] = 83524, - [SMALL_STATE(2124)] = 83534, - [SMALL_STATE(2125)] = 83542, - [SMALL_STATE(2126)] = 83552, - [SMALL_STATE(2127)] = 83562, - [SMALL_STATE(2128)] = 83572, - [SMALL_STATE(2129)] = 83582, - [SMALL_STATE(2130)] = 83592, - [SMALL_STATE(2131)] = 83602, - [SMALL_STATE(2132)] = 83612, - [SMALL_STATE(2133)] = 83622, - [SMALL_STATE(2134)] = 83632, - [SMALL_STATE(2135)] = 83642, - [SMALL_STATE(2136)] = 83652, - [SMALL_STATE(2137)] = 83662, - [SMALL_STATE(2138)] = 83672, - [SMALL_STATE(2139)] = 83682, - [SMALL_STATE(2140)] = 83692, - [SMALL_STATE(2141)] = 83702, - [SMALL_STATE(2142)] = 83712, - [SMALL_STATE(2143)] = 83722, - [SMALL_STATE(2144)] = 83732, - [SMALL_STATE(2145)] = 83742, - [SMALL_STATE(2146)] = 83749, - [SMALL_STATE(2147)] = 83756, - [SMALL_STATE(2148)] = 83763, - [SMALL_STATE(2149)] = 83770, - [SMALL_STATE(2150)] = 83777, - [SMALL_STATE(2151)] = 83784, - [SMALL_STATE(2152)] = 83791, - [SMALL_STATE(2153)] = 83798, - [SMALL_STATE(2154)] = 83805, - [SMALL_STATE(2155)] = 83812, - [SMALL_STATE(2156)] = 83819, - [SMALL_STATE(2157)] = 83826, - [SMALL_STATE(2158)] = 83833, - [SMALL_STATE(2159)] = 83840, - [SMALL_STATE(2160)] = 83847, - [SMALL_STATE(2161)] = 83854, - [SMALL_STATE(2162)] = 83861, - [SMALL_STATE(2163)] = 83868, - [SMALL_STATE(2164)] = 83875, - [SMALL_STATE(2165)] = 83882, - [SMALL_STATE(2166)] = 83889, - [SMALL_STATE(2167)] = 83896, - [SMALL_STATE(2168)] = 83903, - [SMALL_STATE(2169)] = 83910, - [SMALL_STATE(2170)] = 83917, - [SMALL_STATE(2171)] = 83924, - [SMALL_STATE(2172)] = 83931, - [SMALL_STATE(2173)] = 83938, - [SMALL_STATE(2174)] = 83945, - [SMALL_STATE(2175)] = 83952, - [SMALL_STATE(2176)] = 83959, - [SMALL_STATE(2177)] = 83966, - [SMALL_STATE(2178)] = 83973, - [SMALL_STATE(2179)] = 83980, - [SMALL_STATE(2180)] = 83987, - [SMALL_STATE(2181)] = 83994, - [SMALL_STATE(2182)] = 84001, - [SMALL_STATE(2183)] = 84008, - [SMALL_STATE(2184)] = 84015, - [SMALL_STATE(2185)] = 84022, - [SMALL_STATE(2186)] = 84029, - [SMALL_STATE(2187)] = 84036, - [SMALL_STATE(2188)] = 84043, - [SMALL_STATE(2189)] = 84050, - [SMALL_STATE(2190)] = 84057, - [SMALL_STATE(2191)] = 84064, - [SMALL_STATE(2192)] = 84071, - [SMALL_STATE(2193)] = 84078, - [SMALL_STATE(2194)] = 84085, - [SMALL_STATE(2195)] = 84092, - [SMALL_STATE(2196)] = 84099, - [SMALL_STATE(2197)] = 84106, - [SMALL_STATE(2198)] = 84113, - [SMALL_STATE(2199)] = 84120, - [SMALL_STATE(2200)] = 84127, - [SMALL_STATE(2201)] = 84134, - [SMALL_STATE(2202)] = 84141, - [SMALL_STATE(2203)] = 84148, - [SMALL_STATE(2204)] = 84155, - [SMALL_STATE(2205)] = 84162, - [SMALL_STATE(2206)] = 84169, - [SMALL_STATE(2207)] = 84176, - [SMALL_STATE(2208)] = 84183, - [SMALL_STATE(2209)] = 84190, - [SMALL_STATE(2210)] = 84197, - [SMALL_STATE(2211)] = 84204, - [SMALL_STATE(2212)] = 84211, - [SMALL_STATE(2213)] = 84218, - [SMALL_STATE(2214)] = 84225, - [SMALL_STATE(2215)] = 84232, - [SMALL_STATE(2216)] = 84239, - [SMALL_STATE(2217)] = 84246, - [SMALL_STATE(2218)] = 84253, - [SMALL_STATE(2219)] = 84260, - [SMALL_STATE(2220)] = 84267, - [SMALL_STATE(2221)] = 84274, - [SMALL_STATE(2222)] = 84281, - [SMALL_STATE(2223)] = 84288, - [SMALL_STATE(2224)] = 84295, - [SMALL_STATE(2225)] = 84302, - [SMALL_STATE(2226)] = 84309, - [SMALL_STATE(2227)] = 84316, - [SMALL_STATE(2228)] = 84323, - [SMALL_STATE(2229)] = 84330, - [SMALL_STATE(2230)] = 84337, - [SMALL_STATE(2231)] = 84344, - [SMALL_STATE(2232)] = 84351, - [SMALL_STATE(2233)] = 84358, - [SMALL_STATE(2234)] = 84365, - [SMALL_STATE(2235)] = 84372, - [SMALL_STATE(2236)] = 84379, - [SMALL_STATE(2237)] = 84386, - [SMALL_STATE(2238)] = 84393, - [SMALL_STATE(2239)] = 84400, - [SMALL_STATE(2240)] = 84407, - [SMALL_STATE(2241)] = 84414, - [SMALL_STATE(2242)] = 84421, - [SMALL_STATE(2243)] = 84428, - [SMALL_STATE(2244)] = 84435, - [SMALL_STATE(2245)] = 84442, - [SMALL_STATE(2246)] = 84449, - [SMALL_STATE(2247)] = 84456, - [SMALL_STATE(2248)] = 84463, - [SMALL_STATE(2249)] = 84470, - [SMALL_STATE(2250)] = 84477, - [SMALL_STATE(2251)] = 84484, - [SMALL_STATE(2252)] = 84491, - [SMALL_STATE(2253)] = 84498, - [SMALL_STATE(2254)] = 84505, - [SMALL_STATE(2255)] = 84512, - [SMALL_STATE(2256)] = 84519, - [SMALL_STATE(2257)] = 84526, - [SMALL_STATE(2258)] = 84533, - [SMALL_STATE(2259)] = 84540, - [SMALL_STATE(2260)] = 84547, - [SMALL_STATE(2261)] = 84554, - [SMALL_STATE(2262)] = 84561, - [SMALL_STATE(2263)] = 84568, - [SMALL_STATE(2264)] = 84575, - [SMALL_STATE(2265)] = 84582, - [SMALL_STATE(2266)] = 84589, - [SMALL_STATE(2267)] = 84596, - [SMALL_STATE(2268)] = 84603, - [SMALL_STATE(2269)] = 84610, - [SMALL_STATE(2270)] = 84615, - [SMALL_STATE(2271)] = 84622, - [SMALL_STATE(2272)] = 84629, - [SMALL_STATE(2273)] = 84636, - [SMALL_STATE(2274)] = 84643, - [SMALL_STATE(2275)] = 84650, - [SMALL_STATE(2276)] = 84657, - [SMALL_STATE(2277)] = 84664, - [SMALL_STATE(2278)] = 84671, - [SMALL_STATE(2279)] = 84678, - [SMALL_STATE(2280)] = 84685, - [SMALL_STATE(2281)] = 84692, - [SMALL_STATE(2282)] = 84699, - [SMALL_STATE(2283)] = 84706, - [SMALL_STATE(2284)] = 84713, - [SMALL_STATE(2285)] = 84720, - [SMALL_STATE(2286)] = 84727, - [SMALL_STATE(2287)] = 84734, - [SMALL_STATE(2288)] = 84741, - [SMALL_STATE(2289)] = 84748, - [SMALL_STATE(2290)] = 84755, - [SMALL_STATE(2291)] = 84762, - [SMALL_STATE(2292)] = 84769, - [SMALL_STATE(2293)] = 84776, - [SMALL_STATE(2294)] = 84783, - [SMALL_STATE(2295)] = 84790, - [SMALL_STATE(2296)] = 84797, - [SMALL_STATE(2297)] = 84804, - [SMALL_STATE(2298)] = 84811, - [SMALL_STATE(2299)] = 84818, - [SMALL_STATE(2300)] = 84825, - [SMALL_STATE(2301)] = 84832, - [SMALL_STATE(2302)] = 84839, - [SMALL_STATE(2303)] = 84846, - [SMALL_STATE(2304)] = 84853, - [SMALL_STATE(2305)] = 84860, - [SMALL_STATE(2306)] = 84867, - [SMALL_STATE(2307)] = 84874, - [SMALL_STATE(2308)] = 84881, - [SMALL_STATE(2309)] = 84888, - [SMALL_STATE(2310)] = 84895, - [SMALL_STATE(2311)] = 84902, - [SMALL_STATE(2312)] = 84909, - [SMALL_STATE(2313)] = 84916, - [SMALL_STATE(2314)] = 84923, - [SMALL_STATE(2315)] = 84930, - [SMALL_STATE(2316)] = 84937, - [SMALL_STATE(2317)] = 84944, - [SMALL_STATE(2318)] = 84951, - [SMALL_STATE(2319)] = 84958, - [SMALL_STATE(2320)] = 84965, - [SMALL_STATE(2321)] = 84972, - [SMALL_STATE(2322)] = 84979, - [SMALL_STATE(2323)] = 84986, - [SMALL_STATE(2324)] = 84993, - [SMALL_STATE(2325)] = 85000, - [SMALL_STATE(2326)] = 85007, - [SMALL_STATE(2327)] = 85014, - [SMALL_STATE(2328)] = 85021, - [SMALL_STATE(2329)] = 85028, - [SMALL_STATE(2330)] = 85035, - [SMALL_STATE(2331)] = 85042, - [SMALL_STATE(2332)] = 85046, - [SMALL_STATE(2333)] = 85050, - [SMALL_STATE(2334)] = 85054, - [SMALL_STATE(2335)] = 85058, - [SMALL_STATE(2336)] = 85062, - [SMALL_STATE(2337)] = 85066, - [SMALL_STATE(2338)] = 85070, - [SMALL_STATE(2339)] = 85074, - [SMALL_STATE(2340)] = 85078, - [SMALL_STATE(2341)] = 85082, - [SMALL_STATE(2342)] = 85086, - [SMALL_STATE(2343)] = 85090, - [SMALL_STATE(2344)] = 85094, - [SMALL_STATE(2345)] = 85098, - [SMALL_STATE(2346)] = 85102, - [SMALL_STATE(2347)] = 85106, - [SMALL_STATE(2348)] = 85110, - [SMALL_STATE(2349)] = 85114, - [SMALL_STATE(2350)] = 85118, - [SMALL_STATE(2351)] = 85122, - [SMALL_STATE(2352)] = 85126, - [SMALL_STATE(2353)] = 85130, - [SMALL_STATE(2354)] = 85134, - [SMALL_STATE(2355)] = 85138, - [SMALL_STATE(2356)] = 85142, - [SMALL_STATE(2357)] = 85146, - [SMALL_STATE(2358)] = 85150, - [SMALL_STATE(2359)] = 85154, - [SMALL_STATE(2360)] = 85158, - [SMALL_STATE(2361)] = 85162, - [SMALL_STATE(2362)] = 85166, - [SMALL_STATE(2363)] = 85170, - [SMALL_STATE(2364)] = 85174, - [SMALL_STATE(2365)] = 85178, - [SMALL_STATE(2366)] = 85182, - [SMALL_STATE(2367)] = 85186, - [SMALL_STATE(2368)] = 85190, - [SMALL_STATE(2369)] = 85194, - [SMALL_STATE(2370)] = 85198, - [SMALL_STATE(2371)] = 85202, - [SMALL_STATE(2372)] = 85206, - [SMALL_STATE(2373)] = 85210, - [SMALL_STATE(2374)] = 85214, - [SMALL_STATE(2375)] = 85218, - [SMALL_STATE(2376)] = 85222, - [SMALL_STATE(2377)] = 85226, - [SMALL_STATE(2378)] = 85230, - [SMALL_STATE(2379)] = 85234, - [SMALL_STATE(2380)] = 85238, - [SMALL_STATE(2381)] = 85242, - [SMALL_STATE(2382)] = 85246, - [SMALL_STATE(2383)] = 85250, - [SMALL_STATE(2384)] = 85254, - [SMALL_STATE(2385)] = 85258, - [SMALL_STATE(2386)] = 85262, - [SMALL_STATE(2387)] = 85266, - [SMALL_STATE(2388)] = 85270, - [SMALL_STATE(2389)] = 85274, - [SMALL_STATE(2390)] = 85278, - [SMALL_STATE(2391)] = 85282, - [SMALL_STATE(2392)] = 85286, - [SMALL_STATE(2393)] = 85290, - [SMALL_STATE(2394)] = 85294, - [SMALL_STATE(2395)] = 85298, - [SMALL_STATE(2396)] = 85302, - [SMALL_STATE(2397)] = 85306, - [SMALL_STATE(2398)] = 85310, - [SMALL_STATE(2399)] = 85314, - [SMALL_STATE(2400)] = 85318, - [SMALL_STATE(2401)] = 85322, - [SMALL_STATE(2402)] = 85326, - [SMALL_STATE(2403)] = 85330, - [SMALL_STATE(2404)] = 85334, - [SMALL_STATE(2405)] = 85338, - [SMALL_STATE(2406)] = 85342, - [SMALL_STATE(2407)] = 85346, - [SMALL_STATE(2408)] = 85350, - [SMALL_STATE(2409)] = 85354, - [SMALL_STATE(2410)] = 85358, - [SMALL_STATE(2411)] = 85362, - [SMALL_STATE(2412)] = 85366, - [SMALL_STATE(2413)] = 85370, - [SMALL_STATE(2414)] = 85374, - [SMALL_STATE(2415)] = 85378, - [SMALL_STATE(2416)] = 85382, - [SMALL_STATE(2417)] = 85386, - [SMALL_STATE(2418)] = 85390, - [SMALL_STATE(2419)] = 85394, - [SMALL_STATE(2420)] = 85398, - [SMALL_STATE(2421)] = 85402, - [SMALL_STATE(2422)] = 85406, - [SMALL_STATE(2423)] = 85410, - [SMALL_STATE(2424)] = 85414, - [SMALL_STATE(2425)] = 85418, - [SMALL_STATE(2426)] = 85422, - [SMALL_STATE(2427)] = 85426, - [SMALL_STATE(2428)] = 85430, - [SMALL_STATE(2429)] = 85434, - [SMALL_STATE(2430)] = 85438, - [SMALL_STATE(2431)] = 85442, - [SMALL_STATE(2432)] = 85446, - [SMALL_STATE(2433)] = 85450, - [SMALL_STATE(2434)] = 85454, - [SMALL_STATE(2435)] = 85458, - [SMALL_STATE(2436)] = 85462, - [SMALL_STATE(2437)] = 85466, - [SMALL_STATE(2438)] = 85470, - [SMALL_STATE(2439)] = 85474, - [SMALL_STATE(2440)] = 85478, - [SMALL_STATE(2441)] = 85482, - [SMALL_STATE(2442)] = 85486, - [SMALL_STATE(2443)] = 85490, - [SMALL_STATE(2444)] = 85494, - [SMALL_STATE(2445)] = 85498, - [SMALL_STATE(2446)] = 85502, - [SMALL_STATE(2447)] = 85506, - [SMALL_STATE(2448)] = 85510, - [SMALL_STATE(2449)] = 85514, - [SMALL_STATE(2450)] = 85518, - [SMALL_STATE(2451)] = 85522, - [SMALL_STATE(2452)] = 85526, - [SMALL_STATE(2453)] = 85530, - [SMALL_STATE(2454)] = 85534, - [SMALL_STATE(2455)] = 85538, - [SMALL_STATE(2456)] = 85542, - [SMALL_STATE(2457)] = 85546, - [SMALL_STATE(2458)] = 85550, - [SMALL_STATE(2459)] = 85554, - [SMALL_STATE(2460)] = 85558, - [SMALL_STATE(2461)] = 85562, - [SMALL_STATE(2462)] = 85566, - [SMALL_STATE(2463)] = 85570, - [SMALL_STATE(2464)] = 85574, - [SMALL_STATE(2465)] = 85578, - [SMALL_STATE(2466)] = 85582, - [SMALL_STATE(2467)] = 85586, - [SMALL_STATE(2468)] = 85590, - [SMALL_STATE(2469)] = 85594, - [SMALL_STATE(2470)] = 85598, - [SMALL_STATE(2471)] = 85602, - [SMALL_STATE(2472)] = 85606, - [SMALL_STATE(2473)] = 85610, - [SMALL_STATE(2474)] = 85614, - [SMALL_STATE(2475)] = 85618, - [SMALL_STATE(2476)] = 85622, - [SMALL_STATE(2477)] = 85626, - [SMALL_STATE(2478)] = 85630, - [SMALL_STATE(2479)] = 85634, - [SMALL_STATE(2480)] = 85638, - [SMALL_STATE(2481)] = 85642, - [SMALL_STATE(2482)] = 85646, - [SMALL_STATE(2483)] = 85650, - [SMALL_STATE(2484)] = 85654, - [SMALL_STATE(2485)] = 85658, - [SMALL_STATE(2486)] = 85662, - [SMALL_STATE(2487)] = 85666, - [SMALL_STATE(2488)] = 85670, - [SMALL_STATE(2489)] = 85674, - [SMALL_STATE(2490)] = 85678, - [SMALL_STATE(2491)] = 85682, - [SMALL_STATE(2492)] = 85686, - [SMALL_STATE(2493)] = 85690, - [SMALL_STATE(2494)] = 85694, - [SMALL_STATE(2495)] = 85698, - [SMALL_STATE(2496)] = 85702, - [SMALL_STATE(2497)] = 85706, - [SMALL_STATE(2498)] = 85710, - [SMALL_STATE(2499)] = 85714, - [SMALL_STATE(2500)] = 85718, - [SMALL_STATE(2501)] = 85722, - [SMALL_STATE(2502)] = 85726, - [SMALL_STATE(2503)] = 85730, - [SMALL_STATE(2504)] = 85734, - [SMALL_STATE(2505)] = 85738, - [SMALL_STATE(2506)] = 85742, - [SMALL_STATE(2507)] = 85746, - [SMALL_STATE(2508)] = 85750, - [SMALL_STATE(2509)] = 85754, - [SMALL_STATE(2510)] = 85758, - [SMALL_STATE(2511)] = 85762, - [SMALL_STATE(2512)] = 85766, - [SMALL_STATE(2513)] = 85770, - [SMALL_STATE(2514)] = 85774, - [SMALL_STATE(2515)] = 85778, - [SMALL_STATE(2516)] = 85782, - [SMALL_STATE(2517)] = 85786, - [SMALL_STATE(2518)] = 85790, - [SMALL_STATE(2519)] = 85794, - [SMALL_STATE(2520)] = 85798, - [SMALL_STATE(2521)] = 85802, - [SMALL_STATE(2522)] = 85806, - [SMALL_STATE(2523)] = 85810, - [SMALL_STATE(2524)] = 85814, - [SMALL_STATE(2525)] = 85818, - [SMALL_STATE(2526)] = 85822, - [SMALL_STATE(2527)] = 85826, - [SMALL_STATE(2528)] = 85830, - [SMALL_STATE(2529)] = 85834, - [SMALL_STATE(2530)] = 85838, - [SMALL_STATE(2531)] = 85842, - [SMALL_STATE(2532)] = 85846, - [SMALL_STATE(2533)] = 85850, - [SMALL_STATE(2534)] = 85854, - [SMALL_STATE(2535)] = 85858, - [SMALL_STATE(2536)] = 85862, - [SMALL_STATE(2537)] = 85866, - [SMALL_STATE(2538)] = 85870, - [SMALL_STATE(2539)] = 85874, - [SMALL_STATE(2540)] = 85878, - [SMALL_STATE(2541)] = 85882, - [SMALL_STATE(2542)] = 85886, - [SMALL_STATE(2543)] = 85890, - [SMALL_STATE(2544)] = 85894, - [SMALL_STATE(2545)] = 85898, - [SMALL_STATE(2546)] = 85902, - [SMALL_STATE(2547)] = 85906, - [SMALL_STATE(2548)] = 85910, - [SMALL_STATE(2549)] = 85914, - [SMALL_STATE(2550)] = 85918, - [SMALL_STATE(2551)] = 85922, - [SMALL_STATE(2552)] = 85926, - [SMALL_STATE(2553)] = 85930, - [SMALL_STATE(2554)] = 85934, - [SMALL_STATE(2555)] = 85938, - [SMALL_STATE(2556)] = 85942, - [SMALL_STATE(2557)] = 85946, - [SMALL_STATE(2558)] = 85950, - [SMALL_STATE(2559)] = 85954, - [SMALL_STATE(2560)] = 85958, - [SMALL_STATE(2561)] = 85962, - [SMALL_STATE(2562)] = 85966, - [SMALL_STATE(2563)] = 85970, - [SMALL_STATE(2564)] = 85974, - [SMALL_STATE(2565)] = 85978, - [SMALL_STATE(2566)] = 85982, - [SMALL_STATE(2567)] = 85986, - [SMALL_STATE(2568)] = 85990, - [SMALL_STATE(2569)] = 85994, - [SMALL_STATE(2570)] = 85998, - [SMALL_STATE(2571)] = 86002, - [SMALL_STATE(2572)] = 86006, - [SMALL_STATE(2573)] = 86010, - [SMALL_STATE(2574)] = 86014, - [SMALL_STATE(2575)] = 86018, - [SMALL_STATE(2576)] = 86022, - [SMALL_STATE(2577)] = 86026, + [SMALL_STATE(986)] = 32629, + [SMALL_STATE(987)] = 32682, + [SMALL_STATE(988)] = 32735, + [SMALL_STATE(989)] = 32788, + [SMALL_STATE(990)] = 32861, + [SMALL_STATE(991)] = 32942, + [SMALL_STATE(992)] = 33023, + [SMALL_STATE(993)] = 33086, + [SMALL_STATE(994)] = 33159, + [SMALL_STATE(995)] = 33232, + [SMALL_STATE(996)] = 33305, + [SMALL_STATE(997)] = 33376, + [SMALL_STATE(998)] = 33447, + [SMALL_STATE(999)] = 33520, + [SMALL_STATE(1000)] = 33593, + [SMALL_STATE(1001)] = 33666, + [SMALL_STATE(1002)] = 33739, + [SMALL_STATE(1003)] = 33794, + [SMALL_STATE(1004)] = 33847, + [SMALL_STATE(1005)] = 33928, + [SMALL_STATE(1006)] = 33981, + [SMALL_STATE(1007)] = 34036, + [SMALL_STATE(1008)] = 34089, + [SMALL_STATE(1009)] = 34162, + [SMALL_STATE(1010)] = 34243, + [SMALL_STATE(1011)] = 34316, + [SMALL_STATE(1012)] = 34389, + [SMALL_STATE(1013)] = 34462, + [SMALL_STATE(1014)] = 34517, + [SMALL_STATE(1015)] = 34590, + [SMALL_STATE(1016)] = 34663, + [SMALL_STATE(1017)] = 34718, + [SMALL_STATE(1018)] = 34791, + [SMALL_STATE(1019)] = 34864, + [SMALL_STATE(1020)] = 34917, + [SMALL_STATE(1021)] = 34990, + [SMALL_STATE(1022)] = 35043, + [SMALL_STATE(1023)] = 35096, + [SMALL_STATE(1024)] = 35149, + [SMALL_STATE(1025)] = 35202, + [SMALL_STATE(1026)] = 35255, + [SMALL_STATE(1027)] = 35336, + [SMALL_STATE(1028)] = 35409, + [SMALL_STATE(1029)] = 35490, + [SMALL_STATE(1030)] = 35571, + [SMALL_STATE(1031)] = 35644, + [SMALL_STATE(1032)] = 35725, + [SMALL_STATE(1033)] = 35798, + [SMALL_STATE(1034)] = 35874, + [SMALL_STATE(1035)] = 35950, + [SMALL_STATE(1036)] = 36008, + [SMALL_STATE(1037)] = 36081, + [SMALL_STATE(1038)] = 36138, + [SMALL_STATE(1039)] = 36202, + [SMALL_STATE(1040)] = 36266, + [SMALL_STATE(1041)] = 36330, + [SMALL_STATE(1042)] = 36394, + [SMALL_STATE(1043)] = 36458, + [SMALL_STATE(1044)] = 36522, + [SMALL_STATE(1045)] = 36586, + [SMALL_STATE(1046)] = 36650, + [SMALL_STATE(1047)] = 36714, + [SMALL_STATE(1048)] = 36778, + [SMALL_STATE(1049)] = 36842, + [SMALL_STATE(1050)] = 36906, + [SMALL_STATE(1051)] = 36958, + [SMALL_STATE(1052)] = 37040, + [SMALL_STATE(1053)] = 37122, + [SMALL_STATE(1054)] = 37176, + [SMALL_STATE(1055)] = 37240, + [SMALL_STATE(1056)] = 37304, + [SMALL_STATE(1057)] = 37368, + [SMALL_STATE(1058)] = 37432, + [SMALL_STATE(1059)] = 37496, + [SMALL_STATE(1060)] = 37560, + [SMALL_STATE(1061)] = 37624, + [SMALL_STATE(1062)] = 37688, + [SMALL_STATE(1063)] = 37752, + [SMALL_STATE(1064)] = 37816, + [SMALL_STATE(1065)] = 37880, + [SMALL_STATE(1066)] = 37944, + [SMALL_STATE(1067)] = 37998, + [SMALL_STATE(1068)] = 38062, + [SMALL_STATE(1069)] = 38126, + [SMALL_STATE(1070)] = 38190, + [SMALL_STATE(1071)] = 38254, + [SMALL_STATE(1072)] = 38318, + [SMALL_STATE(1073)] = 38382, + [SMALL_STATE(1074)] = 38454, + [SMALL_STATE(1075)] = 38518, + [SMALL_STATE(1076)] = 38570, + [SMALL_STATE(1077)] = 38634, + [SMALL_STATE(1078)] = 38698, + [SMALL_STATE(1079)] = 38752, + [SMALL_STATE(1080)] = 38816, + [SMALL_STATE(1081)] = 38880, + [SMALL_STATE(1082)] = 38944, + [SMALL_STATE(1083)] = 39008, + [SMALL_STATE(1084)] = 39064, + [SMALL_STATE(1085)] = 39136, + [SMALL_STATE(1086)] = 39200, + [SMALL_STATE(1087)] = 39264, + [SMALL_STATE(1088)] = 39328, + [SMALL_STATE(1089)] = 39392, + [SMALL_STATE(1090)] = 39456, + [SMALL_STATE(1091)] = 39528, + [SMALL_STATE(1092)] = 39600, + [SMALL_STATE(1093)] = 39664, + [SMALL_STATE(1094)] = 39728, + [SMALL_STATE(1095)] = 39792, + [SMALL_STATE(1096)] = 39846, + [SMALL_STATE(1097)] = 39910, + [SMALL_STATE(1098)] = 39992, + [SMALL_STATE(1099)] = 40056, + [SMALL_STATE(1100)] = 40138, + [SMALL_STATE(1101)] = 40202, + [SMALL_STATE(1102)] = 40266, + [SMALL_STATE(1103)] = 40330, + [SMALL_STATE(1104)] = 40394, + [SMALL_STATE(1105)] = 40458, + [SMALL_STATE(1106)] = 40522, + [SMALL_STATE(1107)] = 40586, + [SMALL_STATE(1108)] = 40650, + [SMALL_STATE(1109)] = 40714, + [SMALL_STATE(1110)] = 40778, + [SMALL_STATE(1111)] = 40842, + [SMALL_STATE(1112)] = 40906, + [SMALL_STATE(1113)] = 40970, + [SMALL_STATE(1114)] = 41029, + [SMALL_STATE(1115)] = 41090, + [SMALL_STATE(1116)] = 41143, + [SMALL_STATE(1117)] = 41196, + [SMALL_STATE(1118)] = 41249, + [SMALL_STATE(1119)] = 41302, + [SMALL_STATE(1120)] = 41355, + [SMALL_STATE(1121)] = 41408, + [SMALL_STATE(1122)] = 41461, + [SMALL_STATE(1123)] = 41514, + [SMALL_STATE(1124)] = 41567, + [SMALL_STATE(1125)] = 41622, + [SMALL_STATE(1126)] = 41675, + [SMALL_STATE(1127)] = 41728, + [SMALL_STATE(1128)] = 41781, + [SMALL_STATE(1129)] = 41834, + [SMALL_STATE(1130)] = 41893, + [SMALL_STATE(1131)] = 41946, + [SMALL_STATE(1132)] = 41999, + [SMALL_STATE(1133)] = 42052, + [SMALL_STATE(1134)] = 42105, + [SMALL_STATE(1135)] = 42158, + [SMALL_STATE(1136)] = 42211, + [SMALL_STATE(1137)] = 42264, + [SMALL_STATE(1138)] = 42317, + [SMALL_STATE(1139)] = 42370, + [SMALL_STATE(1140)] = 42423, + [SMALL_STATE(1141)] = 42476, + [SMALL_STATE(1142)] = 42529, + [SMALL_STATE(1143)] = 42582, + [SMALL_STATE(1144)] = 42637, + [SMALL_STATE(1145)] = 42690, + [SMALL_STATE(1146)] = 42743, + [SMALL_STATE(1147)] = 42796, + [SMALL_STATE(1148)] = 42849, + [SMALL_STATE(1149)] = 42902, + [SMALL_STATE(1150)] = 42955, + [SMALL_STATE(1151)] = 43008, + [SMALL_STATE(1152)] = 43061, + [SMALL_STATE(1153)] = 43114, + [SMALL_STATE(1154)] = 43167, + [SMALL_STATE(1155)] = 43220, + [SMALL_STATE(1156)] = 43273, + [SMALL_STATE(1157)] = 43336, + [SMALL_STATE(1158)] = 43395, + [SMALL_STATE(1159)] = 43454, + [SMALL_STATE(1160)] = 43513, + [SMALL_STATE(1161)] = 43574, + [SMALL_STATE(1162)] = 43629, + [SMALL_STATE(1163)] = 43688, + [SMALL_STATE(1164)] = 43747, + [SMALL_STATE(1165)] = 43796, + [SMALL_STATE(1166)] = 43855, + [SMALL_STATE(1167)] = 43910, + [SMALL_STATE(1168)] = 43971, + [SMALL_STATE(1169)] = 44026, + [SMALL_STATE(1170)] = 44079, + [SMALL_STATE(1171)] = 44134, + [SMALL_STATE(1172)] = 44189, + [SMALL_STATE(1173)] = 44238, + [SMALL_STATE(1174)] = 44297, + [SMALL_STATE(1175)] = 44356, + [SMALL_STATE(1176)] = 44417, + [SMALL_STATE(1177)] = 44480, + [SMALL_STATE(1178)] = 44543, + [SMALL_STATE(1179)] = 44596, + [SMALL_STATE(1180)] = 44655, + [SMALL_STATE(1181)] = 44718, + [SMALL_STATE(1182)] = 44781, + [SMALL_STATE(1183)] = 44844, + [SMALL_STATE(1184)] = 44905, + [SMALL_STATE(1185)] = 44958, + [SMALL_STATE(1186)] = 45011, + [SMALL_STATE(1187)] = 45073, + [SMALL_STATE(1188)] = 45125, + [SMALL_STATE(1189)] = 45183, + [SMALL_STATE(1190)] = 45245, + [SMALL_STATE(1191)] = 45307, + [SMALL_STATE(1192)] = 45359, + [SMALL_STATE(1193)] = 45421, + [SMALL_STATE(1194)] = 45483, + [SMALL_STATE(1195)] = 45545, + [SMALL_STATE(1196)] = 45607, + [SMALL_STATE(1197)] = 45669, + [SMALL_STATE(1198)] = 45723, + [SMALL_STATE(1199)] = 45785, + [SMALL_STATE(1200)] = 45847, + [SMALL_STATE(1201)] = 45909, + [SMALL_STATE(1202)] = 45971, + [SMALL_STATE(1203)] = 46033, + [SMALL_STATE(1204)] = 46095, + [SMALL_STATE(1205)] = 46153, + [SMALL_STATE(1206)] = 46215, + [SMALL_STATE(1207)] = 46277, + [SMALL_STATE(1208)] = 46339, + [SMALL_STATE(1209)] = 46401, + [SMALL_STATE(1210)] = 46463, + [SMALL_STATE(1211)] = 46525, + [SMALL_STATE(1212)] = 46587, + [SMALL_STATE(1213)] = 46649, + [SMALL_STATE(1214)] = 46711, + [SMALL_STATE(1215)] = 46769, + [SMALL_STATE(1216)] = 46831, + [SMALL_STATE(1217)] = 46893, + [SMALL_STATE(1218)] = 46955, + [SMALL_STATE(1219)] = 47013, + [SMALL_STATE(1220)] = 47075, + [SMALL_STATE(1221)] = 47127, + [SMALL_STATE(1222)] = 47189, + [SMALL_STATE(1223)] = 47243, + [SMALL_STATE(1224)] = 47305, + [SMALL_STATE(1225)] = 47367, + [SMALL_STATE(1226)] = 47429, + [SMALL_STATE(1227)] = 47491, + [SMALL_STATE(1228)] = 47553, + [SMALL_STATE(1229)] = 47615, + [SMALL_STATE(1230)] = 47673, + [SMALL_STATE(1231)] = 47735, + [SMALL_STATE(1232)] = 47797, + [SMALL_STATE(1233)] = 47859, + [SMALL_STATE(1234)] = 47917, + [SMALL_STATE(1235)] = 47971, + [SMALL_STATE(1236)] = 48033, + [SMALL_STATE(1237)] = 48095, + [SMALL_STATE(1238)] = 48147, + [SMALL_STATE(1239)] = 48209, + [SMALL_STATE(1240)] = 48271, + [SMALL_STATE(1241)] = 48323, + [SMALL_STATE(1242)] = 48375, + [SMALL_STATE(1243)] = 48437, + [SMALL_STATE(1244)] = 48499, + [SMALL_STATE(1245)] = 48551, + [SMALL_STATE(1246)] = 48613, + [SMALL_STATE(1247)] = 48665, + [SMALL_STATE(1248)] = 48717, + [SMALL_STATE(1249)] = 48769, + [SMALL_STATE(1250)] = 48821, + [SMALL_STATE(1251)] = 48883, + [SMALL_STATE(1252)] = 48935, + [SMALL_STATE(1253)] = 48987, + [SMALL_STATE(1254)] = 49039, + [SMALL_STATE(1255)] = 49091, + [SMALL_STATE(1256)] = 49149, + [SMALL_STATE(1257)] = 49211, + [SMALL_STATE(1258)] = 49269, + [SMALL_STATE(1259)] = 49321, + [SMALL_STATE(1260)] = 49373, + [SMALL_STATE(1261)] = 49435, + [SMALL_STATE(1262)] = 49487, + [SMALL_STATE(1263)] = 49549, + [SMALL_STATE(1264)] = 49601, + [SMALL_STATE(1265)] = 49653, + [SMALL_STATE(1266)] = 49705, + [SMALL_STATE(1267)] = 49757, + [SMALL_STATE(1268)] = 49819, + [SMALL_STATE(1269)] = 49881, + [SMALL_STATE(1270)] = 49943, + [SMALL_STATE(1271)] = 49995, + [SMALL_STATE(1272)] = 50047, + [SMALL_STATE(1273)] = 50109, + [SMALL_STATE(1274)] = 50171, + [SMALL_STATE(1275)] = 50233, + [SMALL_STATE(1276)] = 50295, + [SMALL_STATE(1277)] = 50357, + [SMALL_STATE(1278)] = 50419, + [SMALL_STATE(1279)] = 50481, + [SMALL_STATE(1280)] = 50543, + [SMALL_STATE(1281)] = 50605, + [SMALL_STATE(1282)] = 50667, + [SMALL_STATE(1283)] = 50725, + [SMALL_STATE(1284)] = 50783, + [SMALL_STATE(1285)] = 50845, + [SMALL_STATE(1286)] = 50907, + [SMALL_STATE(1287)] = 50969, + [SMALL_STATE(1288)] = 51031, + [SMALL_STATE(1289)] = 51093, + [SMALL_STATE(1290)] = 51147, + [SMALL_STATE(1291)] = 51209, + [SMALL_STATE(1292)] = 51271, + [SMALL_STATE(1293)] = 51333, + [SMALL_STATE(1294)] = 51395, + [SMALL_STATE(1295)] = 51457, + [SMALL_STATE(1296)] = 51511, + [SMALL_STATE(1297)] = 51573, + [SMALL_STATE(1298)] = 51635, + [SMALL_STATE(1299)] = 51697, + [SMALL_STATE(1300)] = 51759, + [SMALL_STATE(1301)] = 51821, + [SMALL_STATE(1302)] = 51883, + [SMALL_STATE(1303)] = 51945, + [SMALL_STATE(1304)] = 52007, + [SMALL_STATE(1305)] = 52069, + [SMALL_STATE(1306)] = 52121, + [SMALL_STATE(1307)] = 52183, + [SMALL_STATE(1308)] = 52245, + [SMALL_STATE(1309)] = 52307, + [SMALL_STATE(1310)] = 52369, + [SMALL_STATE(1311)] = 52431, + [SMALL_STATE(1312)] = 52493, + [SMALL_STATE(1313)] = 52555, + [SMALL_STATE(1314)] = 52617, + [SMALL_STATE(1315)] = 52679, + [SMALL_STATE(1316)] = 52741, + [SMALL_STATE(1317)] = 52793, + [SMALL_STATE(1318)] = 52845, + [SMALL_STATE(1319)] = 52897, + [SMALL_STATE(1320)] = 52959, + [SMALL_STATE(1321)] = 53021, + [SMALL_STATE(1322)] = 53083, + [SMALL_STATE(1323)] = 53145, + [SMALL_STATE(1324)] = 53207, + [SMALL_STATE(1325)] = 53269, + [SMALL_STATE(1326)] = 53331, + [SMALL_STATE(1327)] = 53393, + [SMALL_STATE(1328)] = 53455, + [SMALL_STATE(1329)] = 53517, + [SMALL_STATE(1330)] = 53579, + [SMALL_STATE(1331)] = 53638, + [SMALL_STATE(1332)] = 53697, + [SMALL_STATE(1333)] = 53756, + [SMALL_STATE(1334)] = 53811, + [SMALL_STATE(1335)] = 53870, + [SMALL_STATE(1336)] = 53929, + [SMALL_STATE(1337)] = 53988, + [SMALL_STATE(1338)] = 54039, + [SMALL_STATE(1339)] = 54098, + [SMALL_STATE(1340)] = 54157, + [SMALL_STATE(1341)] = 54208, + [SMALL_STATE(1342)] = 54259, + [SMALL_STATE(1343)] = 54310, + [SMALL_STATE(1344)] = 54369, + [SMALL_STATE(1345)] = 54428, + [SMALL_STATE(1346)] = 54479, + [SMALL_STATE(1347)] = 54538, + [SMALL_STATE(1348)] = 54589, + [SMALL_STATE(1349)] = 54648, + [SMALL_STATE(1350)] = 54707, + [SMALL_STATE(1351)] = 54766, + [SMALL_STATE(1352)] = 54825, + [SMALL_STATE(1353)] = 54876, + [SMALL_STATE(1354)] = 54935, + [SMALL_STATE(1355)] = 54994, + [SMALL_STATE(1356)] = 55047, + [SMALL_STATE(1357)] = 55110, + [SMALL_STATE(1358)] = 55173, + [SMALL_STATE(1359)] = 55236, + [SMALL_STATE(1360)] = 55299, + [SMALL_STATE(1361)] = 55362, + [SMALL_STATE(1362)] = 55413, + [SMALL_STATE(1363)] = 55472, + [SMALL_STATE(1364)] = 55523, + [SMALL_STATE(1365)] = 55574, + [SMALL_STATE(1366)] = 55633, + [SMALL_STATE(1367)] = 55692, + [SMALL_STATE(1368)] = 55747, + [SMALL_STATE(1369)] = 55806, + [SMALL_STATE(1370)] = 55865, + [SMALL_STATE(1371)] = 55924, + [SMALL_STATE(1372)] = 55983, + [SMALL_STATE(1373)] = 56042, + [SMALL_STATE(1374)] = 56101, + [SMALL_STATE(1375)] = 56160, + [SMALL_STATE(1376)] = 56219, + [SMALL_STATE(1377)] = 56278, + [SMALL_STATE(1378)] = 56337, + [SMALL_STATE(1379)] = 56396, + [SMALL_STATE(1380)] = 56455, + [SMALL_STATE(1381)] = 56514, + [SMALL_STATE(1382)] = 56573, + [SMALL_STATE(1383)] = 56632, + [SMALL_STATE(1384)] = 56691, + [SMALL_STATE(1385)] = 56750, + [SMALL_STATE(1386)] = 56809, + [SMALL_STATE(1387)] = 56868, + [SMALL_STATE(1388)] = 56927, + [SMALL_STATE(1389)] = 56986, + [SMALL_STATE(1390)] = 57045, + [SMALL_STATE(1391)] = 57104, + [SMALL_STATE(1392)] = 57163, + [SMALL_STATE(1393)] = 57214, + [SMALL_STATE(1394)] = 57273, + [SMALL_STATE(1395)] = 57332, + [SMALL_STATE(1396)] = 57391, + [SMALL_STATE(1397)] = 57450, + [SMALL_STATE(1398)] = 57509, + [SMALL_STATE(1399)] = 57568, + [SMALL_STATE(1400)] = 57627, + [SMALL_STATE(1401)] = 57686, + [SMALL_STATE(1402)] = 57745, + [SMALL_STATE(1403)] = 57808, + [SMALL_STATE(1404)] = 57871, + [SMALL_STATE(1405)] = 57930, + [SMALL_STATE(1406)] = 57989, + [SMALL_STATE(1407)] = 58048, + [SMALL_STATE(1408)] = 58107, + [SMALL_STATE(1409)] = 58166, + [SMALL_STATE(1410)] = 58225, + [SMALL_STATE(1411)] = 58284, + [SMALL_STATE(1412)] = 58343, + [SMALL_STATE(1413)] = 58394, + [SMALL_STATE(1414)] = 58453, + [SMALL_STATE(1415)] = 58512, + [SMALL_STATE(1416)] = 58571, + [SMALL_STATE(1417)] = 58630, + [SMALL_STATE(1418)] = 58681, + [SMALL_STATE(1419)] = 58732, + [SMALL_STATE(1420)] = 58783, + [SMALL_STATE(1421)] = 58834, + [SMALL_STATE(1422)] = 58885, + [SMALL_STATE(1423)] = 58944, + [SMALL_STATE(1424)] = 59003, + [SMALL_STATE(1425)] = 59054, + [SMALL_STATE(1426)] = 59105, + [SMALL_STATE(1427)] = 59156, + [SMALL_STATE(1428)] = 59215, + [SMALL_STATE(1429)] = 59266, + [SMALL_STATE(1430)] = 59317, + [SMALL_STATE(1431)] = 59368, + [SMALL_STATE(1432)] = 59419, + [SMALL_STATE(1433)] = 59470, + [SMALL_STATE(1434)] = 59529, + [SMALL_STATE(1435)] = 59580, + [SMALL_STATE(1436)] = 59639, + [SMALL_STATE(1437)] = 59698, + [SMALL_STATE(1438)] = 59757, + [SMALL_STATE(1439)] = 59816, + [SMALL_STATE(1440)] = 59867, + [SMALL_STATE(1441)] = 59918, + [SMALL_STATE(1442)] = 59969, + [SMALL_STATE(1443)] = 60028, + [SMALL_STATE(1444)] = 60087, + [SMALL_STATE(1445)] = 60146, + [SMALL_STATE(1446)] = 60205, + [SMALL_STATE(1447)] = 60264, + [SMALL_STATE(1448)] = 60323, + [SMALL_STATE(1449)] = 60374, + [SMALL_STATE(1450)] = 60425, + [SMALL_STATE(1451)] = 60476, + [SMALL_STATE(1452)] = 60527, + [SMALL_STATE(1453)] = 60578, + [SMALL_STATE(1454)] = 60637, + [SMALL_STATE(1455)] = 60696, + [SMALL_STATE(1456)] = 60755, + [SMALL_STATE(1457)] = 60814, + [SMALL_STATE(1458)] = 60873, + [SMALL_STATE(1459)] = 60932, + [SMALL_STATE(1460)] = 60991, + [SMALL_STATE(1461)] = 61050, + [SMALL_STATE(1462)] = 61109, + [SMALL_STATE(1463)] = 61168, + [SMALL_STATE(1464)] = 61227, + [SMALL_STATE(1465)] = 61286, + [SMALL_STATE(1466)] = 61345, + [SMALL_STATE(1467)] = 61404, + [SMALL_STATE(1468)] = 61463, + [SMALL_STATE(1469)] = 61522, + [SMALL_STATE(1470)] = 61581, + [SMALL_STATE(1471)] = 61640, + [SMALL_STATE(1472)] = 61703, + [SMALL_STATE(1473)] = 61754, + [SMALL_STATE(1474)] = 61813, + [SMALL_STATE(1475)] = 61872, + [SMALL_STATE(1476)] = 61931, + [SMALL_STATE(1477)] = 61990, + [SMALL_STATE(1478)] = 62049, + [SMALL_STATE(1479)] = 62108, + [SMALL_STATE(1480)] = 62159, + [SMALL_STATE(1481)] = 62218, + [SMALL_STATE(1482)] = 62277, + [SMALL_STATE(1483)] = 62336, + [SMALL_STATE(1484)] = 62387, + [SMALL_STATE(1485)] = 62438, + [SMALL_STATE(1486)] = 62489, + [SMALL_STATE(1487)] = 62540, + [SMALL_STATE(1488)] = 62599, + [SMALL_STATE(1489)] = 62658, + [SMALL_STATE(1490)] = 62717, + [SMALL_STATE(1491)] = 62776, + [SMALL_STATE(1492)] = 62835, + [SMALL_STATE(1493)] = 62894, + [SMALL_STATE(1494)] = 62945, + [SMALL_STATE(1495)] = 62996, + [SMALL_STATE(1496)] = 63055, + [SMALL_STATE(1497)] = 63106, + [SMALL_STATE(1498)] = 63165, + [SMALL_STATE(1499)] = 63224, + [SMALL_STATE(1500)] = 63283, + [SMALL_STATE(1501)] = 63342, + [SMALL_STATE(1502)] = 63401, + [SMALL_STATE(1503)] = 63452, + [SMALL_STATE(1504)] = 63511, + [SMALL_STATE(1505)] = 63570, + [SMALL_STATE(1506)] = 63629, + [SMALL_STATE(1507)] = 63688, + [SMALL_STATE(1508)] = 63747, + [SMALL_STATE(1509)] = 63806, + [SMALL_STATE(1510)] = 63869, + [SMALL_STATE(1511)] = 63920, + [SMALL_STATE(1512)] = 63979, + [SMALL_STATE(1513)] = 64038, + [SMALL_STATE(1514)] = 64097, + [SMALL_STATE(1515)] = 64148, + [SMALL_STATE(1516)] = 64207, + [SMALL_STATE(1517)] = 64266, + [SMALL_STATE(1518)] = 64325, + [SMALL_STATE(1519)] = 64384, + [SMALL_STATE(1520)] = 64447, + [SMALL_STATE(1521)] = 64506, + [SMALL_STATE(1522)] = 64565, + [SMALL_STATE(1523)] = 64624, + [SMALL_STATE(1524)] = 64683, + [SMALL_STATE(1525)] = 64734, + [SMALL_STATE(1526)] = 64793, + [SMALL_STATE(1527)] = 64852, + [SMALL_STATE(1528)] = 64911, + [SMALL_STATE(1529)] = 64970, + [SMALL_STATE(1530)] = 65021, + [SMALL_STATE(1531)] = 65072, + [SMALL_STATE(1532)] = 65131, + [SMALL_STATE(1533)] = 65190, + [SMALL_STATE(1534)] = 65249, + [SMALL_STATE(1535)] = 65308, + [SMALL_STATE(1536)] = 65367, + [SMALL_STATE(1537)] = 65426, + [SMALL_STATE(1538)] = 65485, + [SMALL_STATE(1539)] = 65544, + [SMALL_STATE(1540)] = 65603, + [SMALL_STATE(1541)] = 65662, + [SMALL_STATE(1542)] = 65721, + [SMALL_STATE(1543)] = 65780, + [SMALL_STATE(1544)] = 65839, + [SMALL_STATE(1545)] = 65898, + [SMALL_STATE(1546)] = 65957, + [SMALL_STATE(1547)] = 66016, + [SMALL_STATE(1548)] = 66075, + [SMALL_STATE(1549)] = 66134, + [SMALL_STATE(1550)] = 66193, + [SMALL_STATE(1551)] = 66252, + [SMALL_STATE(1552)] = 66303, + [SMALL_STATE(1553)] = 66362, + [SMALL_STATE(1554)] = 66413, + [SMALL_STATE(1555)] = 66464, + [SMALL_STATE(1556)] = 66523, + [SMALL_STATE(1557)] = 66574, + [SMALL_STATE(1558)] = 66625, + [SMALL_STATE(1559)] = 66684, + [SMALL_STATE(1560)] = 66735, + [SMALL_STATE(1561)] = 66786, + [SMALL_STATE(1562)] = 66837, + [SMALL_STATE(1563)] = 66888, + [SMALL_STATE(1564)] = 66939, + [SMALL_STATE(1565)] = 66990, + [SMALL_STATE(1566)] = 67040, + [SMALL_STATE(1567)] = 67090, + [SMALL_STATE(1568)] = 67138, + [SMALL_STATE(1569)] = 67188, + [SMALL_STATE(1570)] = 67236, + [SMALL_STATE(1571)] = 67284, + [SMALL_STATE(1572)] = 67338, + [SMALL_STATE(1573)] = 67390, + [SMALL_STATE(1574)] = 67444, + [SMALL_STATE(1575)] = 67492, + [SMALL_STATE(1576)] = 67540, + [SMALL_STATE(1577)] = 67588, + [SMALL_STATE(1578)] = 67644, + [SMALL_STATE(1579)] = 67694, + [SMALL_STATE(1580)] = 67744, + [SMALL_STATE(1581)] = 67794, + [SMALL_STATE(1582)] = 67844, + [SMALL_STATE(1583)] = 67894, + [SMALL_STATE(1584)] = 67944, + [SMALL_STATE(1585)] = 67994, + [SMALL_STATE(1586)] = 68044, + [SMALL_STATE(1587)] = 68094, + [SMALL_STATE(1588)] = 68144, + [SMALL_STATE(1589)] = 68194, + [SMALL_STATE(1590)] = 68244, + [SMALL_STATE(1591)] = 68294, + [SMALL_STATE(1592)] = 68344, + [SMALL_STATE(1593)] = 68394, + [SMALL_STATE(1594)] = 68444, + [SMALL_STATE(1595)] = 68494, + [SMALL_STATE(1596)] = 68544, + [SMALL_STATE(1597)] = 68600, + [SMALL_STATE(1598)] = 68648, + [SMALL_STATE(1599)] = 68698, + [SMALL_STATE(1600)] = 68748, + [SMALL_STATE(1601)] = 68798, + [SMALL_STATE(1602)] = 68848, + [SMALL_STATE(1603)] = 68898, + [SMALL_STATE(1604)] = 68948, + [SMALL_STATE(1605)] = 68998, + [SMALL_STATE(1606)] = 69054, + [SMALL_STATE(1607)] = 69104, + [SMALL_STATE(1608)] = 69154, + [SMALL_STATE(1609)] = 69204, + [SMALL_STATE(1610)] = 69254, + [SMALL_STATE(1611)] = 69304, + [SMALL_STATE(1612)] = 69354, + [SMALL_STATE(1613)] = 69404, + [SMALL_STATE(1614)] = 69454, + [SMALL_STATE(1615)] = 69504, + [SMALL_STATE(1616)] = 69554, + [SMALL_STATE(1617)] = 69604, + [SMALL_STATE(1618)] = 69654, + [SMALL_STATE(1619)] = 69708, + [SMALL_STATE(1620)] = 69764, + [SMALL_STATE(1621)] = 69820, + [SMALL_STATE(1622)] = 69870, + [SMALL_STATE(1623)] = 69918, + [SMALL_STATE(1624)] = 69972, + [SMALL_STATE(1625)] = 70022, + [SMALL_STATE(1626)] = 70072, + [SMALL_STATE(1627)] = 70128, + [SMALL_STATE(1628)] = 70176, + [SMALL_STATE(1629)] = 70232, + [SMALL_STATE(1630)] = 70279, + [SMALL_STATE(1631)] = 70324, + [SMALL_STATE(1632)] = 70379, + [SMALL_STATE(1633)] = 70424, + [SMALL_STATE(1634)] = 70471, + [SMALL_STATE(1635)] = 70516, + [SMALL_STATE(1636)] = 70563, + [SMALL_STATE(1637)] = 70608, + [SMALL_STATE(1638)] = 70653, + [SMALL_STATE(1639)] = 70698, + [SMALL_STATE(1640)] = 70743, + [SMALL_STATE(1641)] = 70788, + [SMALL_STATE(1642)] = 70833, + [SMALL_STATE(1643)] = 70878, + [SMALL_STATE(1644)] = 70925, + [SMALL_STATE(1645)] = 70972, + [SMALL_STATE(1646)] = 71019, + [SMALL_STATE(1647)] = 71064, + [SMALL_STATE(1648)] = 71111, + [SMALL_STATE(1649)] = 71156, + [SMALL_STATE(1650)] = 71211, + [SMALL_STATE(1651)] = 71260, + [SMALL_STATE(1652)] = 71309, + [SMALL_STATE(1653)] = 71356, + [SMALL_STATE(1654)] = 71401, + [SMALL_STATE(1655)] = 71446, + [SMALL_STATE(1656)] = 71493, + [SMALL_STATE(1657)] = 71542, + [SMALL_STATE(1658)] = 71587, + [SMALL_STATE(1659)] = 71632, + [SMALL_STATE(1660)] = 71677, + [SMALL_STATE(1661)] = 71722, + [SMALL_STATE(1662)] = 71777, + [SMALL_STATE(1663)] = 71826, + [SMALL_STATE(1664)] = 71873, + [SMALL_STATE(1665)] = 71920, + [SMALL_STATE(1666)] = 71967, + [SMALL_STATE(1667)] = 72014, + [SMALL_STATE(1668)] = 72061, + [SMALL_STATE(1669)] = 72106, + [SMALL_STATE(1670)] = 72151, + [SMALL_STATE(1671)] = 72196, + [SMALL_STATE(1672)] = 72241, + [SMALL_STATE(1673)] = 72286, + [SMALL_STATE(1674)] = 72331, + [SMALL_STATE(1675)] = 72376, + [SMALL_STATE(1676)] = 72421, + [SMALL_STATE(1677)] = 72466, + [SMALL_STATE(1678)] = 72511, + [SMALL_STATE(1679)] = 72565, + [SMALL_STATE(1680)] = 72617, + [SMALL_STATE(1681)] = 72663, + [SMALL_STATE(1682)] = 72707, + [SMALL_STATE(1683)] = 72751, + [SMALL_STATE(1684)] = 72797, + [SMALL_STATE(1685)] = 72843, + [SMALL_STATE(1686)] = 72887, + [SMALL_STATE(1687)] = 72933, + [SMALL_STATE(1688)] = 72979, + [SMALL_STATE(1689)] = 73025, + [SMALL_STATE(1690)] = 73069, + [SMALL_STATE(1691)] = 73115, + [SMALL_STATE(1692)] = 73159, + [SMALL_STATE(1693)] = 73203, + [SMALL_STATE(1694)] = 73249, + [SMALL_STATE(1695)] = 73295, + [SMALL_STATE(1696)] = 73341, + [SMALL_STATE(1697)] = 73385, + [SMALL_STATE(1698)] = 73439, + [SMALL_STATE(1699)] = 73483, + [SMALL_STATE(1700)] = 73527, + [SMALL_STATE(1701)] = 73573, + [SMALL_STATE(1702)] = 73617, + [SMALL_STATE(1703)] = 73661, + [SMALL_STATE(1704)] = 73715, + [SMALL_STATE(1705)] = 73769, + [SMALL_STATE(1706)] = 73823, + [SMALL_STATE(1707)] = 73877, + [SMALL_STATE(1708)] = 73923, + [SMALL_STATE(1709)] = 73969, + [SMALL_STATE(1710)] = 74013, + [SMALL_STATE(1711)] = 74057, + [SMALL_STATE(1712)] = 74101, + [SMALL_STATE(1713)] = 74147, + [SMALL_STATE(1714)] = 74190, + [SMALL_STATE(1715)] = 74233, + [SMALL_STATE(1716)] = 74276, + [SMALL_STATE(1717)] = 74319, + [SMALL_STATE(1718)] = 74362, + [SMALL_STATE(1719)] = 74405, + [SMALL_STATE(1720)] = 74450, + [SMALL_STATE(1721)] = 74493, + [SMALL_STATE(1722)] = 74536, + [SMALL_STATE(1723)] = 74579, + [SMALL_STATE(1724)] = 74622, + [SMALL_STATE(1725)] = 74665, + [SMALL_STATE(1726)] = 74708, + [SMALL_STATE(1727)] = 74751, + [SMALL_STATE(1728)] = 74794, + [SMALL_STATE(1729)] = 74837, + [SMALL_STATE(1730)] = 74880, + [SMALL_STATE(1731)] = 74923, + [SMALL_STATE(1732)] = 74966, + [SMALL_STATE(1733)] = 75011, + [SMALL_STATE(1734)] = 75054, + [SMALL_STATE(1735)] = 75097, + [SMALL_STATE(1736)] = 75140, + [SMALL_STATE(1737)] = 75183, + [SMALL_STATE(1738)] = 75228, + [SMALL_STATE(1739)] = 75271, + [SMALL_STATE(1740)] = 75314, + [SMALL_STATE(1741)] = 75357, + [SMALL_STATE(1742)] = 75400, + [SMALL_STATE(1743)] = 75443, + [SMALL_STATE(1744)] = 75486, + [SMALL_STATE(1745)] = 75529, + [SMALL_STATE(1746)] = 75574, + [SMALL_STATE(1747)] = 75616, + [SMALL_STATE(1748)] = 75660, + [SMALL_STATE(1749)] = 75702, + [SMALL_STATE(1750)] = 75744, + [SMALL_STATE(1751)] = 75786, + [SMALL_STATE(1752)] = 75828, + [SMALL_STATE(1753)] = 75870, + [SMALL_STATE(1754)] = 75912, + [SMALL_STATE(1755)] = 75954, + [SMALL_STATE(1756)] = 75996, + [SMALL_STATE(1757)] = 76038, + [SMALL_STATE(1758)] = 76082, + [SMALL_STATE(1759)] = 76124, + [SMALL_STATE(1760)] = 76166, + [SMALL_STATE(1761)] = 76208, + [SMALL_STATE(1762)] = 76250, + [SMALL_STATE(1763)] = 76292, + [SMALL_STATE(1764)] = 76334, + [SMALL_STATE(1765)] = 76376, + [SMALL_STATE(1766)] = 76417, + [SMALL_STATE(1767)] = 76458, + [SMALL_STATE(1768)] = 76492, + [SMALL_STATE(1769)] = 76526, + [SMALL_STATE(1770)] = 76560, + [SMALL_STATE(1771)] = 76582, + [SMALL_STATE(1772)] = 76604, + [SMALL_STATE(1773)] = 76626, + [SMALL_STATE(1774)] = 76648, + [SMALL_STATE(1775)] = 76670, + [SMALL_STATE(1776)] = 76692, + [SMALL_STATE(1777)] = 76714, + [SMALL_STATE(1778)] = 76736, + [SMALL_STATE(1779)] = 76758, + [SMALL_STATE(1780)] = 76780, + [SMALL_STATE(1781)] = 76802, + [SMALL_STATE(1782)] = 76824, + [SMALL_STATE(1783)] = 76846, + [SMALL_STATE(1784)] = 76868, + [SMALL_STATE(1785)] = 76890, + [SMALL_STATE(1786)] = 76912, + [SMALL_STATE(1787)] = 76934, + [SMALL_STATE(1788)] = 76956, + [SMALL_STATE(1789)] = 76978, + [SMALL_STATE(1790)] = 77000, + [SMALL_STATE(1791)] = 77022, + [SMALL_STATE(1792)] = 77044, + [SMALL_STATE(1793)] = 77066, + [SMALL_STATE(1794)] = 77088, + [SMALL_STATE(1795)] = 77110, + [SMALL_STATE(1796)] = 77132, + [SMALL_STATE(1797)] = 77154, + [SMALL_STATE(1798)] = 77176, + [SMALL_STATE(1799)] = 77198, + [SMALL_STATE(1800)] = 77224, + [SMALL_STATE(1801)] = 77246, + [SMALL_STATE(1802)] = 77268, + [SMALL_STATE(1803)] = 77290, + [SMALL_STATE(1804)] = 77312, + [SMALL_STATE(1805)] = 77334, + [SMALL_STATE(1806)] = 77356, + [SMALL_STATE(1807)] = 77378, + [SMALL_STATE(1808)] = 77400, + [SMALL_STATE(1809)] = 77422, + [SMALL_STATE(1810)] = 77455, + [SMALL_STATE(1811)] = 77488, + [SMALL_STATE(1812)] = 77521, + [SMALL_STATE(1813)] = 77554, + [SMALL_STATE(1814)] = 77587, + [SMALL_STATE(1815)] = 77620, + [SMALL_STATE(1816)] = 77653, + [SMALL_STATE(1817)] = 77686, + [SMALL_STATE(1818)] = 77719, + [SMALL_STATE(1819)] = 77752, + [SMALL_STATE(1820)] = 77785, + [SMALL_STATE(1821)] = 77818, + [SMALL_STATE(1822)] = 77844, + [SMALL_STATE(1823)] = 77860, + [SMALL_STATE(1824)] = 77888, + [SMALL_STATE(1825)] = 77910, + [SMALL_STATE(1826)] = 77926, + [SMALL_STATE(1827)] = 77954, + [SMALL_STATE(1828)] = 77970, + [SMALL_STATE(1829)] = 78000, + [SMALL_STATE(1830)] = 78016, + [SMALL_STATE(1831)] = 78046, + [SMALL_STATE(1832)] = 78068, + [SMALL_STATE(1833)] = 78084, + [SMALL_STATE(1834)] = 78100, + [SMALL_STATE(1835)] = 78116, + [SMALL_STATE(1836)] = 78138, + [SMALL_STATE(1837)] = 78154, + [SMALL_STATE(1838)] = 78170, + [SMALL_STATE(1839)] = 78186, + [SMALL_STATE(1840)] = 78214, + [SMALL_STATE(1841)] = 78230, + [SMALL_STATE(1842)] = 78260, + [SMALL_STATE(1843)] = 78276, + [SMALL_STATE(1844)] = 78306, + [SMALL_STATE(1845)] = 78334, + [SMALL_STATE(1846)] = 78362, + [SMALL_STATE(1847)] = 78378, + [SMALL_STATE(1848)] = 78406, + [SMALL_STATE(1849)] = 78433, + [SMALL_STATE(1850)] = 78452, + [SMALL_STATE(1851)] = 78471, + [SMALL_STATE(1852)] = 78490, + [SMALL_STATE(1853)] = 78509, + [SMALL_STATE(1854)] = 78528, + [SMALL_STATE(1855)] = 78547, + [SMALL_STATE(1856)] = 78566, + [SMALL_STATE(1857)] = 78585, + [SMALL_STATE(1858)] = 78604, + [SMALL_STATE(1859)] = 78623, + [SMALL_STATE(1860)] = 78642, + [SMALL_STATE(1861)] = 78661, + [SMALL_STATE(1862)] = 78680, + [SMALL_STATE(1863)] = 78699, + [SMALL_STATE(1864)] = 78718, + [SMALL_STATE(1865)] = 78737, + [SMALL_STATE(1866)] = 78756, + [SMALL_STATE(1867)] = 78775, + [SMALL_STATE(1868)] = 78794, + [SMALL_STATE(1869)] = 78813, + [SMALL_STATE(1870)] = 78832, + [SMALL_STATE(1871)] = 78851, + [SMALL_STATE(1872)] = 78870, + [SMALL_STATE(1873)] = 78889, + [SMALL_STATE(1874)] = 78908, + [SMALL_STATE(1875)] = 78927, + [SMALL_STATE(1876)] = 78946, + [SMALL_STATE(1877)] = 78965, + [SMALL_STATE(1878)] = 78984, + [SMALL_STATE(1879)] = 79003, + [SMALL_STATE(1880)] = 79026, + [SMALL_STATE(1881)] = 79045, + [SMALL_STATE(1882)] = 79072, + [SMALL_STATE(1883)] = 79091, + [SMALL_STATE(1884)] = 79110, + [SMALL_STATE(1885)] = 79129, + [SMALL_STATE(1886)] = 79148, + [SMALL_STATE(1887)] = 79167, + [SMALL_STATE(1888)] = 79186, + [SMALL_STATE(1889)] = 79205, + [SMALL_STATE(1890)] = 79224, + [SMALL_STATE(1891)] = 79243, + [SMALL_STATE(1892)] = 79262, + [SMALL_STATE(1893)] = 79281, + [SMALL_STATE(1894)] = 79300, + [SMALL_STATE(1895)] = 79319, + [SMALL_STATE(1896)] = 79338, + [SMALL_STATE(1897)] = 79357, + [SMALL_STATE(1898)] = 79376, + [SMALL_STATE(1899)] = 79395, + [SMALL_STATE(1900)] = 79414, + [SMALL_STATE(1901)] = 79433, + [SMALL_STATE(1902)] = 79452, + [SMALL_STATE(1903)] = 79471, + [SMALL_STATE(1904)] = 79490, + [SMALL_STATE(1905)] = 79509, + [SMALL_STATE(1906)] = 79528, + [SMALL_STATE(1907)] = 79547, + [SMALL_STATE(1908)] = 79566, + [SMALL_STATE(1909)] = 79585, + [SMALL_STATE(1910)] = 79604, + [SMALL_STATE(1911)] = 79623, + [SMALL_STATE(1912)] = 79642, + [SMALL_STATE(1913)] = 79661, + [SMALL_STATE(1914)] = 79680, + [SMALL_STATE(1915)] = 79699, + [SMALL_STATE(1916)] = 79718, + [SMALL_STATE(1917)] = 79737, + [SMALL_STATE(1918)] = 79756, + [SMALL_STATE(1919)] = 79775, + [SMALL_STATE(1920)] = 79794, + [SMALL_STATE(1921)] = 79821, + [SMALL_STATE(1922)] = 79840, + [SMALL_STATE(1923)] = 79859, + [SMALL_STATE(1924)] = 79878, + [SMALL_STATE(1925)] = 79897, + [SMALL_STATE(1926)] = 79924, + [SMALL_STATE(1927)] = 79943, + [SMALL_STATE(1928)] = 79962, + [SMALL_STATE(1929)] = 79981, + [SMALL_STATE(1930)] = 80000, + [SMALL_STATE(1931)] = 80019, + [SMALL_STATE(1932)] = 80038, + [SMALL_STATE(1933)] = 80065, + [SMALL_STATE(1934)] = 80084, + [SMALL_STATE(1935)] = 80103, + [SMALL_STATE(1936)] = 80122, + [SMALL_STATE(1937)] = 80145, + [SMALL_STATE(1938)] = 80164, + [SMALL_STATE(1939)] = 80183, + [SMALL_STATE(1940)] = 80202, + [SMALL_STATE(1941)] = 80221, + [SMALL_STATE(1942)] = 80248, + [SMALL_STATE(1943)] = 80267, + [SMALL_STATE(1944)] = 80286, + [SMALL_STATE(1945)] = 80304, + [SMALL_STATE(1946)] = 80322, + [SMALL_STATE(1947)] = 80340, + [SMALL_STATE(1948)] = 80365, + [SMALL_STATE(1949)] = 80386, + [SMALL_STATE(1950)] = 80407, + [SMALL_STATE(1951)] = 80428, + [SMALL_STATE(1952)] = 80449, + [SMALL_STATE(1953)] = 80474, + [SMALL_STATE(1954)] = 80495, + [SMALL_STATE(1955)] = 80516, + [SMALL_STATE(1956)] = 80537, + [SMALL_STATE(1957)] = 80558, + [SMALL_STATE(1958)] = 80579, + [SMALL_STATE(1959)] = 80604, + [SMALL_STATE(1960)] = 80625, + [SMALL_STATE(1961)] = 80646, + [SMALL_STATE(1962)] = 80667, + [SMALL_STATE(1963)] = 80688, + [SMALL_STATE(1964)] = 80709, + [SMALL_STATE(1965)] = 80734, + [SMALL_STATE(1966)] = 80755, + [SMALL_STATE(1967)] = 80776, + [SMALL_STATE(1968)] = 80797, + [SMALL_STATE(1969)] = 80818, + [SMALL_STATE(1970)] = 80839, + [SMALL_STATE(1971)] = 80860, + [SMALL_STATE(1972)] = 80881, + [SMALL_STATE(1973)] = 80902, + [SMALL_STATE(1974)] = 80923, + [SMALL_STATE(1975)] = 80948, + [SMALL_STATE(1976)] = 80969, + [SMALL_STATE(1977)] = 80990, + [SMALL_STATE(1978)] = 81011, + [SMALL_STATE(1979)] = 81032, + [SMALL_STATE(1980)] = 81053, + [SMALL_STATE(1981)] = 81078, + [SMALL_STATE(1982)] = 81099, + [SMALL_STATE(1983)] = 81120, + [SMALL_STATE(1984)] = 81137, + [SMALL_STATE(1985)] = 81158, + [SMALL_STATE(1986)] = 81179, + [SMALL_STATE(1987)] = 81200, + [SMALL_STATE(1988)] = 81221, + [SMALL_STATE(1989)] = 81242, + [SMALL_STATE(1990)] = 81267, + [SMALL_STATE(1991)] = 81288, + [SMALL_STATE(1992)] = 81309, + [SMALL_STATE(1993)] = 81330, + [SMALL_STATE(1994)] = 81351, + [SMALL_STATE(1995)] = 81376, + [SMALL_STATE(1996)] = 81393, + [SMALL_STATE(1997)] = 81414, + [SMALL_STATE(1998)] = 81435, + [SMALL_STATE(1999)] = 81456, + [SMALL_STATE(2000)] = 81477, + [SMALL_STATE(2001)] = 81498, + [SMALL_STATE(2002)] = 81519, + [SMALL_STATE(2003)] = 81536, + [SMALL_STATE(2004)] = 81557, + [SMALL_STATE(2005)] = 81582, + [SMALL_STATE(2006)] = 81603, + [SMALL_STATE(2007)] = 81624, + [SMALL_STATE(2008)] = 81645, + [SMALL_STATE(2009)] = 81666, + [SMALL_STATE(2010)] = 81687, + [SMALL_STATE(2011)] = 81708, + [SMALL_STATE(2012)] = 81733, + [SMALL_STATE(2013)] = 81754, + [SMALL_STATE(2014)] = 81775, + [SMALL_STATE(2015)] = 81796, + [SMALL_STATE(2016)] = 81817, + [SMALL_STATE(2017)] = 81838, + [SMALL_STATE(2018)] = 81859, + [SMALL_STATE(2019)] = 81880, + [SMALL_STATE(2020)] = 81901, + [SMALL_STATE(2021)] = 81922, + [SMALL_STATE(2022)] = 81943, + [SMALL_STATE(2023)] = 81964, + [SMALL_STATE(2024)] = 81985, + [SMALL_STATE(2025)] = 82006, + [SMALL_STATE(2026)] = 82027, + [SMALL_STATE(2027)] = 82048, + [SMALL_STATE(2028)] = 82069, + [SMALL_STATE(2029)] = 82090, + [SMALL_STATE(2030)] = 82112, + [SMALL_STATE(2031)] = 82128, + [SMALL_STATE(2032)] = 82150, + [SMALL_STATE(2033)] = 82172, + [SMALL_STATE(2034)] = 82194, + [SMALL_STATE(2035)] = 82216, + [SMALL_STATE(2036)] = 82230, + [SMALL_STATE(2037)] = 82252, + [SMALL_STATE(2038)] = 82274, + [SMALL_STATE(2039)] = 82296, + [SMALL_STATE(2040)] = 82318, + [SMALL_STATE(2041)] = 82332, + [SMALL_STATE(2042)] = 82354, + [SMALL_STATE(2043)] = 82365, + [SMALL_STATE(2044)] = 82376, + [SMALL_STATE(2045)] = 82387, + [SMALL_STATE(2046)] = 82398, + [SMALL_STATE(2047)] = 82409, + [SMALL_STATE(2048)] = 82420, + [SMALL_STATE(2049)] = 82431, + [SMALL_STATE(2050)] = 82442, + [SMALL_STATE(2051)] = 82457, + [SMALL_STATE(2052)] = 82470, + [SMALL_STATE(2053)] = 82481, + [SMALL_STATE(2054)] = 82492, + [SMALL_STATE(2055)] = 82503, + [SMALL_STATE(2056)] = 82514, + [SMALL_STATE(2057)] = 82525, + [SMALL_STATE(2058)] = 82536, + [SMALL_STATE(2059)] = 82549, + [SMALL_STATE(2060)] = 82560, + [SMALL_STATE(2061)] = 82573, + [SMALL_STATE(2062)] = 82584, + [SMALL_STATE(2063)] = 82597, + [SMALL_STATE(2064)] = 82612, + [SMALL_STATE(2065)] = 82624, + [SMALL_STATE(2066)] = 82636, + [SMALL_STATE(2067)] = 82652, + [SMALL_STATE(2068)] = 82668, + [SMALL_STATE(2069)] = 82684, + [SMALL_STATE(2070)] = 82700, + [SMALL_STATE(2071)] = 82716, + [SMALL_STATE(2072)] = 82732, + [SMALL_STATE(2073)] = 82742, + [SMALL_STATE(2074)] = 82752, + [SMALL_STATE(2075)] = 82768, + [SMALL_STATE(2076)] = 82780, + [SMALL_STATE(2077)] = 82792, + [SMALL_STATE(2078)] = 82808, + [SMALL_STATE(2079)] = 82820, + [SMALL_STATE(2080)] = 82832, + [SMALL_STATE(2081)] = 82848, + [SMALL_STATE(2082)] = 82864, + [SMALL_STATE(2083)] = 82874, + [SMALL_STATE(2084)] = 82890, + [SMALL_STATE(2085)] = 82898, + [SMALL_STATE(2086)] = 82910, + [SMALL_STATE(2087)] = 82926, + [SMALL_STATE(2088)] = 82938, + [SMALL_STATE(2089)] = 82954, + [SMALL_STATE(2090)] = 82964, + [SMALL_STATE(2091)] = 82980, + [SMALL_STATE(2092)] = 82996, + [SMALL_STATE(2093)] = 83012, + [SMALL_STATE(2094)] = 83028, + [SMALL_STATE(2095)] = 83044, + [SMALL_STATE(2096)] = 83060, + [SMALL_STATE(2097)] = 83070, + [SMALL_STATE(2098)] = 83082, + [SMALL_STATE(2099)] = 83098, + [SMALL_STATE(2100)] = 83110, + [SMALL_STATE(2101)] = 83126, + [SMALL_STATE(2102)] = 83142, + [SMALL_STATE(2103)] = 83151, + [SMALL_STATE(2104)] = 83164, + [SMALL_STATE(2105)] = 83177, + [SMALL_STATE(2106)] = 83190, + [SMALL_STATE(2107)] = 83203, + [SMALL_STATE(2108)] = 83216, + [SMALL_STATE(2109)] = 83229, + [SMALL_STATE(2110)] = 83242, + [SMALL_STATE(2111)] = 83255, + [SMALL_STATE(2112)] = 83264, + [SMALL_STATE(2113)] = 83273, + [SMALL_STATE(2114)] = 83286, + [SMALL_STATE(2115)] = 83295, + [SMALL_STATE(2116)] = 83308, + [SMALL_STATE(2117)] = 83321, + [SMALL_STATE(2118)] = 83334, + [SMALL_STATE(2119)] = 83347, + [SMALL_STATE(2120)] = 83360, + [SMALL_STATE(2121)] = 83370, + [SMALL_STATE(2122)] = 83380, + [SMALL_STATE(2123)] = 83390, + [SMALL_STATE(2124)] = 83400, + [SMALL_STATE(2125)] = 83410, + [SMALL_STATE(2126)] = 83420, + [SMALL_STATE(2127)] = 83430, + [SMALL_STATE(2128)] = 83440, + [SMALL_STATE(2129)] = 83450, + [SMALL_STATE(2130)] = 83460, + [SMALL_STATE(2131)] = 83470, + [SMALL_STATE(2132)] = 83480, + [SMALL_STATE(2133)] = 83490, + [SMALL_STATE(2134)] = 83500, + [SMALL_STATE(2135)] = 83510, + [SMALL_STATE(2136)] = 83518, + [SMALL_STATE(2137)] = 83528, + [SMALL_STATE(2138)] = 83538, + [SMALL_STATE(2139)] = 83548, + [SMALL_STATE(2140)] = 83558, + [SMALL_STATE(2141)] = 83568, + [SMALL_STATE(2142)] = 83578, + [SMALL_STATE(2143)] = 83588, + [SMALL_STATE(2144)] = 83598, + [SMALL_STATE(2145)] = 83608, + [SMALL_STATE(2146)] = 83615, + [SMALL_STATE(2147)] = 83622, + [SMALL_STATE(2148)] = 83629, + [SMALL_STATE(2149)] = 83636, + [SMALL_STATE(2150)] = 83643, + [SMALL_STATE(2151)] = 83650, + [SMALL_STATE(2152)] = 83657, + [SMALL_STATE(2153)] = 83664, + [SMALL_STATE(2154)] = 83671, + [SMALL_STATE(2155)] = 83678, + [SMALL_STATE(2156)] = 83685, + [SMALL_STATE(2157)] = 83692, + [SMALL_STATE(2158)] = 83699, + [SMALL_STATE(2159)] = 83706, + [SMALL_STATE(2160)] = 83713, + [SMALL_STATE(2161)] = 83720, + [SMALL_STATE(2162)] = 83727, + [SMALL_STATE(2163)] = 83734, + [SMALL_STATE(2164)] = 83741, + [SMALL_STATE(2165)] = 83748, + [SMALL_STATE(2166)] = 83755, + [SMALL_STATE(2167)] = 83762, + [SMALL_STATE(2168)] = 83769, + [SMALL_STATE(2169)] = 83776, + [SMALL_STATE(2170)] = 83783, + [SMALL_STATE(2171)] = 83790, + [SMALL_STATE(2172)] = 83797, + [SMALL_STATE(2173)] = 83804, + [SMALL_STATE(2174)] = 83811, + [SMALL_STATE(2175)] = 83818, + [SMALL_STATE(2176)] = 83825, + [SMALL_STATE(2177)] = 83832, + [SMALL_STATE(2178)] = 83839, + [SMALL_STATE(2179)] = 83846, + [SMALL_STATE(2180)] = 83853, + [SMALL_STATE(2181)] = 83860, + [SMALL_STATE(2182)] = 83867, + [SMALL_STATE(2183)] = 83874, + [SMALL_STATE(2184)] = 83881, + [SMALL_STATE(2185)] = 83888, + [SMALL_STATE(2186)] = 83895, + [SMALL_STATE(2187)] = 83902, + [SMALL_STATE(2188)] = 83909, + [SMALL_STATE(2189)] = 83916, + [SMALL_STATE(2190)] = 83923, + [SMALL_STATE(2191)] = 83930, + [SMALL_STATE(2192)] = 83937, + [SMALL_STATE(2193)] = 83944, + [SMALL_STATE(2194)] = 83951, + [SMALL_STATE(2195)] = 83958, + [SMALL_STATE(2196)] = 83965, + [SMALL_STATE(2197)] = 83972, + [SMALL_STATE(2198)] = 83979, + [SMALL_STATE(2199)] = 83986, + [SMALL_STATE(2200)] = 83993, + [SMALL_STATE(2201)] = 84000, + [SMALL_STATE(2202)] = 84007, + [SMALL_STATE(2203)] = 84014, + [SMALL_STATE(2204)] = 84021, + [SMALL_STATE(2205)] = 84028, + [SMALL_STATE(2206)] = 84035, + [SMALL_STATE(2207)] = 84042, + [SMALL_STATE(2208)] = 84049, + [SMALL_STATE(2209)] = 84056, + [SMALL_STATE(2210)] = 84063, + [SMALL_STATE(2211)] = 84070, + [SMALL_STATE(2212)] = 84077, + [SMALL_STATE(2213)] = 84084, + [SMALL_STATE(2214)] = 84091, + [SMALL_STATE(2215)] = 84098, + [SMALL_STATE(2216)] = 84105, + [SMALL_STATE(2217)] = 84112, + [SMALL_STATE(2218)] = 84119, + [SMALL_STATE(2219)] = 84126, + [SMALL_STATE(2220)] = 84133, + [SMALL_STATE(2221)] = 84140, + [SMALL_STATE(2222)] = 84147, + [SMALL_STATE(2223)] = 84154, + [SMALL_STATE(2224)] = 84161, + [SMALL_STATE(2225)] = 84168, + [SMALL_STATE(2226)] = 84175, + [SMALL_STATE(2227)] = 84182, + [SMALL_STATE(2228)] = 84189, + [SMALL_STATE(2229)] = 84196, + [SMALL_STATE(2230)] = 84203, + [SMALL_STATE(2231)] = 84210, + [SMALL_STATE(2232)] = 84217, + [SMALL_STATE(2233)] = 84224, + [SMALL_STATE(2234)] = 84231, + [SMALL_STATE(2235)] = 84238, + [SMALL_STATE(2236)] = 84245, + [SMALL_STATE(2237)] = 84252, + [SMALL_STATE(2238)] = 84259, + [SMALL_STATE(2239)] = 84266, + [SMALL_STATE(2240)] = 84273, + [SMALL_STATE(2241)] = 84280, + [SMALL_STATE(2242)] = 84287, + [SMALL_STATE(2243)] = 84294, + [SMALL_STATE(2244)] = 84301, + [SMALL_STATE(2245)] = 84308, + [SMALL_STATE(2246)] = 84315, + [SMALL_STATE(2247)] = 84322, + [SMALL_STATE(2248)] = 84329, + [SMALL_STATE(2249)] = 84336, + [SMALL_STATE(2250)] = 84343, + [SMALL_STATE(2251)] = 84350, + [SMALL_STATE(2252)] = 84357, + [SMALL_STATE(2253)] = 84364, + [SMALL_STATE(2254)] = 84371, + [SMALL_STATE(2255)] = 84378, + [SMALL_STATE(2256)] = 84385, + [SMALL_STATE(2257)] = 84392, + [SMALL_STATE(2258)] = 84399, + [SMALL_STATE(2259)] = 84406, + [SMALL_STATE(2260)] = 84413, + [SMALL_STATE(2261)] = 84420, + [SMALL_STATE(2262)] = 84427, + [SMALL_STATE(2263)] = 84434, + [SMALL_STATE(2264)] = 84441, + [SMALL_STATE(2265)] = 84448, + [SMALL_STATE(2266)] = 84455, + [SMALL_STATE(2267)] = 84462, + [SMALL_STATE(2268)] = 84469, + [SMALL_STATE(2269)] = 84476, + [SMALL_STATE(2270)] = 84483, + [SMALL_STATE(2271)] = 84490, + [SMALL_STATE(2272)] = 84497, + [SMALL_STATE(2273)] = 84504, + [SMALL_STATE(2274)] = 84511, + [SMALL_STATE(2275)] = 84518, + [SMALL_STATE(2276)] = 84525, + [SMALL_STATE(2277)] = 84532, + [SMALL_STATE(2278)] = 84539, + [SMALL_STATE(2279)] = 84546, + [SMALL_STATE(2280)] = 84551, + [SMALL_STATE(2281)] = 84558, + [SMALL_STATE(2282)] = 84565, + [SMALL_STATE(2283)] = 84572, + [SMALL_STATE(2284)] = 84579, + [SMALL_STATE(2285)] = 84586, + [SMALL_STATE(2286)] = 84593, + [SMALL_STATE(2287)] = 84600, + [SMALL_STATE(2288)] = 84607, + [SMALL_STATE(2289)] = 84614, + [SMALL_STATE(2290)] = 84621, + [SMALL_STATE(2291)] = 84628, + [SMALL_STATE(2292)] = 84635, + [SMALL_STATE(2293)] = 84642, + [SMALL_STATE(2294)] = 84649, + [SMALL_STATE(2295)] = 84656, + [SMALL_STATE(2296)] = 84663, + [SMALL_STATE(2297)] = 84670, + [SMALL_STATE(2298)] = 84677, + [SMALL_STATE(2299)] = 84684, + [SMALL_STATE(2300)] = 84691, + [SMALL_STATE(2301)] = 84698, + [SMALL_STATE(2302)] = 84705, + [SMALL_STATE(2303)] = 84712, + [SMALL_STATE(2304)] = 84719, + [SMALL_STATE(2305)] = 84726, + [SMALL_STATE(2306)] = 84733, + [SMALL_STATE(2307)] = 84740, + [SMALL_STATE(2308)] = 84747, + [SMALL_STATE(2309)] = 84754, + [SMALL_STATE(2310)] = 84761, + [SMALL_STATE(2311)] = 84768, + [SMALL_STATE(2312)] = 84775, + [SMALL_STATE(2313)] = 84782, + [SMALL_STATE(2314)] = 84789, + [SMALL_STATE(2315)] = 84796, + [SMALL_STATE(2316)] = 84803, + [SMALL_STATE(2317)] = 84810, + [SMALL_STATE(2318)] = 84817, + [SMALL_STATE(2319)] = 84824, + [SMALL_STATE(2320)] = 84831, + [SMALL_STATE(2321)] = 84838, + [SMALL_STATE(2322)] = 84845, + [SMALL_STATE(2323)] = 84852, + [SMALL_STATE(2324)] = 84859, + [SMALL_STATE(2325)] = 84866, + [SMALL_STATE(2326)] = 84873, + [SMALL_STATE(2327)] = 84880, + [SMALL_STATE(2328)] = 84887, + [SMALL_STATE(2329)] = 84894, + [SMALL_STATE(2330)] = 84901, + [SMALL_STATE(2331)] = 84908, + [SMALL_STATE(2332)] = 84912, + [SMALL_STATE(2333)] = 84916, + [SMALL_STATE(2334)] = 84920, + [SMALL_STATE(2335)] = 84924, + [SMALL_STATE(2336)] = 84928, + [SMALL_STATE(2337)] = 84932, + [SMALL_STATE(2338)] = 84936, + [SMALL_STATE(2339)] = 84940, + [SMALL_STATE(2340)] = 84944, + [SMALL_STATE(2341)] = 84948, + [SMALL_STATE(2342)] = 84952, + [SMALL_STATE(2343)] = 84956, + [SMALL_STATE(2344)] = 84960, + [SMALL_STATE(2345)] = 84964, + [SMALL_STATE(2346)] = 84968, + [SMALL_STATE(2347)] = 84972, + [SMALL_STATE(2348)] = 84976, + [SMALL_STATE(2349)] = 84980, + [SMALL_STATE(2350)] = 84984, + [SMALL_STATE(2351)] = 84988, + [SMALL_STATE(2352)] = 84992, + [SMALL_STATE(2353)] = 84996, + [SMALL_STATE(2354)] = 85000, + [SMALL_STATE(2355)] = 85004, + [SMALL_STATE(2356)] = 85008, + [SMALL_STATE(2357)] = 85012, + [SMALL_STATE(2358)] = 85016, + [SMALL_STATE(2359)] = 85020, + [SMALL_STATE(2360)] = 85024, + [SMALL_STATE(2361)] = 85028, + [SMALL_STATE(2362)] = 85032, + [SMALL_STATE(2363)] = 85036, + [SMALL_STATE(2364)] = 85040, + [SMALL_STATE(2365)] = 85044, + [SMALL_STATE(2366)] = 85048, + [SMALL_STATE(2367)] = 85052, + [SMALL_STATE(2368)] = 85056, + [SMALL_STATE(2369)] = 85060, + [SMALL_STATE(2370)] = 85064, + [SMALL_STATE(2371)] = 85068, + [SMALL_STATE(2372)] = 85072, + [SMALL_STATE(2373)] = 85076, + [SMALL_STATE(2374)] = 85080, + [SMALL_STATE(2375)] = 85084, + [SMALL_STATE(2376)] = 85088, + [SMALL_STATE(2377)] = 85092, + [SMALL_STATE(2378)] = 85096, + [SMALL_STATE(2379)] = 85100, + [SMALL_STATE(2380)] = 85104, + [SMALL_STATE(2381)] = 85108, + [SMALL_STATE(2382)] = 85112, + [SMALL_STATE(2383)] = 85116, + [SMALL_STATE(2384)] = 85120, + [SMALL_STATE(2385)] = 85124, + [SMALL_STATE(2386)] = 85128, + [SMALL_STATE(2387)] = 85132, + [SMALL_STATE(2388)] = 85136, + [SMALL_STATE(2389)] = 85140, + [SMALL_STATE(2390)] = 85144, + [SMALL_STATE(2391)] = 85148, + [SMALL_STATE(2392)] = 85152, + [SMALL_STATE(2393)] = 85156, + [SMALL_STATE(2394)] = 85160, + [SMALL_STATE(2395)] = 85164, + [SMALL_STATE(2396)] = 85168, + [SMALL_STATE(2397)] = 85172, + [SMALL_STATE(2398)] = 85176, + [SMALL_STATE(2399)] = 85180, + [SMALL_STATE(2400)] = 85184, + [SMALL_STATE(2401)] = 85188, + [SMALL_STATE(2402)] = 85192, + [SMALL_STATE(2403)] = 85196, + [SMALL_STATE(2404)] = 85200, + [SMALL_STATE(2405)] = 85204, + [SMALL_STATE(2406)] = 85208, + [SMALL_STATE(2407)] = 85212, + [SMALL_STATE(2408)] = 85216, + [SMALL_STATE(2409)] = 85220, + [SMALL_STATE(2410)] = 85224, + [SMALL_STATE(2411)] = 85228, + [SMALL_STATE(2412)] = 85232, + [SMALL_STATE(2413)] = 85236, + [SMALL_STATE(2414)] = 85240, + [SMALL_STATE(2415)] = 85244, + [SMALL_STATE(2416)] = 85248, + [SMALL_STATE(2417)] = 85252, + [SMALL_STATE(2418)] = 85256, + [SMALL_STATE(2419)] = 85260, + [SMALL_STATE(2420)] = 85264, + [SMALL_STATE(2421)] = 85268, + [SMALL_STATE(2422)] = 85272, + [SMALL_STATE(2423)] = 85276, + [SMALL_STATE(2424)] = 85280, + [SMALL_STATE(2425)] = 85284, + [SMALL_STATE(2426)] = 85288, + [SMALL_STATE(2427)] = 85292, + [SMALL_STATE(2428)] = 85296, + [SMALL_STATE(2429)] = 85300, + [SMALL_STATE(2430)] = 85304, + [SMALL_STATE(2431)] = 85308, + [SMALL_STATE(2432)] = 85312, + [SMALL_STATE(2433)] = 85316, + [SMALL_STATE(2434)] = 85320, + [SMALL_STATE(2435)] = 85324, + [SMALL_STATE(2436)] = 85328, + [SMALL_STATE(2437)] = 85332, + [SMALL_STATE(2438)] = 85336, + [SMALL_STATE(2439)] = 85340, + [SMALL_STATE(2440)] = 85344, + [SMALL_STATE(2441)] = 85348, + [SMALL_STATE(2442)] = 85352, + [SMALL_STATE(2443)] = 85356, + [SMALL_STATE(2444)] = 85360, + [SMALL_STATE(2445)] = 85364, + [SMALL_STATE(2446)] = 85368, + [SMALL_STATE(2447)] = 85372, + [SMALL_STATE(2448)] = 85376, + [SMALL_STATE(2449)] = 85380, + [SMALL_STATE(2450)] = 85384, + [SMALL_STATE(2451)] = 85388, + [SMALL_STATE(2452)] = 85392, + [SMALL_STATE(2453)] = 85396, + [SMALL_STATE(2454)] = 85400, + [SMALL_STATE(2455)] = 85404, + [SMALL_STATE(2456)] = 85408, + [SMALL_STATE(2457)] = 85412, + [SMALL_STATE(2458)] = 85416, + [SMALL_STATE(2459)] = 85420, + [SMALL_STATE(2460)] = 85424, + [SMALL_STATE(2461)] = 85428, + [SMALL_STATE(2462)] = 85432, + [SMALL_STATE(2463)] = 85436, + [SMALL_STATE(2464)] = 85440, + [SMALL_STATE(2465)] = 85444, + [SMALL_STATE(2466)] = 85448, + [SMALL_STATE(2467)] = 85452, + [SMALL_STATE(2468)] = 85456, + [SMALL_STATE(2469)] = 85460, + [SMALL_STATE(2470)] = 85464, + [SMALL_STATE(2471)] = 85468, + [SMALL_STATE(2472)] = 85472, + [SMALL_STATE(2473)] = 85476, + [SMALL_STATE(2474)] = 85480, + [SMALL_STATE(2475)] = 85484, + [SMALL_STATE(2476)] = 85488, + [SMALL_STATE(2477)] = 85492, + [SMALL_STATE(2478)] = 85496, + [SMALL_STATE(2479)] = 85500, + [SMALL_STATE(2480)] = 85504, + [SMALL_STATE(2481)] = 85508, + [SMALL_STATE(2482)] = 85512, + [SMALL_STATE(2483)] = 85516, + [SMALL_STATE(2484)] = 85520, + [SMALL_STATE(2485)] = 85524, + [SMALL_STATE(2486)] = 85528, + [SMALL_STATE(2487)] = 85532, + [SMALL_STATE(2488)] = 85536, + [SMALL_STATE(2489)] = 85540, + [SMALL_STATE(2490)] = 85544, + [SMALL_STATE(2491)] = 85548, + [SMALL_STATE(2492)] = 85552, + [SMALL_STATE(2493)] = 85556, + [SMALL_STATE(2494)] = 85560, + [SMALL_STATE(2495)] = 85564, + [SMALL_STATE(2496)] = 85568, + [SMALL_STATE(2497)] = 85572, + [SMALL_STATE(2498)] = 85576, + [SMALL_STATE(2499)] = 85580, + [SMALL_STATE(2500)] = 85584, + [SMALL_STATE(2501)] = 85588, + [SMALL_STATE(2502)] = 85592, + [SMALL_STATE(2503)] = 85596, + [SMALL_STATE(2504)] = 85600, + [SMALL_STATE(2505)] = 85604, + [SMALL_STATE(2506)] = 85608, + [SMALL_STATE(2507)] = 85612, + [SMALL_STATE(2508)] = 85616, + [SMALL_STATE(2509)] = 85620, + [SMALL_STATE(2510)] = 85624, + [SMALL_STATE(2511)] = 85628, + [SMALL_STATE(2512)] = 85632, + [SMALL_STATE(2513)] = 85636, + [SMALL_STATE(2514)] = 85640, + [SMALL_STATE(2515)] = 85644, + [SMALL_STATE(2516)] = 85648, + [SMALL_STATE(2517)] = 85652, + [SMALL_STATE(2518)] = 85656, + [SMALL_STATE(2519)] = 85660, + [SMALL_STATE(2520)] = 85664, + [SMALL_STATE(2521)] = 85668, + [SMALL_STATE(2522)] = 85672, + [SMALL_STATE(2523)] = 85676, + [SMALL_STATE(2524)] = 85680, + [SMALL_STATE(2525)] = 85684, + [SMALL_STATE(2526)] = 85688, + [SMALL_STATE(2527)] = 85692, + [SMALL_STATE(2528)] = 85696, + [SMALL_STATE(2529)] = 85700, + [SMALL_STATE(2530)] = 85704, + [SMALL_STATE(2531)] = 85708, + [SMALL_STATE(2532)] = 85712, + [SMALL_STATE(2533)] = 85716, + [SMALL_STATE(2534)] = 85720, + [SMALL_STATE(2535)] = 85724, + [SMALL_STATE(2536)] = 85728, + [SMALL_STATE(2537)] = 85732, + [SMALL_STATE(2538)] = 85736, + [SMALL_STATE(2539)] = 85740, + [SMALL_STATE(2540)] = 85744, + [SMALL_STATE(2541)] = 85748, + [SMALL_STATE(2542)] = 85752, + [SMALL_STATE(2543)] = 85756, + [SMALL_STATE(2544)] = 85760, + [SMALL_STATE(2545)] = 85764, + [SMALL_STATE(2546)] = 85768, + [SMALL_STATE(2547)] = 85772, + [SMALL_STATE(2548)] = 85776, + [SMALL_STATE(2549)] = 85780, + [SMALL_STATE(2550)] = 85784, + [SMALL_STATE(2551)] = 85788, + [SMALL_STATE(2552)] = 85792, + [SMALL_STATE(2553)] = 85796, + [SMALL_STATE(2554)] = 85800, + [SMALL_STATE(2555)] = 85804, + [SMALL_STATE(2556)] = 85808, + [SMALL_STATE(2557)] = 85812, + [SMALL_STATE(2558)] = 85816, + [SMALL_STATE(2559)] = 85820, + [SMALL_STATE(2560)] = 85824, + [SMALL_STATE(2561)] = 85828, + [SMALL_STATE(2562)] = 85832, + [SMALL_STATE(2563)] = 85836, + [SMALL_STATE(2564)] = 85840, + [SMALL_STATE(2565)] = 85844, + [SMALL_STATE(2566)] = 85848, + [SMALL_STATE(2567)] = 85852, + [SMALL_STATE(2568)] = 85856, + [SMALL_STATE(2569)] = 85860, + [SMALL_STATE(2570)] = 85864, + [SMALL_STATE(2571)] = 85868, + [SMALL_STATE(2572)] = 85872, + [SMALL_STATE(2573)] = 85876, + [SMALL_STATE(2574)] = 85880, + [SMALL_STATE(2575)] = 85884, + [SMALL_STATE(2576)] = 85888, + [SMALL_STATE(2577)] = 85892, }; 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(678), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(678), - [210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(732), - [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(732), - [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(645), - [219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(430), - [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(641), - [225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2368), - [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(490), - [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(483), - [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(643), - [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(476), - [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2357), - [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2527), - [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2355), - [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2528), - [252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(899), - [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(456), - [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(459), - [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2039), - [264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), - [266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(29), - [269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1254), - [272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(359), - [275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2223), - [278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(356), - [281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(353), - [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(336), - [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(339), - [290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(341), - [293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(985), - [296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(980), - [299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2226), - [302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(462), - [305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(322), - [308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(325), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 1), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2512), - [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(479), - [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(474), - [338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(637), - [341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(470), - [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2510), - [347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2506), - [350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2505), - [353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2495), - [356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2), - [359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1248), - [362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(357), - [365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2148), - [368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(955), - [371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(924), - [374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2152), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), + [201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(801), + [204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(806), + [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(806), + [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(660), + [213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(429), + [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(637), + [219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2530), + [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(546), + [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(482), + [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(643), + [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(465), + [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2512), + [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2510), + [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2506), + [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2505), + [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(825), + [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(456), + [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(458), + [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2030), + [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(9), + [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1218), + [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(357), + [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2235), + [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(332), + [273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(347), + [276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(336), + [279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(348), + [282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(360), + [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(924), + [288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(925), + [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2148), + [294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(462), + [297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(309), + [300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(310), + [303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 1), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2368), + [314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(542), + [317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(472), + [320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(642), + [323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(479), + [326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2356), + [329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2527), + [332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2355), + [335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2528), + [338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(33), + [341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1204), + [344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(340), + [347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2287), + [350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1001), + [353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1000), + [356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2208), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), [377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__newline, 1), [379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__newline, 1), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), [389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__newline, 2), [391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__newline, 2), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), - [399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__ignore_matching_tokens, 2), - [401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(76), - [404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(77), - [407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__newline, 3), - [409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__newline, 3), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__newline, 3), + [399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__newline, 3), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), + [405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__ignore_matching_tokens, 2), + [407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(77), + [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(81), [415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 3), [417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 3), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), [447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__soft_line_break_repeat1, 1), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_end_newline, 1), - [455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paragraph_end_newline, 1), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), - [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 2), - [497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 2), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(94), - [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(99), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_7, 6), - [559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_7, 6), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_end_newline_repeat1, 2), - [565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__paragraph_end_newline_repeat1, 2), - [567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__paragraph_end_newline_repeat1, 2), SHIFT_REPEAT(104), - [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 5), - [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 5), - [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_1, 5), - [576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_1, 5), - [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_2, 5), - [614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_2, 5), - [616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_3, 5), - [618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_3, 5), - [620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_4, 5), - [622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_4, 5), - [624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(655), - [627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(662), - [630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(662), - [633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(644), - [636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(426), - [639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(590), - [642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(482), - [645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(484), - [648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(636), - [651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(477), - [654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(132), - [657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(624), - [660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(654), - [663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(2039), - [666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(461), - [669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(294), - [672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(180), - [675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), - [677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_5, 5), - [679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_5, 5), - [681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_6, 5), - [683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_6, 5), - [685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 4), - [687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_parenthesis, 4), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_7, 9), - [693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_7, 9), - [695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_6, 9), - [697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_6, 9), - [699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 4), - [701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_dot, 4), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 4), - [707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_star, 4), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 4), - [747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_minus, 4), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_7, 8), - [753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_7, 8), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 4), - [759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_plus, 4), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_6, 8), - [765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_6, 8), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_7, 4), - [777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_7, 4), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_7, 7), - [783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_7, 7), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_6, 7), - [789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_6, 7), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_7, 5), - [795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_7, 5), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_6, 4), - [801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_6, 4), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 5), - [809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_plus, 5), - [811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_6, 6), - [813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_6, 6), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 5), - [819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_minus, 5), - [821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_5, 4), - [823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_5, 4), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 5), - [829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_parenthesis, 5), - [831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 5), - [833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_dot, 5), - [835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 5), - [837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_star, 5), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__paragraph_end_newline_repeat1, 2), SHIFT_REPEAT(170), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_4, 4), - [864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_4, 4), - [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_3, 4), - [872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_3, 4), - [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(653), - [883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(646), - [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(646), - [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(642), - [892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(429), - [895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(630), - [898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(468), - [901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(465), - [904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(640), - [907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(478), - [910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(200), - [913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(597), - [916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(650), - [919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(2039), - [922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(457), - [925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(111), - [928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(280), - [931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), - [933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_2, 4), - [935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_2, 4), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_1, 4), - [953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_1, 4), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(202), - [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 2), - [976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 2), - [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__indented_chunk, 4), - [982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__indented_chunk, 4), - [984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 3), - [986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 3), - [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__indented_chunk, 3), - [992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__indented_chunk, 3), - [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 4), - [1000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 4), - [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_end_newline, 2), - [1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paragraph_end_newline, 2), - [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [1012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_end_newline_repeat1, 1), - [1014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__paragraph_end_newline_repeat1, 1), - [1016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__soft_line_break_repeat1, 1), REDUCE(aux_sym__paragraph_end_newline_repeat1, 1), - [1019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__indented_chunk, 2), - [1021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__indented_chunk, 2), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [1033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 3), - [1035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_parenthesis, 3), - [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 3), - [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_dot, 3), - [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 3), - [1049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_star, 3), - [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [1053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 3), - [1055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_minus, 3), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [1059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 3), - [1061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_plus, 3), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [1069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_7, 3), - [1071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_7, 3), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [1075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_6, 3), - [1077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_6, 3), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [1081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_5, 3), - [1083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_5, 3), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [1087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_4, 3), - [1089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_4, 3), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [1093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_3, 3), - [1095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_3, 3), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [1099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_2, 3), - [1101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_2, 3), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_1, 3), - [1107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_1, 3), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [1111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(655), - [1114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(662), - [1117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(662), - [1120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(644), - [1123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(426), - [1126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(590), - [1129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(482), - [1132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(484), - [1135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(636), - [1138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(477), - [1141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(254), - [1144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(624), - [1147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(654), - [1150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(2039), - [1153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(461), - [1156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(294), - [1159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(180), - [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), - [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [1168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(653), - [1171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(646), - [1174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(646), - [1177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(642), - [1180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(429), - [1183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(630), - [1186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(468), - [1189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(465), - [1192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(640), - [1195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(478), - [1198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(258), - [1201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(597), - [1204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(650), - [1207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(2039), - [1210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(457), - [1213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(111), - [1216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(280), - [1219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_end_newline, 1), + [451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paragraph_end_newline, 1), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 2), + [467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 2), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), + [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), + [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(96), + [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(101), + [555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_6, 6), + [557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_6, 6), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__indented_chunk, 4), + [595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__indented_chunk, 4), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 4), + [633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 4), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 4), + [639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_parenthesis, 4), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(647), + [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(653), + [649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(653), + [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(644), + [655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(427), + [658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(623), + [661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(549), + [664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(476), + [667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(641), + [670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(474), + [673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(261), + [676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(630), + [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(662), + [682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(2030), + [685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(459), + [688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(281), + [691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(195), + [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), + [696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_end_newline, 2), + [698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paragraph_end_newline, 2), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_end_newline_repeat1, 1), + [704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__paragraph_end_newline_repeat1, 1), + [706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__soft_line_break_repeat1, 1), REDUCE(aux_sym__paragraph_end_newline_repeat1, 1), + [709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 4), + [711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_dot, 4), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 4), + [717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_star, 4), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 3), + [723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_parenthesis, 3), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 3), + [729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_dot, 3), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 4), + [735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_minus, 4), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 3), + [743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_star, 3), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 3), + [749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_minus, 3), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 3), + [755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_plus, 3), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 4), + [761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_plus, 4), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_7, 4), + [767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_7, 4), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_end_newline_repeat1, 2), + [775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__paragraph_end_newline_repeat1, 2), + [777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__paragraph_end_newline_repeat1, 2), SHIFT_REPEAT(132), + [780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 5), + [782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 5), + [784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_7, 3), + [786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_7, 3), + [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_6, 3), + [792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_6, 3), + [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_5, 3), + [798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_5, 3), + [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_4, 3), + [804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_4, 3), + [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_3, 3), + [810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_3, 3), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_2, 3), + [816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_2, 3), + [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_1, 3), + [822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_1, 3), + [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_1, 4), + [828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_1, 4), + [830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_6, 4), + [832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_6, 4), + [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_5, 4), + [838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_5, 4), + [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__indented_chunk, 3), + [846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__indented_chunk, 3), + [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_2, 4), + [852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_2, 4), + [854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 3), + [856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 3), + [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_1, 5), + [862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_1, 5), + [864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_2, 5), + [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_2, 5), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_3, 5), + [872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_3, 5), + [874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_4, 4), + [876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_4, 4), + [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_4, 5), + [882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_4, 5), + [884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(160), + [887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_5, 5), + [889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_5, 5), + [891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_3, 4), + [893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_3, 4), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_6, 5), + [899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_6, 5), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_7, 5), + [909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_7, 5), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 5), + [919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_plus, 5), + [921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 5), + [923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_minus, 5), + [925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 5), + [927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_star, 5), + [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 5), + [931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_dot, 5), + [933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 5), + [935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_parenthesis, 5), + [937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_7, 9), + [939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_7, 9), + [941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_6, 9), + [943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_6, 9), + [945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_7, 8), + [947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_7, 8), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__indented_chunk, 2), + [955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__indented_chunk, 2), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 2), + [961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 2), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_6, 8), + [967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_6, 8), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(648), + [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(661), + [997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(661), + [1000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(638), + [1003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(430), + [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(590), + [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(485), + [1012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(470), + [1015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(639), + [1018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(469), + [1021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(103), + [1024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(595), + [1027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(649), + [1030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(2030), + [1033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(461), + [1036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(111), + [1039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(282), + [1042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), + [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [1050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(201), + [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [1055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_7, 7), + [1057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_7, 7), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [1061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_6, 7), + [1063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_6, 7), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [1071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_7, 6), + [1073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_7, 6), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [1121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(647), + [1124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(653), + [1127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(653), + [1130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(644), + [1133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(427), + [1136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(623), + [1139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(549), + [1142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(476), + [1145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(641), + [1148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(474), + [1151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(253), + [1154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(630), + [1157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(662), + [1160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(2030), + [1163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(459), + [1166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(281), + [1169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(195), + [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), + [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [1176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(648), + [1179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(661), + [1182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(661), + [1185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(638), + [1188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(430), + [1191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(590), + [1194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(485), + [1197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(470), + [1200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(639), + [1203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(469), + [1206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(257), + [1209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(595), + [1212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(649), + [1215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(2030), + [1218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(461), + [1221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(111), + [1224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(282), + [1227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [1245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(275), - [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2), - [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_indented_code_block_repeat1, 2), - [1252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2), SHIFT_REPEAT(1248), - [1255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2), SHIFT_REPEAT(2152), - [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 4, .dynamic_precedence = 10), - [1260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 4, .dynamic_precedence = 10), SHIFT(1134), - [1263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 4, .dynamic_precedence = 10), - [1265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 4, .dynamic_precedence = 10), SHIFT(1135), - [1268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 4, .dynamic_precedence = 10), SHIFT(1230), - [1271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 4, .dynamic_precedence = 10), SHIFT(2056), - [1274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_link_reference_definition, 4, .dynamic_precedence = 10), SHIFT(2056), - [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [1285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 10), - [1287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 10), SHIFT(1134), - [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 10), - [1292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 10), SHIFT(1135), - [1295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 10), SHIFT(1230), - [1298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 10), SHIFT(2056), - [1301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 10), SHIFT(2056), - [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 10), - [1310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 10), SHIFT(1134), - [1313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 10), - [1315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 10), SHIFT(1135), - [1318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 10), SHIFT(1230), - [1321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 10), SHIFT(2056), - [1324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 10), SHIFT(2056), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [1331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indented_code_block, 1), - [1333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indented_code_block, 1), - [1335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 10), - [1337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 10), SHIFT(1134), - [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 10), - [1342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 10), SHIFT(1135), - [1345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 10), SHIFT(1230), - [1348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 10), SHIFT(2056), - [1351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 10), SHIFT(2056), - [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indented_code_block, 2), - [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indented_code_block, 2), - [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 5, .dynamic_precedence = 10), - [1362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 5, .dynamic_precedence = 10), SHIFT(1134), - [1365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 5, .dynamic_precedence = 10), - [1367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 5, .dynamic_precedence = 10), SHIFT(1135), - [1370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 5, .dynamic_precedence = 10), SHIFT(1230), - [1373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 5, .dynamic_precedence = 10), SHIFT(2056), - [1376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_link_reference_definition, 5, .dynamic_precedence = 10), SHIFT(2056), - [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_plus, 1), - [1393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_plus, 1), - [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_minus, 1), - [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_minus, 1), - [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_star, 1), - [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_star, 1), - [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_parenthesis, 1), - [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_parenthesis, 1), - [1407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(678), - [1410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(732), - [1413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(732), - [1416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(645), - [1419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(431), - [1422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(641), - [1425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(569), - [1428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(573), - [1431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(661), - [1434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(575), - [1437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(899), - [1440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(635), - [1443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(792), - [1446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(2039), - [1449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(462), - [1452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(322), - [1455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(325), - [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2), - [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_plus_repeat1, 2), - [1462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2), SHIFT_REPEAT(353), - [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_dot, 1), - [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_dot, 1), - [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_minus_repeat1, 2), - [1471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_minus_repeat1, 2), - [1473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_minus_repeat1, 2), SHIFT_REPEAT(356), - [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2), - [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_star_repeat1, 2), - [1480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2), SHIFT_REPEAT(336), - [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dot_repeat1, 2), - [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_dot_repeat1, 2), - [1487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dot_repeat1, 2), SHIFT_REPEAT(341), - [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2), - [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2), - [1498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2), SHIFT_REPEAT(339), - [1501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(655), - [1504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(662), - [1507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(662), - [1510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(644), - [1513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(426), - [1516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(590), - [1519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(482), - [1522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(484), - [1525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(636), - [1528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(477), - [1531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(107), - [1534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(624), - [1537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(654), - [1540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(2039), - [1543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(461), - [1546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(294), - [1549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(180), - [1552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2), SHIFT_REPEAT(1254), - [1555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2), SHIFT_REPEAT(2226), - [1558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(653), - [1561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(646), - [1564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(646), - [1567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(642), - [1570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(429), - [1573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(630), - [1576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(468), - [1579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(465), - [1582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(640), - [1585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(478), - [1588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(122), - [1591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(597), - [1594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(650), - [1597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(457), - [1600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(111), - [1603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(280), - [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block, 1), - [1626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block, 1), - [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [1245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__paragraph_end_newline_repeat1, 2), SHIFT_REPEAT(274), + [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dot_repeat1, 2), + [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_dot_repeat1, 2), + [1254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dot_repeat1, 2), SHIFT_REPEAT(360), + [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_star, 1), + [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_star, 1), + [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_minus, 1), + [1265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_minus, 1), + [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [1271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_parenthesis, 1), + [1273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_parenthesis, 1), + [1275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 10), + [1277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 10), SHIFT(1177), + [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 10), + [1282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 10), SHIFT(1176), + [1285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 10), SHIFT(1193), + [1288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 10), SHIFT(2042), + [1291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 10), SHIFT(2042), + [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indented_code_block, 1), + [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indented_code_block, 1), + [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 4, .dynamic_precedence = 10), + [1302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 4, .dynamic_precedence = 10), SHIFT(1177), + [1305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 4, .dynamic_precedence = 10), + [1307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 4, .dynamic_precedence = 10), SHIFT(1176), + [1310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 4, .dynamic_precedence = 10), SHIFT(1193), + [1313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 4, .dynamic_precedence = 10), SHIFT(2042), + [1316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_link_reference_definition, 4, .dynamic_precedence = 10), SHIFT(2042), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_plus, 1), + [1323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_plus, 1), + [1325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(801), + [1328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(806), + [1331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(806), + [1334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(660), + [1337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(431), + [1340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(637), + [1343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(609), + [1346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(572), + [1349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(646), + [1352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(571), + [1355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(825), + [1358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(635), + [1361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(725), + [1364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(2030), + [1367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(462), + [1370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(309), + [1373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(310), + [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2), + [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_indented_code_block_repeat1, 2), + [1382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2), SHIFT_REPEAT(1204), + [1385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2), SHIFT_REPEAT(2208), + [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2), + [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_plus_repeat1, 2), + [1394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2), SHIFT_REPEAT(347), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2), + [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2), + [1403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2), SHIFT_REPEAT(348), + [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2), + [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_star_repeat1, 2), + [1414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2), SHIFT_REPEAT(336), + [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_minus_repeat1, 2), + [1419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_minus_repeat1, 2), + [1421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_minus_repeat1, 2), SHIFT_REPEAT(332), + [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_dot, 1), + [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_dot, 1), + [1428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(647), + [1431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(653), + [1434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(653), + [1437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(644), + [1440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(427), + [1443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(623), + [1446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(549), + [1449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(476), + [1452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(641), + [1455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(474), + [1458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(107), + [1461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(630), + [1464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(662), + [1467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(2030), + [1470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(459), + [1473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(281), + [1476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(195), + [1479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(648), + [1482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(661), + [1485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(661), + [1488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(638), + [1491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(430), + [1494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(590), + [1497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(485), + [1500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(470), + [1503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(639), + [1506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(469), + [1509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(122), + [1512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(595), + [1515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(649), + [1518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(461), + [1521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(111), + [1524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(282), + [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 10), + [1529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 10), SHIFT(1177), + [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 10), + [1534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 10), SHIFT(1176), + [1537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 10), SHIFT(1193), + [1540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 10), SHIFT(2042), + [1543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 10), SHIFT(2042), + [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indented_code_block, 2), + [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indented_code_block, 2), + [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 10), + [1554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 10), SHIFT(1177), + [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 10), + [1559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 10), SHIFT(1176), + [1562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 10), SHIFT(1193), + [1565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 10), SHIFT(2042), + [1568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 10), SHIFT(2042), + [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 5, .dynamic_precedence = 10), + [1577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 5, .dynamic_precedence = 10), SHIFT(1177), + [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 5, .dynamic_precedence = 10), + [1582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 5, .dynamic_precedence = 10), SHIFT(1176), + [1585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 5, .dynamic_precedence = 10), SHIFT(1193), + [1588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 5, .dynamic_precedence = 10), SHIFT(2042), + [1591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_link_reference_definition, 5, .dynamic_precedence = 10), SHIFT(2042), + [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [1596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2), SHIFT_REPEAT(1218), + [1599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2), SHIFT_REPEAT(2148), + [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_minus, 1), + [1624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_minus, 1), + [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_star, 1), [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_star, 1), - [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paragraph, 2), - [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paragraph, 2), - [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_parenthesis, 1), - [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_parenthesis, 1), - [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_dot, 1), - [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_dot, 1), - [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_plus, 1), - [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_plus, 1), - [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_minus, 1), - [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_minus, 1), - [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [1700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(779), - [1703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(427), - [1706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(604), - [1709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(485), - [1712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(486), - [1715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(639), - [1718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(473), - [1721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(369), - [1724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(621), - [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline, 1), - [1729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(502), - [1732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(388), - [1735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(367), - [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [1764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(678), - [1767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(732), - [1770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(732), - [1773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(645), - [1776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(431), - [1779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(641), - [1782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(569), - [1785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(573), - [1788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(661), - [1791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(575), - [1794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(850), - [1797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(635), - [1800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(792), - [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), - [1805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(497), - [1808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(363), - [1811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(372), - [1814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(794), - [1817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(646), - [1820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(646), - [1823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(642), - [1826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(428), - [1829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(615), - [1832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(488), - [1835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(466), - [1838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(638), - [1841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(469), - [1844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(366), - [1847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(626), - [1850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(650), - [1853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(503), - [1856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(373), - [1859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(384), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), - [1864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(794), - [1867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(428), - [1870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(615), - [1873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(488), - [1876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(466), - [1879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(638), - [1882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(469), - [1885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(362), - [1888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(626), - [1891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(503), - [1894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(373), - [1897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(384), - [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [1908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(794), - [1911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(428), - [1914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(615), - [1917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(488), - [1920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(466), - [1923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(638), - [1926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(469), - [1929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(371), - [1932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(626), - [1935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(503), - [1938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(373), - [1941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(384), - [1944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(779), - [1947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(427), - [1950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(604), - [1953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(485), - [1956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(486), - [1959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(639), - [1962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(473), - [1965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(374), - [1968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(621), - [1971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(502), - [1974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(388), - [1977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(367), - [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [1982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(779), - [1985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(662), - [1988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(662), - [1991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(644), - [1994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(427), - [1997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(604), - [2000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(485), - [2003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(486), - [2006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(639), - [2009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(473), - [2012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(375), - [2015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(621), - [2018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(654), - [2021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(502), - [2024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(388), - [2027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(367), - [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), + [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block, 1), + [1638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block, 1), + [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paragraph, 2), + [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paragraph, 2), + [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_plus, 1), + [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_plus, 1), + [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_parenthesis, 1), + [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_parenthesis, 1), + [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_dot, 1), + [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_dot, 1), + [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [1700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(753), + [1703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(653), + [1706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(653), + [1709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(644), + [1712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(428), + [1715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(628), + [1718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(516), + [1721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(467), + [1724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(640), + [1727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(473), + [1730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(363), + [1733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(615), + [1736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(662), + [1739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(525), + [1742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(402), + [1745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(367), + [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), + [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [1760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [1764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [1780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(756), + [1783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(426), + [1786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(624), + [1789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(514), + [1792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(481), + [1795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(636), + [1798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(466), + [1801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(365), + [1804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(631), + [1807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(528), + [1810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(374), + [1813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(410), + [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [1818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(753), + [1821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(428), + [1824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(628), + [1827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(516), + [1830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(467), + [1833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(640), + [1836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(473), + [1839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(371), + [1842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(615), + [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline, 1), + [1847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(525), + [1850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(402), + [1853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(367), + [1856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(756), + [1859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(426), + [1862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(624), + [1865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(514), + [1868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(481), + [1871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(636), + [1874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(466), + [1877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(375), + [1880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(631), + [1883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(528), + [1886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(374), + [1889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(410), + [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [1894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(756), + [1897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(661), + [1900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(661), + [1903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(638), + [1906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(426), + [1909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(624), + [1912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(514), + [1915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(481), + [1918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(636), + [1921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(466), + [1924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(372), + [1927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(631), + [1930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(649), + [1933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(528), + [1936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(374), + [1939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(410), + [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), + [1944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(801), + [1947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(806), + [1950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(806), + [1953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(660), + [1956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(431), + [1959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(637), + [1962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(609), + [1965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(572), + [1968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(646), + [1971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(571), + [1974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(827), + [1977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(635), + [1980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(725), + [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), + [1985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(581), + [1988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(369), + [1991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(370), + [1994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(753), + [1997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(428), + [2000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(628), + [2003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(516), + [2006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(467), + [2009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(640), + [2012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(473), + [2015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(366), + [2018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(615), + [2021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(525), + [2024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(402), + [2027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(367), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), [2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 6), [2034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_code_block, 6), - [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atx_heading, 3, .production_id = 3), - [2038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atx_heading, 3, .production_id = 3), - [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 13, .dynamic_precedence = 20), - [2042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 13, .dynamic_precedence = 20), - [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 8), - [2046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_code_block, 8), - [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 20), - [2050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 20), - [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 12, .dynamic_precedence = 20), - [2054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 12, .dynamic_precedence = 20), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [2058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 5), - [2060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_code_block, 5), - [2062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 11, .dynamic_precedence = 20), - [2064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 11, .dynamic_precedence = 20), - [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 7), - [2068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_code_block, 7), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 4), - [2074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_code_block, 4), - [2076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 10, .dynamic_precedence = 20), - [2078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 10, .dynamic_precedence = 20), - [2080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 20), - [2082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 20), - [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 9, .dynamic_precedence = 20), - [2086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 9, .dynamic_precedence = 20), - [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 9), - [2090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_code_block, 9), - [2092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 20), - [2094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 20), - [2096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 1), - [2098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 1), - [2100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atx_heading, 2), - [2102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atx_heading, 2), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [2132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setext_heading, 3, .production_id = 6), - [2134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setext_heading, 3, .production_id = 6), - [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_thematic_break, 2), - [2138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_thematic_break, 2), - [2140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_html_block, 1), - [2142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_html_block, 1), - [2144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blank_line, 2), - [2146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blank_line, 2), - [2148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_html_block, 2), - [2150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_html_block, 2), - [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 3), - [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_code_block, 3), - [2158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(663), - [2161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(896), - [2164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(896), - [2167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(717), - [2170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(648), - [2173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(2269), - [2176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(512), - [2179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(580), - [2182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(713), - [2185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(582), - [2188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(956), - [2191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(635), - [2194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(792), - [2197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(463), - [2200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(451), - [2203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(440), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [2208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(663), - [2211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(896), - [2214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(896), - [2217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(717), - [2220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(648), - [2223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(2269), - [2226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(512), - [2229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(580), - [2232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(713), - [2235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(582), - [2238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(956), - [2241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(635), - [2244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(792), - [2247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(463), - [2250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(451), - [2253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(440), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [2258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(663), - [2261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(896), - [2264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(896), - [2267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(717), - [2270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(648), - [2273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(2269), - [2276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(512), - [2279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(580), - [2282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(713), - [2285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(582), - [2288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(994), - [2291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(956), + [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_thematic_break, 2), + [2038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_thematic_break, 2), + [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_html_block, 1), + [2042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_html_block, 1), + [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 5), + [2046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_code_block, 5), + [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_html_block, 2), + [2050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_html_block, 2), + [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 20), + [2054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 20), + [2056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 1), + [2058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 1), + [2060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blank_line, 2), + [2062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blank_line, 2), + [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, 13, .dynamic_precedence = 20), + [2070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 13, .dynamic_precedence = 20), + [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 7), + [2074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_code_block, 7), + [2076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 20), + [2078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 20), + [2080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 4), + [2082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_code_block, 4), + [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 9), + [2086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_code_block, 9), + [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 12, .dynamic_precedence = 20), + [2090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 12, .dynamic_precedence = 20), + [2092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 3), + [2094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_code_block, 3), + [2096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setext_heading, 3, .production_id = 6), + [2098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setext_heading, 3, .production_id = 6), + [2100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 11, .dynamic_precedence = 20), + [2102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 11, .dynamic_precedence = 20), + [2104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atx_heading, 2), + [2106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atx_heading, 2), + [2108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 20), + [2110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 20), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [2144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 9, .dynamic_precedence = 20), + [2146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 9, .dynamic_precedence = 20), + [2148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 10, .dynamic_precedence = 20), + [2150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 10, .dynamic_precedence = 20), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atx_heading, 3, .production_id = 3), + [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atx_heading, 3, .production_id = 3), + [2158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(795), + [2161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(838), + [2164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(838), + [2167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(793), + [2170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(655), + [2173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(2279), + [2176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(598), + [2179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(490), + [2182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(784), + [2185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(491), + [2188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(963), + [2191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(635), + [2194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(725), + [2197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(464), + [2200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(451), + [2203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(436), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [2208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(795), + [2211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(838), + [2214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(838), + [2217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(793), + [2220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(655), + [2223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(2279), + [2226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(598), + [2229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(490), + [2232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(784), + [2235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(491), + [2238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(963), + [2241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(635), + [2244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(725), + [2247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(464), + [2250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(451), + [2253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(436), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [2258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(795), + [2261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(838), + [2264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(838), + [2267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(793), + [2270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(655), + [2273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(2279), + [2276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(598), + [2279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(490), + [2282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(784), + [2285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(491), + [2288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(961), + [2291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(963), [2294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(635), - [2297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(792), - [2300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(656), - [2303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(463), + [2297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(725), + [2300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(650), + [2303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(464), [2306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(451), - [2309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(440), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [2309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(436), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [2374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(749), - [2377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(838), - [2380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(838), - [2383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(747), - [2386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(649), - [2389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(472), - [2392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(475), - [2395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(734), - [2398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(481), - [2401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(436), - [2404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(597), - [2407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(650), - [2410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(2039), - [2413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(460), - [2416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(450), - [2419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(453), - [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [2430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [2432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [2434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [2436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [2438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [2456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [2458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [2460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [2462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [2464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [2466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [2484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [2492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [2496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [2508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(749), - [2511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(838), - [2514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(838), - [2517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(747), - [2520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(649), - [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), - [2525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(472), - [2528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(475), - [2531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(734), - [2534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(481), - [2537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(438), - [2540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(597), - [2543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(650), - [2546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(2039), - [2549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(460), - [2552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(450), - [2555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(453), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [2560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(749), - [2563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(838), - [2566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(838), - [2569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(747), - [2572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(649), - [2575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(472), - [2578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(475), - [2581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(734), - [2584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(481), - [2587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(445), - [2590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(597), - [2593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(650), - [2596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(2039), - [2599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(460), - [2602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(450), - [2605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(453), - [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [2618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(756), - [2621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(824), - [2624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(824), - [2627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(754), - [2630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(660), - [2633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(471), - [2636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(480), - [2639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(752), - [2642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(487), - [2645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(447), - [2648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(624), - [2651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(654), - [2654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(2039), - [2657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(458), - [2660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(452), - [2663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(442), - [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), - [2668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(663), - [2671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(896), - [2674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(896), - [2677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(717), - [2680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(648), - [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), - [2685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(512), - [2688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(580), - [2691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(713), - [2694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(582), - [2697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(956), - [2700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(635), - [2703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(792), - [2706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(2039), - [2709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(463), - [2712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(451), - [2715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(440), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [2720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(756), - [2723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(824), - [2726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(824), - [2729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(754), - [2732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(660), - [2735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(471), - [2738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(480), - [2741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(752), - [2744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(487), - [2747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(449), - [2750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(624), - [2753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(654), - [2756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(2039), - [2759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(458), - [2762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(452), - [2765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(442), - [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), - [2770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(756), - [2773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(824), - [2776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(824), - [2779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(754), - [2782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(660), - [2785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(471), - [2788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(480), - [2791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(752), - [2794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(487), - [2797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(437), - [2800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(624), - [2803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(654), - [2806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(458), - [2809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(452), - [2812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(442), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [2374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(669), + [2377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(859), + [2380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(859), + [2383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(665), + [2386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(652), + [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), + [2391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(552), + [2394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(468), + [2397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(738), + [2400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(478), + [2403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(448), + [2406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(595), + [2409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(649), + [2412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(2030), + [2415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(460), + [2418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(440), + [2421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(452), + [2424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(669), + [2427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(859), + [2430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(859), + [2433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(665), + [2436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(652), + [2439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(552), + [2442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(468), + [2445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(738), + [2448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(478), + [2451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(437), + [2454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(595), + [2457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(649), + [2460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(2030), + [2463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(460), + [2466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(440), + [2469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(452), + [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [2478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [2480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [2482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [2484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [2530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(675), + [2533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(858), + [2536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(858), + [2539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(674), + [2542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(658), + [2545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(548), + [2548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(475), + [2551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(671), + [2554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(480), + [2557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(441), + [2560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(630), + [2563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(662), + [2566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(2030), + [2569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(457), + [2572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(453), + [2575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(445), + [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [2588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [2612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(675), + [2615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(858), + [2618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(858), + [2621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(674), + [2624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(658), + [2627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(548), + [2630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(475), + [2633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(671), + [2636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(480), + [2639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(444), + [2642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(630), + [2645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(662), + [2648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(2030), + [2651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(457), + [2654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(453), + [2657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(445), + [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), + [2662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(669), + [2665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(859), + [2668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(859), + [2671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(665), + [2674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(652), + [2677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(552), + [2680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(468), + [2683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(738), + [2686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(478), + [2689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(449), + [2692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(595), + [2695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(649), + [2698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(2030), + [2701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(460), + [2704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(440), + [2707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(452), + [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [2714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(795), + [2717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(838), + [2720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(838), + [2723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(793), + [2726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(655), + [2729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), + [2731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(598), + [2734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(490), + [2737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(784), + [2740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(491), + [2743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(963), + [2746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(635), + [2749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(725), + [2752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(2030), + [2755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(464), + [2758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(451), + [2761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(436), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [2770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(675), + [2773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(858), + [2776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(858), + [2779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(674), + [2782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(658), + [2785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(548), + [2788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(475), + [2791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(671), + [2794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(480), + [2797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(438), + [2800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(630), + [2803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(662), + [2806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(457), + [2809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(453), + [2812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(445), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), [2819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline, 1), - [2821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(977), - [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [2826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), - [2828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), - [2834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), - [2836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), - [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [2821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(992), + [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), + [2826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), + [2828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), + [2834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), + [2836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), + [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__whitespace, 1), [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__whitespace, 1), - [2844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__whitespace, 1), SHIFT(2039), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [2849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1681), - [2852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1681), - [2855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), - [2857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1688), - [2860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1688), - [2863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1117), - [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [2868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1681), - [2871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1681), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [2876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), - [2878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1688), - [2881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1688), - [2884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1137), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [2889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1681), - [2892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1681), - [2895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), - [2897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1688), - [2900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1688), - [2903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1117), - [2906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1681), - [2909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1681), - [2912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), - [2914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1688), - [2917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1688), - [2920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1137), - [2923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1681), - [2926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1681), - [2929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1688), - [2932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1688), - [2935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1162), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [2940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1681), - [2943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1681), - [2946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), - [2948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1688), - [2951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1688), - [2954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1162), - [2957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__whitespace, 2), - [2959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__whitespace, 2), - [2961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1687), - [2964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1687), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [2969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1700), - [2972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1700), - [2975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1344), - [2978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1293), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [2987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1199), - [2990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1199), - [2993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1707), - [2996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1682), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [3001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1699), - [3004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1699), - [3007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1347), - [3010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1232), - [3013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1698), - [3016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1698), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [3021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1685), - [3024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1685), - [3027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1341), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [3032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1698), - [3035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1698), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [3040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1685), - [3043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1685), - [3046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1553), - [3049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1307), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [3054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1239), - [3057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1239), - [3060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1711), - [3063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1682), - [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [3070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1699), - [3073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1699), - [3076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1499), - [3079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1232), - [3082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1199), - [3085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1199), - [3088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1707), - [3091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1682), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [3096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1699), - [3099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1699), - [3102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1347), - [3105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1232), - [3108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1698), - [3111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1698), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [3116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1685), - [3119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1685), - [3122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1490), - [3125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1687), - [3128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1687), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [3133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1700), - [3136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1700), - [3139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1369), - [3142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1293), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [3147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1687), - [3150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1687), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [3155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1700), - [3158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1700), - [3161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1344), - [3164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1293), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [3169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1307), - [3172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1307), - [3175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1251), - [3178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1251), - [3181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1692), - [3184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1682), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [3189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1699), - [3192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1699), - [3195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1547), - [3198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1232), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [3203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1687), - [3206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1687), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [3211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1700), - [3214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1700), - [3217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1496), - [3220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1293), - [3223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1698), - [3226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1698), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [3233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1685), - [3236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1685), - [3239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1341), - [3242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1307), - [3245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1239), - [3248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1239), - [3251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1711), - [3254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1682), - [3257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1699), - [3260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1699), - [3263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1499), - [3266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1232), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [3271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1687), - [3274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1687), - [3277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1700), - [3280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1700), - [3283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1496), - [3286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1293), - [3289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1698), - [3292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1698), - [3295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1685), - [3298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1685), - [3301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1490), - [3304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1307), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [3319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1593), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [3328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1628), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [3333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1571), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [3352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1251), - [3355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1251), - [3358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1692), - [3361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1682), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [3366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1699), - [3369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1699), - [3372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1547), - [3375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1232), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [3408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(541), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [3415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(549), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [3446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1687), - [3449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1687), - [3452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1700), - [3455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1700), - [3458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1369), - [3461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1293), - [3464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1698), - [3467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1698), - [3470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1685), - [3473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1685), - [3476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1553), - [3479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1307), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [2844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__whitespace, 1), SHIFT(2030), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [2849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1687), + [2852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1687), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), + [2859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1708), + [2862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1708), + [2865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1175), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [2870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1687), + [2873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1687), + [2876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), + [2878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1708), + [2881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1708), + [2884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1175), + [2887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1687), + [2890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1687), + [2893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), + [2895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1708), + [2898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1708), + [2901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1167), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [2906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1687), + [2909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1687), + [2912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), + [2914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1708), + [2917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1708), + [2920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1167), + [2923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1687), + [2926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1687), + [2929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1708), + [2932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1708), + [2935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1183), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__whitespace, 2), + [2942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__whitespace, 2), + [2944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1687), + [2947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1687), + [2950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), + [2952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1708), + [2955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1708), + [2958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1183), + [2961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1686), + [2964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1686), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [2969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1684), + [2972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1684), + [2975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1346), + [2978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1289), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [2983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1686), + [2986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1686), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [2991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1684), + [2994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1684), + [2997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1540), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [3002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1695), + [3005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1695), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [3010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1700), + [3013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1700), + [3016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1339), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [3021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1695), + [3024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1695), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [3031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1700), + [3034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1700), + [3037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1508), + [3040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1295), + [3043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1289), + [3046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1695), + [3049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1695), + [3052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1700), + [3055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1700), + [3058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1508), + [3061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1295), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [3068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1695), + [3071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1695), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [3076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1700), + [3079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1700), + [3082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1335), + [3085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1295), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [3090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1686), + [3093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1686), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [3098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1684), + [3101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1684), + [3104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1548), + [3107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1289), + [3110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1695), + [3113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1695), + [3116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1700), + [3119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1700), + [3122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1339), + [3125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1295), + [3128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1295), + [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [3135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1686), + [3138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1686), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [3145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1684), + [3148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1684), + [3151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1540), + [3154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1289), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [3159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1686), + [3162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1686), + [3165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1684), + [3168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1684), + [3171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1548), + [3174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1289), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [3181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1288), + [3184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1288), + [3187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1768), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [3192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1694), + [3195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1694), + [3198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1507), + [3201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1234), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [3206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1695), + [3209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1695), + [3212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1700), + [3215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1700), + [3218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1335), + [3221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1295), + [3224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1686), + [3227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1686), + [3230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1684), + [3233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1684), + [3236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1346), + [3239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1289), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [3270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1242), + [3273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1242), + [3276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1767), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [3281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1694), + [3284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1694), + [3287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1362), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [3296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1573), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [3303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1571), + [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [3316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1207), + [3319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1207), + [3322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1769), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [3327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1694), + [3330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1694), + [3333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1334), + [3336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1234), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [3347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1242), + [3350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1242), + [3353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1767), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [3358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1694), + [3361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1694), + [3364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1362), + [3367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1234), + [3370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1234), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [3375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1288), + [3378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1288), + [3381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1768), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [3386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1694), + [3389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1694), + [3392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1507), + [3395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1234), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [3428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(575), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [3433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(580), + [3436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1623), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [3453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1207), + [3456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1207), + [3459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1769), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [3464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1694), + [3467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1694), + [3470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1334), + [3473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1234), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [3528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(632), - [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [3535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1740), - [3538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1740), - [3541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1353), - [3544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1740), - [3547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1740), - [3550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1353), - [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [3555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1740), - [3558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1740), - [3561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1353), - [3564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(2288), - [3567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1945), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [3572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(2323), - [3575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1945), - [3578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(2237), - [3581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1945), - [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description_non_empty, 4, .production_id = 7), - [3586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_description_non_empty, 4, .production_id = 7), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [3592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(291), - [3595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(298), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 3, .dynamic_precedence = 10), - [3608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 3, .dynamic_precedence = 10), - [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_link, 3, .dynamic_precedence = 10), - [3612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_link, 3, .dynamic_precedence = 10), - [3614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 3, .dynamic_precedence = 10), - [3616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 3, .dynamic_precedence = 10), - [3618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_comment, 5, .dynamic_precedence = 100), - [3620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_comment, 5, .dynamic_precedence = 100), - [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cdata_section, 3, .dynamic_precedence = 100), - [3624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cdata_section, 3, .dynamic_precedence = 100), - [3626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 3, .dynamic_precedence = 100), - [3628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration, 3, .dynamic_precedence = 100), - [3630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__processing_instruction, 3, .dynamic_precedence = 100), - [3632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__processing_instruction, 3, .dynamic_precedence = 100), - [3634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_comment, 3, .dynamic_precedence = 100), - [3636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_comment, 3, .dynamic_precedence = 100), - [3638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_label, 3), - [3640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_label, 3), - [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_text_non_empty, 3, .production_id = 5), - [3644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_text_non_empty, 3, .production_id = 5), - [3646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__open_tag, 5, .dynamic_precedence = 100), - [3648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__open_tag, 5, .dynamic_precedence = 100), - [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__closing_tag, 5, .dynamic_precedence = 100), - [3652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__closing_tag, 5, .dynamic_precedence = 100), - [3654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(282), - [3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__code_span, 2, .dynamic_precedence = 100, .production_id = 2), - [3659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__code_span, 2, .dynamic_precedence = 100, .production_id = 2), - [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_html_tag, 1), - [3663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_html_tag, 1), - [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 5, .dynamic_precedence = 10), - [3667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 5, .dynamic_precedence = 10), - [3669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_collapsed_reference_link, 3, .dynamic_precedence = 10), - [3671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_collapsed_reference_link, 3, .dynamic_precedence = 10), - [3673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 4, .dynamic_precedence = 10), - [3675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 4, .dynamic_precedence = 10), - [3677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 5, .dynamic_precedence = 10), - [3679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 5, .dynamic_precedence = 10), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [3683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 4, .dynamic_precedence = 10), - [3685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 4, .dynamic_precedence = 10), - [3687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(698), - [3690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__open_tag, 6, .dynamic_precedence = 100), - [3692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__open_tag, 6, .dynamic_precedence = 100), - [3694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__open_tag, 3, .dynamic_precedence = 100), - [3696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__open_tag, 3, .dynamic_precedence = 100), - [3698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_underscore, 3, .dynamic_precedence = 2, .production_id = 4), - [3700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_underscore, 3, .dynamic_precedence = 2, .production_id = 4), - [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_comment, 6, .dynamic_precedence = 100), - [3704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_comment, 6, .dynamic_precedence = 100), - [3706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, .production_id = 1), - [3708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1, .production_id = 1), - [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [3712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, .production_id = 1), - [3714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1, .production_id = 1), - [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [3718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcut_link, 1, .dynamic_precedence = 10), - [3720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcut_link, 1, .dynamic_precedence = 10), - [3722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__link_text, 1, .dynamic_precedence = 10), REDUCE(sym_shortcut_link, 1, .dynamic_precedence = 10), - [3725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image, 1), - [3727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image, 1), - [3729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_shortcut_link, 1, .dynamic_precedence = 30), - [3731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_shortcut_link, 1, .dynamic_precedence = 30), - [3733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_shortcut_link, 1, .dynamic_precedence = 30), REDUCE(sym__image_description, 1, .dynamic_precedence = 30), - [3736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 6, .dynamic_precedence = 10), - [3738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 6, .dynamic_precedence = 10), - [3740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 6, .dynamic_precedence = 10), - [3742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 6, .dynamic_precedence = 10), - [3744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1740), - [3747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1740), - [3750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1353), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [3755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 7, .dynamic_precedence = 10), - [3757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 7, .dynamic_precedence = 10), - [3759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(2237), - [3762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1945), - [3765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_underscore, 3, .dynamic_precedence = 1, .production_id = 4), - [3767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_underscore, 3, .dynamic_precedence = 1, .production_id = 4), - [3769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 7, .dynamic_precedence = 10), - [3771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 7, .dynamic_precedence = 10), - [3773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__closing_tag, 4, .dynamic_precedence = 100), - [3775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__closing_tag, 4, .dynamic_precedence = 100), - [3777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__open_tag, 4, .dynamic_precedence = 100), - [3779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__open_tag, 4, .dynamic_precedence = 100), - [3781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_comment, 4, .dynamic_precedence = 100), - [3783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_comment, 4, .dynamic_precedence = 100), - [3785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 4, .dynamic_precedence = 100), - [3787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration, 4, .dynamic_precedence = 100), - [3789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 8, .dynamic_precedence = 10), - [3791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 8, .dynamic_precedence = 10), - [3793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 8, .dynamic_precedence = 10), - [3795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 8, .dynamic_precedence = 10), - [3797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1740), - [3800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1740), - [3803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1353), - [3806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_star, 3, .dynamic_precedence = 2, .production_id = 4), - [3808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_star, 3, .dynamic_precedence = 2, .production_id = 4), - [3810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hard_line_break, 2, .dynamic_precedence = 1), - [3812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hard_line_break, 2, .dynamic_precedence = 1), - [3814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_star, 3, .dynamic_precedence = 1, .production_id = 4), - [3816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_star, 3, .dynamic_precedence = 1, .production_id = 4), - [3818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_comment, 2, .dynamic_precedence = 100), - [3820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_comment, 2, .dynamic_precedence = 100), - [3822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__processing_instruction, 2, .dynamic_precedence = 100), - [3824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__processing_instruction, 2, .dynamic_precedence = 100), - [3826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cdata_section, 2, .dynamic_precedence = 100), - [3828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cdata_section, 2, .dynamic_precedence = 100), - [3830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__code_span, 3, .dynamic_precedence = 100, .production_id = 2), - [3832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__code_span, 3, .dynamic_precedence = 100, .production_id = 2), - [3834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_link, 2, .dynamic_precedence = 20), - [3836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_link, 2, .dynamic_precedence = 20), - [3838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_full_reference_link, 2, .dynamic_precedence = 10), - [3840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_full_reference_link, 2, .dynamic_precedence = 10), - [3842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(2288), - [3845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1945), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [3852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1740), - [3855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1740), - [3858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1353), - [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [3863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(2323), - [3866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1945), - [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [3873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description, 3, .dynamic_precedence = 30), - [3875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 4), - [3877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 4), - [3879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 2), - [3881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 2), - [3883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(290), - [3886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_star, 2), - [3888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_star, 2), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [3892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(288), - [3895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__code_span_no_newline, 2, .dynamic_precedence = 100, .production_id = 2), - [3897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__code_span_no_newline, 2, .dynamic_precedence = 100, .production_id = 2), - [3899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_newline_no_star, 1, .production_id = 1), - [3901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_newline_no_star, 1, .production_id = 1), - [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [3905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_newline_no_underscore, 1, .production_id = 1), - [3907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_newline_no_underscore, 1, .production_id = 1), - [3909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__code_span_no_newline, 3, .dynamic_precedence = 100, .production_id = 2), - [3911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__code_span_no_newline, 3, .dynamic_precedence = 100, .production_id = 2), - [3913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_star_no_newline, 3, .dynamic_precedence = 1, .production_id = 4), - [3915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_star_no_newline, 3, .dynamic_precedence = 1, .production_id = 4), - [3917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_star_no_newline, 3, .dynamic_precedence = 2, .production_id = 4), - [3919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_star_no_newline, 3, .dynamic_precedence = 2, .production_id = 4), - [3921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_underscore_no_newline, 3, .dynamic_precedence = 1, .production_id = 4), - [3923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_underscore_no_newline, 3, .dynamic_precedence = 1, .production_id = 4), - [3925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_underscore_no_newline, 3, .dynamic_precedence = 2, .production_id = 4), - [3927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_underscore_no_newline, 3, .dynamic_precedence = 2, .production_id = 4), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [3931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_newline, 1, .production_id = 1), - [3933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_newline, 1, .production_id = 1), - [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [3953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(1043), - [3956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(1043), - [3959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_label_repeat1, 2), - [3961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(845), - [3964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(1045), - [3967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(1045), - [3970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(855), - [3973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description, 1, .dynamic_precedence = 30), - [3975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 1), - [3977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_no_newline, 1), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [3997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element, 1, .production_id = 1), - [3999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element, 1, .production_id = 1), - [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [4003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline, 1), - [4005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline, 1), - [4007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline, 2), - [4009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline, 2), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [4023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, .production_id = 1), - [4025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, .production_id = 1), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [4037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [4043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_star_no_link, 3, .dynamic_precedence = 2, .production_id = 4), - [4045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_star_no_link, 3, .dynamic_precedence = 2, .production_id = 4), - [4047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_underscore_no_link, 3, .dynamic_precedence = 2, .production_id = 4), - [4049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_underscore_no_link, 3, .dynamic_precedence = 2, .production_id = 4), - [4051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_underscore_no_link, 3, .dynamic_precedence = 1, .production_id = 4), - [4053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_underscore_no_link, 3, .dynamic_precedence = 1, .production_id = 4), - [4055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_star_no_link, 3, .dynamic_precedence = 1, .production_id = 4), - [4057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_star_no_link, 3, .dynamic_precedence = 1, .production_id = 4), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [4063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(953), - [4066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 1), - [4068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 1), - [4070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, .production_id = 1), - [4072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1, .production_id = 1), - [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [4078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [4134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [4144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, .production_id = 1), - [4146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1, .production_id = 1), - [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [4180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), REDUCE(aux_sym_link_label_repeat1, 1), - [4183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), REDUCE(aux_sym_link_label_repeat1, 1), - [4186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), - [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_link, 2), - [4200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_link, 2), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 2), - [4274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 2), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [4308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 2), - [4310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 2), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [4320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [4326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), SHIFT(1580), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [4331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), SHIFT(1604), - [4334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), SHIFT(1604), - [4337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), SHIFT(1036), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [4344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [4348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), SHIFT(1589), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [4353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_label_repeat1, 1), - [4355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_label_repeat1, 1), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [4365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [4403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [4421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1048), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [4586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [4594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), - [4596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), - [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [4600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), - [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [4604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [4610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1), - [4612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 1), - [4614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1), SHIFT(2002), - [4617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1), SHIFT(1661), - [4620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1), SHIFT(1977), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [4631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1), - [4633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 1), - [4635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1), SHIFT(2002), - [4638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1), SHIFT(1661), - [4641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1), SHIFT(1977), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [4646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_span_repeat1, 2), SHIFT_REPEAT(1681), - [4649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_span_repeat1, 2), SHIFT_REPEAT(1688), - [4652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__code_span_repeat1, 2), SHIFT_REPEAT(1688), - [4655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_span_repeat1, 2), SHIFT_REPEAT(1121), - [4658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_span_repeat1, 2), SHIFT_REPEAT(2039), - [4661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__code_span_repeat1, 2), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [4665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(1589), - [4668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2), - [4670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(1589), - [4673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(1124), - [4676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(1604), - [4679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(1604), - [4682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(1036), - [4685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_info_string_repeat1, 2), SHIFT_REPEAT(1575), - [4688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_info_string_repeat1, 2), SHIFT_REPEAT(1575), - [4691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_info_string_repeat1, 2), SHIFT_REPEAT(1125), - [4694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_info_string_repeat1, 2), SHIFT_REPEAT(1604), - [4697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_info_string_repeat1, 2), SHIFT_REPEAT(1604), - [4700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_info_string_repeat1, 2), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [4704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_fence_content, 1), - [4706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(1580), - [4709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(1580), - [4712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2), - [4714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(1127), - [4717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(1604), - [4720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(1604), - [4723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(1036), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [4728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [4732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_info_string, 2), - [4734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1659), - [4737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1676), - [4740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1676), - [4743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1130), - [4746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1176), - [4749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [4771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1143), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [4780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2), - [4782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_inline_link_repeat1, 2), - [4784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(1604), - [4787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(1604), - [4790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(2039), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [4827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_info_string, 1), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [4843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1633), - [4846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1662), - [4849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1662), - [4852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1181), - [4855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1151), - [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [4864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [4870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [4884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [4890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [4904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [4910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [4920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [4926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [4936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [4942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [4950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1194), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [4977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1202), - [4980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_destination, 3, .dynamic_precedence = 10), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [4984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_destination, 3, .dynamic_precedence = 10), - [4986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_5_repeat1, 2), SHIFT_REPEAT(1632), - [4989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_5_repeat1, 2), SHIFT_REPEAT(1632), - [4992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_5_repeat1, 2), SHIFT_REPEAT(2487), - [4995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_5_repeat1, 2), SHIFT_REPEAT(1660), - [4998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_5_repeat1, 2), SHIFT_REPEAT(1660), - [5001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_5_repeat1, 2), SHIFT_REPEAT(1204), - [5004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_5_repeat1, 2), SHIFT_REPEAT(1150), - [5007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_5_repeat1, 2), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [5031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), SHIFT_REPEAT(1627), - [5034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2), SHIFT_REPEAT(1627), - [5037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), SHIFT_REPEAT(2002), - [5040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), - [5042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), SHIFT_REPEAT(1213), - [5045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2), - [5047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_destination, 2, .dynamic_precedence = 10), - [5049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_destination, 2, .dynamic_precedence = 10), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [5091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(1638), - [5094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(1638), - [5097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2), - [5099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(1229), - [5102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(1604), - [5105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(1604), - [5108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(1036), - [5111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_3_repeat1, 2), SHIFT_REPEAT(1635), - [5114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_3_repeat1, 2), SHIFT_REPEAT(1635), - [5117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_3_repeat1, 2), SHIFT_REPEAT(2451), - [5120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_3_repeat1, 2), SHIFT_REPEAT(1636), - [5123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_3_repeat1, 2), SHIFT_REPEAT(1636), - [5126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_3_repeat1, 2), SHIFT_REPEAT(1231), - [5129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_3_repeat1, 2), SHIFT_REPEAT(1152), - [5132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_3_repeat1, 2), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [5184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_2_repeat1, 2), SHIFT_REPEAT(1647), - [5187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_2_repeat1, 2), SHIFT_REPEAT(1647), - [5190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_2_repeat1, 2), SHIFT_REPEAT(2439), - [5193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_2_repeat1, 2), SHIFT_REPEAT(1640), - [5196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_2_repeat1, 2), SHIFT_REPEAT(1640), - [5199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_2_repeat1, 2), SHIFT_REPEAT(1243), - [5202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_2_repeat1, 2), SHIFT_REPEAT(1153), - [5205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_2_repeat1, 2), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [5235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_1_repeat1, 2), SHIFT_REPEAT(1654), - [5238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_1_repeat1, 2), SHIFT_REPEAT(1654), - [5241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_1_repeat1, 2), SHIFT_REPEAT(2423), - [5244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_1_repeat1, 2), SHIFT_REPEAT(1650), - [5247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_1_repeat1, 2), SHIFT_REPEAT(1650), - [5250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_1_repeat1, 2), SHIFT_REPEAT(1253), - [5253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_1_repeat1, 2), SHIFT_REPEAT(1155), - [5256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_1_repeat1, 2), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [5324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1277), - [5327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2), SHIFT_REPEAT(1705), - [5330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2), SHIFT_REPEAT(1708), - [5333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__indented_chunk_repeat1, 2), SHIFT_REPEAT(1708), - [5336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2), SHIFT_REPEAT(1279), - [5339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2), SHIFT_REPEAT(1187), - [5342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [5348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1282), - [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [5355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1286), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [5362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1290), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [5373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1295), - [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [3490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(611), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [3517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1719), + [3520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1719), + [3523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(2294), + [3526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1944), + [3529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1355), + [3532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1719), + [3535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1719), + [3538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1355), + [3541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1719), + [3544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1719), + [3547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1355), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [3554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(2323), + [3557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1944), + [3560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description_non_empty, 4, .production_id = 7), + [3562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_description_non_empty, 4, .production_id = 7), + [3564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(320), + [3567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(276), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [3580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(2223), + [3583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1944), + [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image, 1), + [3588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image, 1), + [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 5, .dynamic_precedence = 10), + [3592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 5, .dynamic_precedence = 10), + [3594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(2294), + [3597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1944), + [3600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__code_span, 2, .dynamic_precedence = 100, .production_id = 2), + [3602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__code_span, 2, .dynamic_precedence = 100, .production_id = 2), + [3604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__open_tag, 5, .dynamic_precedence = 100), + [3606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__open_tag, 5, .dynamic_precedence = 100), + [3608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__closing_tag, 5, .dynamic_precedence = 100), + [3610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__closing_tag, 5, .dynamic_precedence = 100), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [3614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hard_line_break, 2, .dynamic_precedence = 1), + [3616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hard_line_break, 2, .dynamic_precedence = 1), + [3618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1719), + [3621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1719), + [3624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1355), + [3627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 4, .dynamic_precedence = 10), + [3629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 4, .dynamic_precedence = 10), + [3631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 4, .dynamic_precedence = 10), + [3633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 4, .dynamic_precedence = 10), + [3635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(2323), + [3638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1944), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [3643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(676), + [3646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, .production_id = 1), + [3648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1, .production_id = 1), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [3652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, .production_id = 1), + [3654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1, .production_id = 1), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [3658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_comment, 5, .dynamic_precedence = 100), + [3660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_comment, 5, .dynamic_precedence = 100), + [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description, 3, .dynamic_precedence = 30), + [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_comment, 2, .dynamic_precedence = 100), + [3666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_comment, 2, .dynamic_precedence = 100), + [3668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 2), + [3670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 2), + [3672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__closing_tag, 4, .dynamic_precedence = 100), + [3674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__closing_tag, 4, .dynamic_precedence = 100), + [3676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_star, 2), + [3678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_star, 2), + [3680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cdata_section, 2, .dynamic_precedence = 100), + [3682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cdata_section, 2, .dynamic_precedence = 100), + [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 4), + [3686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 4), + [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_link, 2, .dynamic_precedence = 20), + [3690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_link, 2, .dynamic_precedence = 20), + [3692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_full_reference_link, 2, .dynamic_precedence = 10), + [3694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_full_reference_link, 2, .dynamic_precedence = 10), + [3696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 8, .dynamic_precedence = 10), + [3698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 8, .dynamic_precedence = 10), + [3700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 5, .dynamic_precedence = 10), + [3702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 5, .dynamic_precedence = 10), + [3704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__open_tag, 6, .dynamic_precedence = 100), + [3706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__open_tag, 6, .dynamic_precedence = 100), + [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_html_tag, 1), + [3710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_html_tag, 1), + [3712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__code_span, 3, .dynamic_precedence = 100, .production_id = 2), + [3714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__code_span, 3, .dynamic_precedence = 100, .production_id = 2), + [3716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_shortcut_link, 1, .dynamic_precedence = 30), + [3718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_shortcut_link, 1, .dynamic_precedence = 30), + [3720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_shortcut_link, 1, .dynamic_precedence = 30), REDUCE(sym__image_description, 1, .dynamic_precedence = 30), + [3723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 4, .dynamic_precedence = 100), + [3725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration, 4, .dynamic_precedence = 100), + [3727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_star, 3, .dynamic_precedence = 1, .production_id = 4), + [3729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_star, 3, .dynamic_precedence = 1, .production_id = 4), + [3731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_star, 3, .dynamic_precedence = 2, .production_id = 4), + [3733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_star, 3, .dynamic_precedence = 2, .production_id = 4), + [3735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcut_link, 1, .dynamic_precedence = 10), + [3737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcut_link, 1, .dynamic_precedence = 10), + [3739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__link_text, 1, .dynamic_precedence = 10), REDUCE(sym_shortcut_link, 1, .dynamic_precedence = 10), + [3742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_comment, 6, .dynamic_precedence = 100), + [3744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_comment, 6, .dynamic_precedence = 100), + [3746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_underscore, 3, .dynamic_precedence = 1, .production_id = 4), + [3748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_underscore, 3, .dynamic_precedence = 1, .production_id = 4), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [3754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__open_tag, 4, .dynamic_precedence = 100), + [3756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__open_tag, 4, .dynamic_precedence = 100), + [3758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 6, .dynamic_precedence = 10), + [3760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 6, .dynamic_precedence = 10), + [3762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 6, .dynamic_precedence = 10), + [3764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 6, .dynamic_precedence = 10), + [3766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_underscore, 3, .dynamic_precedence = 2, .production_id = 4), + [3768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_underscore, 3, .dynamic_precedence = 2, .production_id = 4), + [3770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__open_tag, 3, .dynamic_precedence = 100), + [3772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__open_tag, 3, .dynamic_precedence = 100), + [3774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1719), + [3777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1719), + [3780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1355), + [3783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_text_non_empty, 3, .production_id = 5), + [3785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_text_non_empty, 3, .production_id = 5), + [3787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_label, 3), + [3789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_label, 3), + [3791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__processing_instruction, 2, .dynamic_precedence = 100), + [3793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__processing_instruction, 2, .dynamic_precedence = 100), + [3795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_comment, 4, .dynamic_precedence = 100), + [3797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_comment, 4, .dynamic_precedence = 100), + [3799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 7, .dynamic_precedence = 10), + [3801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 7, .dynamic_precedence = 10), + [3803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(313), + [3806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(304), + [3809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 7, .dynamic_precedence = 10), + [3811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 7, .dynamic_precedence = 10), + [3813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_comment, 3, .dynamic_precedence = 100), + [3815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_comment, 3, .dynamic_precedence = 100), + [3817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__processing_instruction, 3, .dynamic_precedence = 100), + [3819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__processing_instruction, 3, .dynamic_precedence = 100), + [3821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 3, .dynamic_precedence = 100), + [3823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration, 3, .dynamic_precedence = 100), + [3825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cdata_section, 3, .dynamic_precedence = 100), + [3827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cdata_section, 3, .dynamic_precedence = 100), + [3829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 3, .dynamic_precedence = 10), + [3831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 3, .dynamic_precedence = 10), + [3833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_link, 3, .dynamic_precedence = 10), + [3835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_link, 3, .dynamic_precedence = 10), + [3837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1719), + [3840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1719), + [3843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1355), + [3846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 3, .dynamic_precedence = 10), + [3848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 3, .dynamic_precedence = 10), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [3854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(2223), + [3857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1944), + [3860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_collapsed_reference_link, 3, .dynamic_precedence = 10), + [3862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_collapsed_reference_link, 3, .dynamic_precedence = 10), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [3868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(287), + [3871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 8, .dynamic_precedence = 10), + [3873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 8, .dynamic_precedence = 10), + [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [3877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_star_no_newline, 3, .dynamic_precedence = 2, .production_id = 4), + [3879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_star_no_newline, 3, .dynamic_precedence = 2, .production_id = 4), + [3881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_underscore_no_newline, 3, .dynamic_precedence = 1, .production_id = 4), + [3883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_underscore_no_newline, 3, .dynamic_precedence = 1, .production_id = 4), + [3885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_underscore_no_newline, 3, .dynamic_precedence = 2, .production_id = 4), + [3887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_underscore_no_newline, 3, .dynamic_precedence = 2, .production_id = 4), + [3889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__code_span_no_newline, 3, .dynamic_precedence = 100, .production_id = 2), + [3891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__code_span_no_newline, 3, .dynamic_precedence = 100, .production_id = 2), + [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [3897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline, 1), + [3899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline, 1), + [3901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element, 1, .production_id = 1), + [3903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element, 1, .production_id = 1), + [3905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 1), + [3907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_no_newline, 1), + [3909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_newline, 1, .production_id = 1), + [3911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_newline, 1, .production_id = 1), + [3913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__code_span_no_newline, 2, .dynamic_precedence = 100, .production_id = 2), + [3915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__code_span_no_newline, 2, .dynamic_precedence = 100, .production_id = 2), + [3917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline, 2), + [3919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline, 2), + [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [3935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_star_no_newline, 3, .dynamic_precedence = 1, .production_id = 4), + [3937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_star_no_newline, 3, .dynamic_precedence = 1, .production_id = 4), + [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [3945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description, 1, .dynamic_precedence = 30), + [3947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_newline_no_star, 1, .production_id = 1), + [3949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_newline_no_star, 1, .production_id = 1), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_newline_no_underscore, 1, .production_id = 1), + [3955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_newline_no_underscore, 1, .production_id = 1), + [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [3965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(1075), + [3968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(1075), + [3971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_label_repeat1, 2), + [3973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(862), + [3976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(1050), + [3979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(1050), + [3982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(824), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [4039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, .production_id = 1), + [4041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1, .production_id = 1), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [4049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_star_no_link, 3, .dynamic_precedence = 1, .production_id = 4), + [4051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_star_no_link, 3, .dynamic_precedence = 1, .production_id = 4), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [4059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_star_no_link, 3, .dynamic_precedence = 2, .production_id = 4), + [4061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_star_no_link, 3, .dynamic_precedence = 2, .production_id = 4), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [4067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(944), + [4070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_underscore_no_link, 3, .dynamic_precedence = 1, .production_id = 4), + [4072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_underscore_no_link, 3, .dynamic_precedence = 1, .production_id = 4), + [4074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_underscore_no_link, 3, .dynamic_precedence = 2, .production_id = 4), + [4076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_underscore_no_link, 3, .dynamic_precedence = 2, .production_id = 4), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [4094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, .production_id = 1), + [4096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, .production_id = 1), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [4104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), REDUCE(aux_sym_link_label_repeat1, 1), + [4107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), REDUCE(aux_sym_link_label_repeat1, 1), + [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [4116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 1), + [4118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 1), + [4120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, .production_id = 1), + [4122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1, .production_id = 1), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [4210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_link, 2), + [4212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_link, 2), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [4268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 2), + [4270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 2), + [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 2), + [4274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 2), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [4302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [4308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), SHIFT(1569), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [4313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), SHIFT(1567), + [4316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), SHIFT(1567), + [4319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), SHIFT(1037), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [4326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [4330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), SHIFT(1597), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [4335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_label_repeat1, 1), + [4337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_label_repeat1, 1), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [4343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [4363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [4379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [4489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1078), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [4562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1), + [4564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 1), + [4566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1), SHIFT(2002), + [4569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1), SHIFT(1648), + [4572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1), SHIFT(1995), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [4581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [4585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [4605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1647), + [4608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1635), + [4611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1635), + [4614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1129), + [4617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1143), + [4620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [4652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(1597), + [4655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2), + [4657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(1597), + [4660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(1156), + [4663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(1567), + [4666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(1567), + [4669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(1037), + [4672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1633), + [4675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1655), + [4678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1655), + [4681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1157), + [4684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1124), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [4689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_fence_content, 1), + [4691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2), + [4693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_inline_link_repeat1, 2), + [4695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(1567), + [4698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(1567), + [4701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(2030), + [4704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_span_repeat1, 2), SHIFT_REPEAT(1687), + [4707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_span_repeat1, 2), SHIFT_REPEAT(1708), + [4710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__code_span_repeat1, 2), SHIFT_REPEAT(1708), + [4713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_span_repeat1, 2), SHIFT_REPEAT(1160), + [4716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_span_repeat1, 2), SHIFT_REPEAT(2030), + [4719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__code_span_repeat1, 2), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [4725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_info_string_repeat1, 2), SHIFT_REPEAT(1576), + [4728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_info_string_repeat1, 2), SHIFT_REPEAT(1576), + [4731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_info_string_repeat1, 2), SHIFT_REPEAT(1162), + [4734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_info_string_repeat1, 2), SHIFT_REPEAT(1567), + [4737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_info_string_repeat1, 2), SHIFT_REPEAT(1567), + [4740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_info_string_repeat1, 2), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [4746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [4750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_info_string, 2), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [4758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [4778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_info_string, 1), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [4784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [4792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [4796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1178), + [4799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1), + [4801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 1), + [4803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1), SHIFT(2002), + [4806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1), SHIFT(1648), + [4809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1), SHIFT(1995), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [4818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(1569), + [4821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(1569), + [4824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2), + [4826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(1181), + [4829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(1567), + [4832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(1567), + [4835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(1037), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [4846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [4852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [4862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_destination, 2, .dynamic_precedence = 10), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [4866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_destination, 2, .dynamic_precedence = 10), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [4870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [4876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [4884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [4890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [4898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1191), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [4903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [4909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [4921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [4927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [5037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(1652), + [5040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(1652), + [5043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2), + [5045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(1225), + [5048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(1567), + [5051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(1567), + [5054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(1037), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [5093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1240), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [5114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1247), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [5125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1252), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [5130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2), SHIFT_REPEAT(1683), + [5133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2), SHIFT_REPEAT(1688), + [5136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__indented_chunk_repeat1, 2), SHIFT_REPEAT(1688), + [5139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2), SHIFT_REPEAT(1255), + [5142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2), SHIFT_REPEAT(1197), + [5145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [5153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1258), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [5166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1264), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [5223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_destination, 3, .dynamic_precedence = 10), + [5225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_destination, 3, .dynamic_precedence = 10), + [5227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), SHIFT_REPEAT(1575), + [5230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2), SHIFT_REPEAT(1575), + [5233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), SHIFT_REPEAT(2002), + [5236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), + [5238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), SHIFT_REPEAT(1283), + [5241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [5275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_5_repeat1, 2), SHIFT_REPEAT(1663), + [5278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_5_repeat1, 2), SHIFT_REPEAT(1663), + [5281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_5_repeat1, 2), SHIFT_REPEAT(2425), + [5284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_5_repeat1, 2), SHIFT_REPEAT(1643), + [5287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_5_repeat1, 2), SHIFT_REPEAT(1643), + [5290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_5_repeat1, 2), SHIFT_REPEAT(1294), + [5293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_5_repeat1, 2), SHIFT_REPEAT(1170), + [5296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_5_repeat1, 2), + [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [5308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_3_repeat1, 2), SHIFT_REPEAT(1665), + [5311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_3_repeat1, 2), SHIFT_REPEAT(1665), + [5314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_3_repeat1, 2), SHIFT_REPEAT(2405), + [5317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_3_repeat1, 2), SHIFT_REPEAT(1644), + [5320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_3_repeat1, 2), SHIFT_REPEAT(1644), + [5323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_3_repeat1, 2), SHIFT_REPEAT(1299), + [5326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_3_repeat1, 2), SHIFT_REPEAT(1168), + [5329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_3_repeat1, 2), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [5371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_2_repeat1, 2), SHIFT_REPEAT(1666), + [5374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_2_repeat1, 2), SHIFT_REPEAT(1666), + [5377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_2_repeat1, 2), SHIFT_REPEAT(2391), + [5380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_2_repeat1, 2), SHIFT_REPEAT(1645), + [5383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_2_repeat1, 2), SHIFT_REPEAT(1645), + [5386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_2_repeat1, 2), SHIFT_REPEAT(1314), + [5389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_2_repeat1, 2), SHIFT_REPEAT(1166), + [5392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_2_repeat1, 2), + [5394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_1_repeat1, 2), SHIFT_REPEAT(1667), + [5397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_1_repeat1, 2), SHIFT_REPEAT(1667), + [5400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_1_repeat1, 2), SHIFT_REPEAT(2388), + [5403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_1_repeat1, 2), SHIFT_REPEAT(1629), + [5406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_1_repeat1, 2), SHIFT_REPEAT(1629), + [5409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_1_repeat1, 2), SHIFT_REPEAT(1315), + [5412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_1_repeat1, 2), SHIFT_REPEAT(1161), + [5415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_1_repeat1, 2), + [5417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1316), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [5490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1687), - [5493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1687), - [5496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), - [5498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1700), - [5501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1700), - [5504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1339), - [5507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1293), - [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [5518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), - [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [5526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), - [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [5532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), - [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [5546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1351), - [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [5555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_language_repeat1, 2), SHIFT_REPEAT(1601), - [5558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_language_repeat1, 2), SHIFT_REPEAT(1601), - [5561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_language_repeat1, 2), SHIFT_REPEAT(1354), - [5564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_language_repeat1, 2), - [5566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_language_repeat1, 2), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [5572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat2, 2), SHIFT_REPEAT(1686), - [5575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat2, 2), SHIFT_REPEAT(1708), - [5578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_6_repeat2, 2), SHIFT_REPEAT(1708), - [5581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat2, 2), SHIFT_REPEAT(1358), - [5584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat2, 2), SHIFT_REPEAT(1165), - [5587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat2, 2), - [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [5595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1361), - [5598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1698), - [5601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1698), - [5604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1685), - [5607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1685), - [5610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1362), - [5613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1307), - [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [5676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1682), - [5679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1682), - [5682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1699), - [5685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1699), - [5688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1398), - [5691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1232), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [5772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat1, 2), SHIFT_REPEAT(1715), - [5775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat1, 2), SHIFT_REPEAT(1708), - [5778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_6_repeat1, 2), SHIFT_REPEAT(1708), - [5781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat1, 2), SHIFT_REPEAT(1462), - [5784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat1, 2), SHIFT_REPEAT(1165), - [5787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat1, 2), - [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [5797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1470), - [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [5808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_4_repeat1, 2), SHIFT_REPEAT(1691), - [5811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_4_repeat1, 2), SHIFT_REPEAT(1680), - [5814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_4_repeat1, 2), SHIFT_REPEAT(1708), - [5817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_4_repeat1, 2), SHIFT_REPEAT(1708), - [5820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_4_repeat1, 2), SHIFT_REPEAT(1475), - [5823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_4_repeat1, 2), SHIFT_REPEAT(1187), - [5826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_4_repeat1, 2), - [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [5858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1486), - [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [5869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat1, 2), SHIFT_REPEAT(1725), - [5872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat1, 2), - [5874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat1, 2), SHIFT_REPEAT(1740), - [5877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__attribute_value_repeat1, 2), SHIFT_REPEAT(1740), - [5880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat1, 2), SHIFT_REPEAT(1492), - [5883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat1, 2), SHIFT_REPEAT(2039), - [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [5890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat2, 2), SHIFT_REPEAT(1721), - [5893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat2, 2), - [5895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat2, 2), SHIFT_REPEAT(1740), - [5898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__attribute_value_repeat2, 2), SHIFT_REPEAT(1740), - [5901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat2, 2), SHIFT_REPEAT(1494), - [5904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat2, 2), SHIFT_REPEAT(2039), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [5925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [5929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_language, 1), - [5931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_language, 1), - [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [5941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [6035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1563), - [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [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(1667), - [6072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 1), - [6074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 1), - [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [6078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_span_no_newline_repeat1, 2), SHIFT_REPEAT(1681), - [6081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_span_no_newline_repeat1, 2), SHIFT_REPEAT(1688), - [6084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__code_span_no_newline_repeat1, 2), SHIFT_REPEAT(1688), - [6087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_span_no_newline_repeat1, 2), SHIFT_REPEAT(1579), - [6090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__code_span_no_newline_repeat1, 2), - [6092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1581), - [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [6107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(aux_sym_link_title_repeat2, 1), - [6110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(aux_sym_link_title_repeat2, 1), - [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [6127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_language_repeat1, 1), - [6129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_language_repeat1, 1), - [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [6135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1), - [6137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1), - [6139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(sym_link_title, 2), - [6142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(sym_link_title, 2), - [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [6149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(aux_sym_link_title_repeat1, 1), - [6152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(aux_sym_link_title_repeat1, 1), - [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [6169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_repeat1, 2), SHIFT_REPEAT(1727), - [6172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_repeat1, 2), - [6174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_repeat1, 2), SHIFT_REPEAT(1740), - [6177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_repeat1, 2), SHIFT_REPEAT(1740), - [6180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_repeat1, 2), SHIFT_REPEAT(1622), - [6183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_repeat1, 2), SHIFT_REPEAT(1353), - [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [6196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_5_repeat1, 1), - [6198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_5_repeat1, 1), - [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [6204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_destination_parenthesis, 2), - [6206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_destination_parenthesis, 2), - [6208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__link_destination_parenthesis, 2), REDUCE(sym_link_title, 2), - [6211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__link_destination_parenthesis, 2), REDUCE(sym_link_title, 2), - [6214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_3_repeat1, 1), - [6216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_3_repeat1, 1), - [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [6226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__link_destination_parenthesis_repeat1, 1), - [6228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__link_destination_parenthesis_repeat1, 1), REDUCE(aux_sym_link_title_repeat3, 1), - [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [6235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [6241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [6243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 3), - [6245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 3), - [6247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_2_repeat1, 1), - [6249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_2_repeat1, 1), - [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [6255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_1_repeat1, 1), - [6257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_1_repeat1, 1), - [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [6265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 3), - [6267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 3), - [6269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat1, 1), - [6271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_6_repeat1, 1), - [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [6279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), REDUCE(aux_sym_link_title_repeat1, 2), - [6282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2), REDUCE(aux_sym_link_title_repeat1, 2), - [6285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text, 2), - [6287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text, 2), - [6289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 2), - [6291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), REDUCE(aux_sym_link_title_repeat2, 2), - [6294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2), REDUCE(aux_sym_link_title_repeat2, 2), - [6297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat2, 1), - [6299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_6_repeat2, 1), - [6301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 2), - [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [6305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_destination_parenthesis, 3), - [6307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_destination_parenthesis, 3), - [6309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2), SHIFT_REPEAT(1753), - [6312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2), - [6314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat1, 2), SHIFT_REPEAT(1753), - [6317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2), SHIFT_REPEAT(1678), - [6320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2), SHIFT_REPEAT(1765), - [6323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat1, 2), SHIFT_REPEAT(1765), - [6326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_4_repeat1, 1), - [6328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_4_repeat1, 1), - [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [6334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 1), - [6336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_comment_repeat1, 1), - [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [6348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 2), - [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [6352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [6354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 3), - [6356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 3), - [6358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_5_repeat1, 2), - [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [6366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_2_repeat1, 2), - [6368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_1_repeat1, 2), - [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [6372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_3_repeat1, 2), - [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [6376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [6382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [6386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_6_repeat2, 2), - [6388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat2, 3), - [6390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_6_repeat2, 3), - [6392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat2, 1), - [6394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__attribute_value_repeat2, 1), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [6398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat1, 1), - [6400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__attribute_value_repeat1, 1), - [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [6404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_repeat1, 1), - [6406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_repeat1, 1), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [6410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_comment_repeat1, 2), - [6412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_4_repeat1, 2), - [6414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat1, 3), - [6416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_6_repeat1, 3), - [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [6420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_6_repeat1, 2), - [6422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_no_angle, 1), - [6424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_no_angle, 1), - [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [6428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__attribute_value_repeat2, 2), - [6430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__attribute_value_repeat1, 2), - [6432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_repeat1, 2), - [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [6436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_no_angle, 2), - [6438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_no_angle, 2), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [6516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [6528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [6560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__open_tag_repeat1, 2), - [6562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__open_tag_repeat1, 2), SHIFT_REPEAT(2036), - [6565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__open_tag_repeat1, 2), SHIFT_REPEAT(2036), - [6568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__open_tag_repeat1, 2), SHIFT_REPEAT(2039), - [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [6647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(2030), - [6650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(2030), - [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [6657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1919), - [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [5458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [5474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [5478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_language, 1), + [5480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_language, 1), + [5482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [5488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [5508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1342), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [5515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [5529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(1686), + [5532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(1686), + [5535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), + [5537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(1684), + [5540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(1684), + [5543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(1351), + [5546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(1289), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [5559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1363), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [5566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_language_repeat1, 2), SHIFT_REPEAT(1622), + [5569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_language_repeat1, 2), SHIFT_REPEAT(1622), + [5572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_language_repeat1, 2), SHIFT_REPEAT(1367), + [5575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_language_repeat1, 2), + [5577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_language_repeat1, 2), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [5651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(1695), + [5654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(1695), + [5657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(1700), + [5660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(1700), + [5663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(1411), + [5666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), SHIFT_REPEAT(1295), + [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [5725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1712), + [5728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1679), + [5731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), + [5733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1694), + [5736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1694), + [5739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1447), + [5742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1234), + [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [5785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_4_repeat1, 2), SHIFT_REPEAT(1707), + [5788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_4_repeat1, 2), SHIFT_REPEAT(1664), + [5791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_4_repeat1, 2), SHIFT_REPEAT(1688), + [5794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_4_repeat1, 2), SHIFT_REPEAT(1688), + [5797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_4_repeat1, 2), SHIFT_REPEAT(1469), + [5800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_4_repeat1, 2), SHIFT_REPEAT(1197), + [5803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_4_repeat1, 2), + [5805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1472), + [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [5822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1479), + [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [5851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat1, 2), SHIFT_REPEAT(1732), + [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(1719), + [5859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__attribute_value_repeat1, 2), SHIFT_REPEAT(1719), + [5862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat1, 2), SHIFT_REPEAT(1501), + [5865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat1, 2), SHIFT_REPEAT(2030), + [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [5870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat2, 2), SHIFT_REPEAT(1737), + [5873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat2, 2), + [5875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat2, 2), SHIFT_REPEAT(1719), + [5878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__attribute_value_repeat2, 2), SHIFT_REPEAT(1719), + [5881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat2, 2), SHIFT_REPEAT(1504), + [5884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat2, 2), SHIFT_REPEAT(2030), + [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [5913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat1, 2), SHIFT_REPEAT(1693), + [5916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat1, 2), SHIFT_REPEAT(1688), + [5919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_6_repeat1, 2), SHIFT_REPEAT(1688), + [5922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat1, 2), SHIFT_REPEAT(1520), + [5925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat1, 2), SHIFT_REPEAT(1171), + [5928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat1, 2), + [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [5950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat2, 2), SHIFT_REPEAT(1690), + [5953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat2, 2), SHIFT_REPEAT(1688), + [5956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_6_repeat2, 2), SHIFT_REPEAT(1688), + [5959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat2, 2), SHIFT_REPEAT(1531), + [5962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat2, 2), SHIFT_REPEAT(1171), + [5965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat2, 2), + [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [6021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1562), + [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [6032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 1), + [6034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 1), + [6036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(aux_sym_link_title_repeat2, 1), + [6039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(aux_sym_link_title_repeat2, 1), + [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [6048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1), + [6050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1), + [6052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(sym_link_title, 2), + [6055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(sym_link_title, 2), + [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [6062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(aux_sym_link_title_repeat1, 1), + [6065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(aux_sym_link_title_repeat1, 1), + [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [6070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text, 1), + [6072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text, 1), + [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [6076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_repeat1, 2), SHIFT_REPEAT(1745), + [6079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_repeat1, 2), + [6081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_repeat1, 2), SHIFT_REPEAT(1719), + [6084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_repeat1, 2), SHIFT_REPEAT(1719), + [6087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_repeat1, 2), SHIFT_REPEAT(1577), + [6090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_repeat1, 2), SHIFT_REPEAT(1355), + [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [6135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1616), + [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [6140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_span_no_newline_repeat1, 2), SHIFT_REPEAT(1687), + [6143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_span_no_newline_repeat1, 2), SHIFT_REPEAT(1708), + [6146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__code_span_no_newline_repeat1, 2), SHIFT_REPEAT(1708), + [6149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_span_no_newline_repeat1, 2), SHIFT_REPEAT(1618), + [6152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__code_span_no_newline_repeat1, 2), + [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [6158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_language_repeat1, 1), + [6160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_language_repeat1, 1), + [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [6182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 3), + [6184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 3), + [6186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2), SHIFT_REPEAT(1757), + [6189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2), + [6191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat1, 2), SHIFT_REPEAT(1757), + [6194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2), SHIFT_REPEAT(1631), + [6197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2), SHIFT_REPEAT(1747), + [6200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat1, 2), SHIFT_REPEAT(1747), + [6203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_destination_parenthesis, 3), + [6205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_destination_parenthesis, 3), + [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [6209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 3), + [6211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 3), + [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [6215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 2), + [6217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), REDUCE(aux_sym_link_title_repeat2, 2), + [6220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2), REDUCE(aux_sym_link_title_repeat2, 2), + [6223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 2), + [6225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), REDUCE(aux_sym_link_title_repeat1, 2), + [6228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2), REDUCE(aux_sym_link_title_repeat1, 2), + [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [6239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_destination_parenthesis, 2), + [6241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_destination_parenthesis, 2), + [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [6247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [6253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), + [6255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__link_destination_parenthesis_repeat1, 1), + [6257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__link_destination_parenthesis_repeat1, 1), REDUCE(aux_sym_link_title_repeat3, 1), + [6260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__link_destination_parenthesis, 2), REDUCE(sym_link_title, 2), + [6263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__link_destination_parenthesis, 2), REDUCE(sym_link_title, 2), + [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [6270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat2, 1), + [6272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_6_repeat2, 1), + [6274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text, 2), + [6276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text, 2), + [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [6282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat1, 1), + [6284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_6_repeat1, 1), + [6286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_5_repeat1, 1), + [6288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_5_repeat1, 1), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [6292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_4_repeat1, 1), + [6294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_4_repeat1, 1), + [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [6298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_3_repeat1, 1), + [6300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_3_repeat1, 1), + [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [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(1681), + [6310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_1_repeat1, 1), + [6312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_1_repeat1, 1), + [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [6320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_comment_repeat1, 2), + [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [6324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_2_repeat1, 2), + [6326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_1_repeat1, 2), + [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [6332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_3_repeat1, 2), + [6334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__processing_instruction_repeat1, 1), + [6336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__processing_instruction_repeat1, 1), + [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [6344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_5_repeat1, 2), + [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [6348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 3), + [6350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 3), + [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [6358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 2), + [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [6364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 1), + [6366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_comment_repeat1, 1), + [6368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_6_repeat2, 2), + [6370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_4_repeat1, 2), + [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [6374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_6_repeat1, 2), + [6376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat2, 3), + [6378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_6_repeat2, 3), + [6380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat1, 3), + [6382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_6_repeat1, 3), + [6384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat1, 1), + [6386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__attribute_value_repeat1, 1), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [6390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 3), + [6392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_comment_repeat1, 3), + [6394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__processing_instruction_repeat1, 2), + [6396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat2, 1), + [6398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__attribute_value_repeat2, 1), + [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [6402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_repeat1, 1), + [6404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_repeat1, 1), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [6410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__attribute_value_repeat1, 2), + [6412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_no_angle, 1), + [6414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_no_angle, 1), + [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [6418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__attribute_value_repeat2, 2), + [6420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_repeat1, 2), + [6422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_no_angle, 2), + [6424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_no_angle, 2), + [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [6500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__open_tag_repeat1, 2), + [6502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__open_tag_repeat1, 2), SHIFT_REPEAT(2035), + [6505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__open_tag_repeat1, 2), SHIFT_REPEAT(2035), + [6508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__open_tag_repeat1, 2), SHIFT_REPEAT(2030), + [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [6517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [6535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [6591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(2040), + [6594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(2040), + [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [6623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1900), + [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [6666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1924), - [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [6683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(2036), - [6686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(2036), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [6691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1940), - [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [6696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__tag_name_repeat1, 2), SHIFT_REPEAT(1944), - [6699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__tag_name_repeat1, 2), - [6701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__tag_name_repeat1, 2), - [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [6705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tag_name, 1), - [6707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__tag_name, 1), - [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [6711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tag_name, 2), - [6713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__tag_name, 2), - [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [6719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), - [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [6765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__link_destination_parenthesis_repeat1, 2), SHIFT_REPEAT(2002), - [6768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__link_destination_parenthesis_repeat1, 2), - [6770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__link_destination_parenthesis_repeat1, 2), SHIFT_REPEAT(2003), - [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [6803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(2063), - [6806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(2064), - [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [6815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 3), - [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [6819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 4), - [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [6823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 6), - [6825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 6), - [6827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_value, 3), - [6829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_value, 3), - [6831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 5), - [6833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 5), - [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [6837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(2080), - [6840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_value, 2), - [6842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_value, 2), - [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [6846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 4), - [6848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 4), - [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [6854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_title, 2), - [6856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_title, 2), - [6858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_title, 3), - [6860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_title, 3), - [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [6878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__soft_line_break_repeat1, 2), SHIFT_REPEAT(2124), - [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [6666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1933), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [6671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(2035), + [6674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(2035), + [6677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1937), + [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [6690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tag_name, 1), + [6692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__tag_name, 1), + [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [6696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tag_name, 2), + [6698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__tag_name, 2), + [6700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__tag_name_repeat1, 2), SHIFT_REPEAT(1946), + [6703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__tag_name_repeat1, 2), + [6705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__tag_name_repeat1, 2), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [6709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [6737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__link_destination_parenthesis_repeat1, 2), SHIFT_REPEAT(2002), + [6740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__link_destination_parenthesis_repeat1, 2), + [6742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__link_destination_parenthesis_repeat1, 2), SHIFT_REPEAT(1983), + [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [6787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(2051), + [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [6804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 6), + [6806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 6), + [6808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_value, 3), + [6810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_value, 3), + [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [6818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(2078), + [6821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_value, 2), + [6823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_value, 2), + [6825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 4), + [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [6829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 3), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [6833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 5), + [6835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 5), + [6837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 4), + [6839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 4), + [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [6843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(2099), + [6846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_title, 2), + [6848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_title, 2), + [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(979), + [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [6904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__soft_line_break_repeat1, 2), SHIFT_REPEAT(2135), + [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [6973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_text, 2, .dynamic_precedence = 10), - [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [7247] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [6967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_text, 2, .dynamic_precedence = 10), + [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [7249] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), }; #ifdef __cplusplus